
        :root {
            --primary-dark: #2C2C2C;
            --primary-orange: #FF6F00;
            --light-gray: #F2F2F2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-dark) !important;
        }
        
        .navbar-brand i {
            color: var(--primary-orange);
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        
        .cta-btn {
            background: var(--primary-orange);
            color: white !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            font-weight: 500;
        }
        
        .cta-btn:hover {
            background: #e65a00;
            transform: translateY(-2px);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.7)), url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .hero-btn {
            background: var(--primary-orange);
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .hero-btn:hover {
            background: #e65a00;
            transform: translateY(-3px);
            color: white;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .about-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-dark);
            padding: 60px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.2rem;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vision-box, .mission-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-box i, .mission-box i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        /* Book Service Section */
        .book-service-section {
            padding: 80px 0;
            background: white;
        }
        
        .book-form {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 111, 0, 0.25);
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .process-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* Why Choose Section */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            background: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .service-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: white;
        }
        
        .review-card {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .review-stars {
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--primary-dark);
        }
        
        .review-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-dark);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-orange);
            color: white;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--primary-dark);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .cta-btn-large {
            background: var(--primary-orange);
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cta-btn-large:hover {
            background: #e65a00;
            transform: translateY(-3px);
            color: white;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--light-gray);
            border-radius: 10px;
        }
        
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        
        .contact-info-icon i {
            color: white;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--primary-orange);
        }
        
        .footer-link {
            display: block;
            color: #ccc;
            text-decoration: none;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--primary-orange);
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .subscribe-form button {
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .subscribe-form button:hover {
            background: #e65a00;
        }
        
        .copyright {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }
        
        .copyright a {
            color: var(--primary-orange);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .about-content h2 {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
