
        :root {
            --dark-navy: #020617;
            --sky-blue: #0EA5E9;
            --electric-purple: #9333EA;
            --light-gray: #F8FAFC;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #9333EA 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--dark-navy);
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--sky-blue);
            border-radius: 5px;
        }

        /* Navbar Styling */
        .navbar {
            background: transparent !important;
            padding: 1.5rem 0;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(2, 6, 23, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--dark-navy) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-brand i {
            color: var(--electric-purple);
            font-size: 2.2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            margin: 0 0.8rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(14, 165, 233, 0.8) 100%), 
                        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(147, 51, 234, 0.2) 100%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(14, 165, 233, 0.2);
            color: var(--sky-blue);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid var(--sky-blue);
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-title span {
            color: var(--sky-blue);
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--light-gray);
            margin-bottom: 2rem;
            font-weight: 400;
            max-width: 600px;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: rgba(248, 250, 252, 0.9);
            margin-bottom: 2.5rem;
            max-width: 650px;
            line-height: 1.8;
        }

        .btn-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 1.2rem 3.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--sky-blue);
            display: block;
        }

        .stat-label {
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        /* Section Styling */
        section {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-subtitle {
            color: #64748b;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            font-weight: 400;
        }

        /* About Section */
        .about-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: var(--gradient-primary);
            opacity: 0.05;
            border-radius: 50%;
        }

        .about-img-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.1);
        }

        .about-img-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--sky-blue);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-img-wrapper:hover .about-img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-size: 2.5rem;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: #475569;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }

        .btn-read-more {
            background: transparent;
            border: 2px solid var(--electric-purple);
            color: var(--electric-purple);
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width:50%;
        }

        .btn-read-more:hover {
            background: var(--electric-purple);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Counter Section */
        .counter-section {
            background: var(--dark-navy);
            color: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230EA5E9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .counter-item {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--sky-blue);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .counter-label {
            font-size: 1.1rem;
            color: var(--light-gray);
            font-weight: 500;
        }

        /* Vision Mission */
        .vision-mission-section {
            background: var(--light-gray);
        }

        .vm-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 5px solid var(--sky-blue);
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .vm-card:hover::before {
            opacity: 0.05;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        .vm-card h3 {
            color: var(--dark-navy);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .vm-card p {
            color: #64748b;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us */
        .why-choose-section {
            background: var(--white);
        }

        .feature-box {
            padding: 2.5rem;
            background: var(--light-gray);
            border-radius: 20px;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-box:hover {
            border-color: var(--sky-blue);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
            background: var(--white);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
        }

        .feature-box h4 {
            color: var(--dark-navy);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-box p {
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

        /* Work Process */
        .process-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .process-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .process-card:hover {
            border-color: var(--sky-blue);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
        }

        .process-card h4 {
            color: var(--dark-navy);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .process-card p {
            color: #64748b;
            line-height: 1.7;
        }

        .process-arrow {
            position: absolute;
            top: 50%;
            right: -30px;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--sky-blue);
            opacity: 0.3;
            display: none;
        }

        @media (min-width: 992px) {
            .process-arrow {
                display: block;
            }
            .process-card:last-child .process-arrow {
                display: none;
            }
        }

        /* Booking Form */
        .booking-section {
            background: var(--dark-navy);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: var(--electric-purple);
            border-radius: 50%;
            opacity: 0.1;
        }

        .booking-section .section-title {
            color: var(--white);
        }

        .booking-section .section-subtitle {
            color: var(--light-gray);
        }

        .booking-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .form-control, .form-select {
            padding: 1rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
        }

        .form-label {
            color: var(--dark-navy);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .btn-submit {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
        }

        /* Services Section */
        .services-section {
            background: var(--light-gray);
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
            border-color: var(--sky-blue);
        }

        .service-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.8), transparent);
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: var(--light-gray);
        }

        .service-content h3 {
            color: var(--dark-navy);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-content p {
            color: #64748b;
            line-height: 1.8;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        /* Reviews Section */
        .reviews-section {
            background: var(--white);
        }

        .review-card {
            background: var(--light-gray);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .review-card:hover {
            border-color: var(--electric-purple);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
        }

        .review-card::before {
            content: '\201C';
            font-size: 6rem;
            color: var(--sky-blue);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
            line-height: 1;
        }

        .review-text {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .reviewer-name {
            color: var(--dark-navy);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .reviewer-location {
            color: var(--sky-blue);
            font-size: 0.9rem;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--light-gray);
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(2, 6, 23, 0.05);
            background: var(--white);
        }

        .accordion-button {
            background: var(--white);
            color: var(--dark-navy);
            font-weight: 600;
            padding: 1.5rem;
            font-family: 'Poppins', sans-serif;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button::after {
            filter: invert(1);
        }

        .accordion-button:not(.collapsed)::after {
            filter: invert(1);
        }

        .accordion-body {
            background: var(--white);
            color: #64748b;
            line-height: 1.8;
            padding: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
            opacity: 0.95;
        }

        .btn-cta-large {
            background: var(--white);
            color: var(--electric-purple);
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-info-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            transition: all 0.3s ease;
            border-left: 4px solid var(--sky-blue);
        }

        .contact-info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(2, 6, 23, 0.1);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h5 {
            color: var(--dark-navy);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-details p {
            color: #64748b;
            margin: 0;
            line-height: 1.6;
        }

        .contact-form {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
        }

        /* Footer */
        footer {
            background: var(--dark-navy);
            color: var(--light-gray);
            padding: 5rem 0 2rem;
        }

        .footer-col h4 {
            color: var(--sky-blue);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-col p {
            color: var(--light-gray);
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--sky-blue);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-links a i {
            color: var(--electric-purple);
            font-size: 0.8rem;
        }

        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(248, 250, 252, 0.6);
        }

        .newsletter-form .btn {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .newsletter-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 250, 252, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            opacity: 0.7;
        }

        .footer-bottom a {
            color: var(--sky-blue);
            text-decoration: none;
            margin: 0 0.5rem;
        }

        /* Alert Messages */
        .alert-custom {
            display: none;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            font-weight: 500;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .alert-success-custom {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .alert-error-custom {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            .navbar-collapse {
                background: var(--white);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
        }

        .loader-icon {
            font-size: 4rem;
            color: var(--sky-blue);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite;
        }

        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: var(--sky-blue);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 70%;
            right: 10%;
            width: 120px;
            height: 120px;
            background: var(--electric-purple);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            bottom: 10%;
            left: 20%;
            width: 60px;
            height: 60px;
            background: var(--sky-blue);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
