
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       :root {
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    --secondary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --accent-gradient: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --info-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --danger-gradient: linear-gradient(135deg, #f85032 0%, #e73827 100%);

    /* Solid Colors */
    --white: #ffffff;
    --black: #000000;
    
    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Extra Colors */
    --pink: #ff66b3;
    --violet: #8e44ad;
    --cyan: #00bcd4;
    --teal: #009688;
    --orange: #ff9800;
    --lime: #cddc39;
    --red: #f44336;
    --blue: #2196f3;
}

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--gray-700);
            background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--gray-800);
            transform: translateY(-2px);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray-600);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: var(--primary-gradient);
            padding: 160px 0 120px;
            position: relative;
            overflow: hidden;
            color: var(--white);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="24" patternUnits="userSpaceOnUse"><path d="m14,12 L21,6 L28,12 L28,18 L21,24 L14,18 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-primary:hover {
            background: var(--white);
            color: var(--gray-800);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--gray-800);
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--gray-500);
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about {
            background: var(--gray-50);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text {
            font-size: 18px;
            color: var(--gray-600);
        }

        .about-text p {
            margin-bottom: 24px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .stat-item {
            background: var(--white);
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 80px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-gradient);
            transition: height 0.3s ease;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .service-card:hover .service-icon,
        .service-card:hover h3,
        .service-card:hover p {
            color: var(--white);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--gray-800);
            transition: all 0.3s ease;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        /* Different gradient backgrounds for service cards */
        .service-card:nth-child(4n+1)::before { background: var(--primary-gradient); }
        .service-card:nth-child(4n+2)::before { background: var(--secondary-gradient); }
        .service-card:nth-child(4n+3)::before { background: var(--accent-gradient); }
        .service-card:nth-child(4n+4)::before { background: var(--success-gradient); }

        .service-card:nth-child(4n+1) .service-icon { background: var(--primary-gradient); }
        .service-card:nth-child(4n+2) .service-icon { background: var(--secondary-gradient); }
        .service-card:nth-child(4n+3) .service-icon { background: var(--accent-gradient); }
        .service-card:nth-child(4n+4) .service-icon { background: var(--success-gradient); }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>') repeat;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
            margin-top: 80px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 32px;
            font-size: 80px;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 24px;
            margin-top: 24px;
            color: var(--gray-600);
            font-size: 16px;
            line-height: 1.7;
        }

        .testimonial-author {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--gray-800);
            font-size: 16px;
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            width: 100%;
            padding: 32px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            color: var(--gray-800);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-question i {
            color: var(--gray-400);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 32px 32px;
            color: var(--gray-600);
            display: none;
            font-size: 16px;
            line-height: 1.7;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            padding: 64px;
            border-radius: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--primary-gradient);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--gray-800);
            font-size: 14px;
        }

        .form-input, .form-textarea {
            padding: 16px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--gray-50);
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #00bcd4;
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
            color: var(--gray-300);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .footer-section h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--white);
            margin-bottom: 24px;
            font-size: 20px;
            font-weight: 600;
        }

        .footer-section p {
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-section a:hover {
            color: var(--white);
            transform: translateX(8px);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 40px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            z-index: 2000;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            padding: 48px;
            border-radius: 24px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--gray-500);
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: var(--gray-100);
            color: var(--gray-800);
        }

        .modal h3 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 24px;
            color: var(--gray-800);
            font-size: 28px;
            font-weight: 700;
        }

        .modal h4 {
            font-family: 'Poppins', sans-serif;
            margin: 24px 0 16px;
            color: var(--gray-800);
            font-size: 18px;
            font-weight: 600;
        }

        .modal p, .modal li {
            margin-bottom: 16px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .modal ul {
            margin-left: 20px;
            margin-bottom: 16px;
        }

        /* Newsletter Form */
        .newsletter-form {
            display: grid;
            gap: 20px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 16px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: #00bcd4;
        }

        .checkbox-group label {
            font-size: 14px;
            line-height: 1.5;
            color: var(--gray-600);
        }

        /* Success Message */
        .success-message {
            background: var(--success-gradient);
            color: var(--white);
            padding: 20px;
            margin-top: 24px;
            display: none;
            text-align: center;
            font-weight: 600;
            border-radius: 12px;
        }

        .success-message.show {
            display: block;
            animation: slideUp 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 80px 0;
            }

            .contact-form {
                padding: 40px 24px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }