
        :root {
            --primary-dark: #121212;
            --secondary-dark: #1F1F1F;
            --tertiary-dark: #2C2C2C;
            --accent-purple: #BB86FC;
            --accent-cyan: #03DAC6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Fira Sans', sans-serif;
            color: var(--primary-dark);
            line-height: 1.6;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--accent-purple);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-purple) !important;
        }
        
        .cta-btn-nav {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            color: white !important;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .cta-btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(187, 134, 252, 0.3);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(3, 218, 198, 0.1));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(187, 134, 252, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--secondary-dark);
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(187, 134, 252, 0.4);
            color: white;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 2px;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .about-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .about-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--secondary-dark);
            text-align: justify;
        }
        
        .read-more-btn {
            color: var(--accent-purple);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--accent-cyan);
        }
        
        .read-more-btn i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--secondary-dark), var(--tertiary-dark));
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 3rem;
            color: var(--accent-cyan);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: var(--accent-cyan);
        }
        
        /* Vision & Mission Section */
        .vm-section {
            padding: 80px 0;
        }
        
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }
        
        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .vm-card p {
            color: var(--secondary-dark);
            line-height: 1.8;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(187, 134, 252, 0.2);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .feature-box p {
            color: var(--secondary-dark);
            margin-bottom: 0;
        }
        
        /* Booking Section */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(187, 134, 252, 0.05), rgba(3, 218, 198, 0.05));
        }
        
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-form h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            color: var(--primary-dark);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-purple);
            box-shadow: 0 0 0 0.2rem rgba(187, 134, 252, 0.25);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(187, 134, 252, 0.2);
        }
        
        .service-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .service-content p {
            color: var(--secondary-dark);
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.7;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(187, 134, 252, 0.2);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-name {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: #ffc107;
        }
        
        .review-card p {
            color: var(--secondary-dark);
            margin-bottom: 0;
            line-height: 1.7;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-dark);
            font-weight: 600;
            padding: 20px;
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 20px;
            color: var(--secondary-dark);
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary-dark), var(--tertiary-dark));
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--accent-cyan);
        }
        
        .cta-btn-white {
            background: white;
            color: var(--accent-purple);
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-btn-white:hover {
            background: var(--accent-cyan);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(3, 218, 198, 0.4);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--accent-purple);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-info h5 {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .contact-info p {
            color: var(--secondary-dark);
            margin-bottom: 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .contact-form h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-dark);
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--accent-cyan);
        }
        
        .footer-widget p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background: var(--secondary-dark);
            color: white;
        }
        
        .newsletter-form input::placeholder {
            color: #999;
        }
        
        .newsletter-form button {
            padding: 12px 20px;
            border: none;
            background: var(--accent-purple);
            color: white;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--accent-cyan);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--tertiary-dark);
            color: #999;
        }
        
        .copyright a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--accent-purple);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-img {
                height: 300px;
                margin-bottom: 30px;
            }
        }
