
        :root {
            --primary-color: #800020;
            --secondary-color: #F8BBD0;
            --light-color: #FFF5E1;
            --dark-color: #2C2C2C;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }

        /* 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-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .cta-btn {
            background: var(--primary-color);
            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: var(--secondary-color);
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 30px;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: white;
        }

        .counter-item {
            text-align: center;
        }

        .counter-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        .nav-item{
            margin-left:30px !important;
        }

        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
        }

        .vision-card, .mission-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-card:hover, .mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-card i, .mission-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Book Service Section */
        .book-service-section {
            padding: 80px 0;
            background: white;
        }

        .book-form {
            background: var(--light-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 20px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.25);
        }

        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }

        .feature-box {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-body {
            padding: 30px;
        }

        .service-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-desc {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: white;
        }

        .review-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }

        .review-stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .review-location {
            color: #666;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .accordion-button {
            background: white;
            color: var(--primary-color);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-btn-large {
            background: white;
            color: var(--primary-color) !important;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn-large:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 20px;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-link {
            display: block;
            color: white;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }

        .subscribe-form button {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-form button:hover {
            background: white;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .cta-btn {
                display: block;
                text-align: center;
                margin: 10px auto;
            }
        }
