        /* CSS Variables */
        :root {
            --primary: #4a9d9c;
            --primary-dark: #3a7d7c;
            --secondary: #f8b500;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }

        /* Dark theme overrides when html[data-theme="dark"] is present */
        html[data-theme="dark"] {
            --primary: #76d7d5;
            --primary-dark: #4fb6b4;
            --secondary: #ffb86b;
            --light: #0a101a;
            --dark: #f8f9fa;
            --gray: #b8c2c6;
            --light-gray: #181f2b;
            --shadow: 0 6px 18px rgba(0,0,0,0.8);
            background-color: var(--light);
        }
        html[data-theme="dark"] body {
            background-color: var(--light);
            color: var(--dark);
        }
        html[data-theme="dark"] header {
            background-color: #101624;
            color: var(--dark);
        }
        html[data-theme="dark"] .section {
            background-color: var(--light);
            color: var(--dark);
        }
        html[data-theme="dark"] .service-card {
            background-color: var(--light-gray);
            color: var(--dark);
        }
        html[data-theme="dark"] .about {
            background-color: #101624;
            color: var(--dark);
        }
        html[data-theme="dark"] .about-image img {
            filter: brightness(0.7) contrast(1.1);
        }
        html[data-theme="dark"] .testimonial {
            background-color: #181f2b;
            color: var(--dark);
        }
        html[data-theme="dark"] .testimonial-content {
            color: #e6eef0;
        }
        html[data-theme="dark"] .author-info h4 {
            color: #f8f9fa;
        }
        html[data-theme="dark"] .author-info p {
            color: #b8c2c6;
        }
        html[data-theme="dark"] .contact-container {
            background-color: #101624;
            color: var(--dark);
        }
        html[data-theme="dark"] .contact-form {
            background-color: var(--light-gray);
            color: var(--dark);
        }
        html[data-theme="dark"] footer {
            background-color: #0a101a;
            color: #b8c2c6;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }

        .btn-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 10px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: transparent;
            color: var(--primary);
            border: 1px solid transparent;
        }

        .btn-icon:hover {
            background-color: rgba(0,0,0,0.04);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .btn-secondary:hover {
            background-color: #e6a500;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2rem;
            color: var(--primary);
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        @media(max-width:768px){
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                background: var(--light);
                width: 200px;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu {
                display: block;
            }
            .nav-actions {
                display: none;
            }
        }

        /* Make the header compact on dark theme */
        html[data-theme="dark"] header {
            background-color: #071019;
            box-shadow: 0 3px 10px rgba(0,0,0,0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('images/WhatsApp Image 2025-10-24 at 18.06.22_985e95d4.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            text-align: center;
            background-repeat: no-repeat;
            background-position: center;
        }

        html[data-theme="dark"] .hero {
            background: linear-gradient(rgba(4,8,12,0.6), rgba(4,8,12,0.6)), url('images/WhatsApp Image 2025-10-24 at 18.06.22_985e95d4.jpg');
            color: var(--dark);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--gray);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* About Section */
        .about {
            background-color: var(--light-gray);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-content p {
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 30px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .feature i {
            color: var(--secondary);
        }

        /* Testimonials Section */
        .testimonials-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            align-items: start;
        }

        .testimonial {
            background-color: white;
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            margin: 0;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        html[data-theme="dark"] .testimonial {
            background-color: #19232e;
            color: var(--dark);
        }

        html[data-theme="dark"] .testimonial-content {
            color: #cfd8dc;
        }

        html[data-theme="dark"] .author-info h4 {
            color: #e6eef0;
        }

        html[data-theme="dark"] .author-info p {
            color: #b8c2c6;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        /* Center the author name and role */
        .author-info { text-align: center; }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Team Section */
        .team {
            background-color: var(--light-gray);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background-color: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 250px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            margin-bottom: 5px;
            color: var(--primary);
        }

        .member-info p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: var(--radius);
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        html[data-theme="dark"] footer {
            background-color: #021217;
            color: var(--gray);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-actions {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }