
        :root {
            --color-1: #FF4D6D;
            --color-2: #F72585;
            --color-3: #7209B7;
            --color-4: #3A0CA3;
            --color-5: #4361EE;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333 !important;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--color-2) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-2), var(--color-5));
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            color: white !important;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(247, 37, 133, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,77,109,0.1), rgba(67,97,238,0.1));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-2), var(--color-4), var(--color-5));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .btn-hero {
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(247, 37, 133, 0.3);
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
            color: white;
        }
        
        /* Section Headers */
        .section-title {
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-2), var(--color-5));
            border-radius: 2px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .about-img:hover {
            transform: translateY(-10px);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-4), var(--color-5));
            padding: 5rem 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background: linear-gradient(135deg, rgba(255,77,109,0.05), rgba(67,97,238,0.05));
            border-radius: 20px;
            padding: 3rem;
            height: 100%;
            border-left: 5px solid var(--color-2);
            transition: transform 0.3s;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box.mission {
            border-left-color: var(--color-5);
        }
        
        .vision-mission-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Why Choose Us */
        .feature-box {
            padding: 2rem;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, rgba(255,77,109,0.05), rgba(67,97,238,0.05));
            padding: 5rem 0;
        }
        
        .booking-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            transition: border-color 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--color-2);
            box-shadow: 0 0 0 0.2rem rgba(247, 37, 133, 0.25);
        }
        
        /* Services Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 2rem;
            background: #f8f9fa;
        }
        
        .service-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .service-desc {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .btn-service {
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-service:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
            color: white;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 1rem;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--color-4);
        }
        
        .reviewer-location {
            color: #999;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .accordion-button {
            background: linear-gradient(135deg, rgba(255,77,109,0.05), rgba(67,97,238,0.05));
            font-weight: 600;
            color: var(--color-4);
            padding: 1.5rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 1.5rem;
            color: #666;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-2), var(--color-4), var(--color-5));
            padding: 5rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .btn-cta-white {
            background: white;
            color: var(--color-4);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--color-4);
        }
        
        /* Contact Section */
        .contact-info-box {
            background: linear-gradient(135deg, rgba(255,77,109,0.05), rgba(67,97,238,0.05));
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-col h5 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--color-1);
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--color-1);
            padding-left: 5px;
        }
        
        .footer-about p {
            color: #aaa;
            line-height: 1.8;
        }
        
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 25px;
            padding: 0.8rem 1.5rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: #aaa;
        }
        
        .newsletter-form .btn {
            background: linear-gradient(135deg, var(--color-2), var(--color-4));
            color: white;
            border: none;
            border-radius: 25px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            margin-top: 1rem;
            width: 100%;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: #aaa;
        }
        
        .footer-bottom a {
            color: var(--color-1);
            text-decoration: none;
            margin: 0 1rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
