
        :root {
            --color-1: #F8F9FA;
            --color-2: #E9ECEF;
            --color-3: #DEE2E6;
            --color-4: #ADB5BD;
            --color-5: #495057;
            --primary-color: #0d6efd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color-5);
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--color-5) !important;
        }
        
        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: var(--color-5) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta-nav {
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-cta-nav:hover {
            background: #0b5ed7;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
            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(13, 110, 253, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-5);
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--color-4);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .btn-hero {
            background: var(--primary-color);
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .btn-hero:hover {
            background: #0b5ed7;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 20px;
        }
        
        .about-content p {
            color: var(--color-4);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .btn-read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            color: #0b5ed7;
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        .vm-icon {
            width: 70px;
            height: 70px;
            background: var(--color-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .vm-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: var(--color-1);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--color-4);
            line-height: 1.6;
        }
        
        /* Service Booking Form */
        .booking-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .booking-form h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-control, .form-select {
            border: 2px solid var(--color-3);
            border-radius: 10px;
            padding: 12px 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }
        
        .btn-book {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-book:hover {
            background: #0b5ed7;
            transform: translateY(-2px);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }
        
        .service-card {
            background: var(--color-1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 400px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: var(--color-4);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .btn-service:hover {
            color: #0b5ed7;
            transform: translateX(5px);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .review-info h5 {
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: #ffc107;
        }
        
        .review-text {
            color: var(--color-4);
            line-height: 1.6;
            font-style: italic;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }
        
        .accordion-button {
            background: var(--color-1);
            color: var(--color-5);
            font-weight: 500;
            padding: 15px 20px;
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--color-3);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-cta {
            background: white;
            color: var(--primary-color);
            padding: 12px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--color-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .contact-icon i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-details h5 {
            font-weight: 600;
            color: var(--color-5);
            margin-bottom: 5px;
        }
        
        .contact-details p, .contact-details a {
            color: var(--color-4);
            text-decoration: none;
            margin: 0;
        }
        
        .contact-details a:hover {
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background: var(--color-5);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .footer-widget p {
            color: var(--color-4);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--color-4);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid var(--color-3);
            border-radius: 25px;
            background: var(--color-1);
            color: var(--color-5);
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: #0b5ed7;
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--color-4);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: var(--color-4);
            margin: 0;
        }
        
        .footer-bottom a {
            color: var(--color-4);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .about-content h2 {
                font-size: 1.8rem;
            }
            
            .vm-card {
                margin-bottom: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form button {
                width: 100%;
            }
        }
