
        :root {
            /* Color Palette - Wild Nature Theme */
            --primary-dark: #4f9538;
            --primary-green: #2c9f3a;
            --accent-orange: #a7750c;
            --accent-gold: #c09f59;
            --light-cream: #fefae0;
            --soft-beige: #f5ebe0;
            --text-dark: #212529;
            --text-muted: #6c757d;
            
            /* Fonts */
            --font-display: 'Libre Baskerville', serif;
            --font-body: 'Montserrat', sans-serif;
        }
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        
        [data-aos] {
            overflow: hidden;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        a {
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: underline;
}

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-cream);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }
        .site-logo {
  max-width: 100%;
  height: auto;
}
        .top-bar a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            transition: all 0.3s ease;
        }
        
        .top-bar a:hover {
            color: var(--accent-gold);
        }
        
        .top-bar i {
            margin-right: 8px;
            color: white;
        }
        
        /* Header/Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        .navbar-brand img {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 50px;
        }
        
        .navbar-nav .nav-link {
            color: black;
            font-weight: 600;
            font-size: 15px;
            margin: 0 15px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link::after {
            display:none;
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }
        .dropdown-item.active, .dropdown-item:active {
            color: var(--bs-dropdown-link-active-color);
            text-decoration: none;
            background-color: #c29d51;
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-orange);
        }
        
        .btn-book-now {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white !important;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
            transition: all 0.3s ease;
            margin-left: 20px;
        }
        
        .btn-book-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
        }
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }
        
        .hero-banner .owl-carousel {
            height: 100%;
        }
        
        .hero-slide {
            height: 100vh;
            min-height: 700px;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 61, 46, 0.85) 0%, rgba(26, 61, 46, 0.4) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 72px;
            color: white;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .hero-content .highlight {
            color: var(--accent-gold);
            display: block;
            font-size: 65px;
        }
        
        .hero-content p {
            font-size: 22px;
            color: var(--light-cream);
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 600px;
        }
        
        .hero-btn {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(232, 93, 4, 0.4);
            transition: all 0.3s ease;
            font-size: 16px;
            margin-right: 15px;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(232, 93, 4, 0.5);
            color: white;
        }
        
        .hero-btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }
        
        .hero-btn-outline:hover {
            background: white;
            color: var(--primary-dark);
        }
        
        /* Owl Carousel Custom Navigation */
        .hero-banner .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2) !important;
            color: white !important;
            font-size: 30px !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .hero-banner .owl-nav button:hover {
            background: rgba(255,255,255,0.4) !important;
        }
        
        .hero-banner .owl-nav .owl-prev {
            left: 30px;
        }
        
        .hero-banner .owl-nav .owl-next {
            right: 30px;
        }
        
        .hero-banner .owl-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hero-banner .owl-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .hero-banner .owl-dot.active {
            width: 40px;
            border-radius: 10px;
            background: white;
        }
        
        /* Section Spacing */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 48px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 800px;
            margin: 20px auto 0;
        }
        
        /* Booking Form Section */
        .booking-form-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            margin-top: -80px;
            position: relative;
            z-index: 100;
        }
        
        .booking-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }
        
        .booking-card h3 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 30px;
        }
        
        .form-control {
            padding: 15px 20px;
            border: 2px solid var(--soft-beige);
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.1);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white;
            padding: 16px 50px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(232, 93, 4, 0.4);
        }
        
        .requirement-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .requirement-checkboxes .form-check {
            background: var(--soft-beige);
            padding: 10px 20px;
            border-radius: 50px;
            margin: 0;
        }
        
        .requirement-checkboxes .form-check-input:checked ~ .form-check-label {
            color: var(--accent-orange);
            font-weight: 600;
        }
        
        /* Safari Cards */
        .safari-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%; /* Equal height */
            display: flex;
            flex-direction: column;
        }
        
        .safari-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .safari-card-img {
            position: relative;
            overflow: hidden;
            height: 300px;
            flex-shrink: 0;
        }
        
        .safari-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .safari-card:hover .safari-card-img img {
            transform: scale(1.1);
        }
        
        .safari-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
        }
        
        .safari-card-body {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .safari-card-body h4 {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .safari-price {
            font-size: 36px;
            color: var(--accent-orange);
            font-weight: 900;
            margin: 20px 0;
        }
        
        .safari-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            flex-grow: 1;
        }
        
        .safari-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--soft-beige);
            display: flex;
            align-items: center;
        }
        
        .safari-features li:last-child {
            border-bottom: none;
        }
        
        .safari-features i {
            color: var(--primary-green);
            margin-right: 12px;
            font-size: 18px;
        }
        
        .btn-safari {
            background: var(--primary-green);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }
        
        .btn-safari:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: white;
        }
        
        /* Tour Package Cards */
        .tour-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .tour-card-img {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .tour-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .tour-card:hover .tour-card-img img {
            transform: scale(1.1);
        }
        
        .tour-duration {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 14px;
        }
        
        .tour-card-body {
            padding: 30px;
        }
        
        .tour-card-body h4 {
            font-size: 24px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .tour-route {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        /* FRH Section */
        .frh-section {
            background: var(--light-cream);
        }
        
        .frh-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .frh-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }
        
        .frh-card-img {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .frh-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .frh-card:hover .frh-card-img img {
            transform: scale(1.08);
        }
        
        .frh-card-body {
            padding: 25px;
        }
        
        .frh-card-body h5 {
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .frh-card-body h5 a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .frh-card-body h5 a:hover {
            color: var(--accent-orange);
        }
        
        /* Life in Corbett Section */
        .life-corbett-section {
            background: white;
        }
        
        .life-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .life-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .life-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .life-card:hover img {
            transform: scale(1.1);
        }
        
        .life-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 61, 46, 0.95) 0%, transparent 100%);
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .life-card:hover .life-card-overlay {
            background: linear-gradient(to top, rgba(232, 93, 4, 0.95) 0%, transparent 100%);
        }
        
        .life-card-overlay h4 {
            color: white;
            font-size: 22px;
            margin: 0;
        }
        
        .life-card-overlay a {
            color: white;
            text-decoration: none;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--soft-beige);
        }
        
        .accordion-item {
            border: none;
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 18px;
            padding: 25px 30px;
            border: none;
            font-family: var(--font-body);
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3d2e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 25px 30px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }
        
        /* Footer */
        .footer {
            background:#213a1a;
            color: var(--light-cream);
            padding: 80px 0 0;
        }
        
        .footer h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-orange);
        }
        
        .footer p {
            color: var(--light-cream);
            opacity: 0.8;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--light-cream);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact-info {
            list-style: none;
            padding: 0;
        }
        
        .footer-contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact-info i {
            color: var(--accent-gold);
            margin-right: 12px;
            margin-top: 3px;
            font-size: 18px;
        }
        
        .footer-contact-info a {
            color: var(--light-cream);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-contact-info a:hover {
            opacity: 1;
            color: var(--accent-gold);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.3);
            padding: 25px 0;
            margin-top: 60px;
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            opacity: 0.7;
        }
        
        .footer-bottom a {
            color: white;
            text-decoration: none;
        }
        .form-label {
            color: black;   /* dark text */
            font-weight: 600;
        }
        
        .form-control,
.form-select {
    color: #111;
    background-color: #ffffff;
    border: 1px solid #ccc;
}
        /* If sidebar has dark background */
        .sidebar-widget .form-label {
            color: black;
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        
        /* Floating Contact Buttons */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        .call-btn {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
        }
        
        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 6px 25px rgba(232, 93, 4, 0.4);
            transition: all 0.3s ease;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
        }
        
        .scroll-to-top.show {
            display: flex;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 48px;
            }
            
            .hero-content .highlight {
                font-size: 42px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .navbar-nav {
                padding: 20px 0;
            }
            
            .navbar-nav .nav-link {
                margin: 10px 0;
            }
            
            .btn-book-now {
                margin: 20px 0 0 0;
                display: block;
            }
            
            .hero-banner .owl-nav button {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
            
            .floating-contact {
                right: 15px;
                bottom: 15px;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .scroll-to-top {
                left: 15px;
                bottom: 15px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content .highlight {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .hero-btn {
                padding: 14px 30px;
                font-size: 14px;
            }
            
            .booking-card {
                padding: 30px 20px;
            }
            
            .booking-card h3 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        /* Loading Animation */
        .spinner-border-custom {
            width: 20px;
            height: 20px;
            border-width: 2px;
        }
        .about-img img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px; /* Rounded corners */
}

.about-img img:hover {
    transform: scale(1.02); /* Slight zoom on hover */
}

/* Content Styling */
.about-section .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.about-section .content ul i {
    font-size: 20px;
    color: #28a745; /* Green checkmarks */
    padding-right: 4px;
}

.about-section .content ul span {
    font-size: 15px;
    color: #555;
}

/* Button Styling */
.btn-primary {
    background-color: #2c5f2d; /* Forest Green */
    border-color: #2c5f2d;
    padding: 10px 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #1a3c1b;
}

/*service details css start*/

        
        /* --- Page Header / Breadcrumb Banner --- */
        .page-header {
    position: relative;
    padding: 150px 0 100px;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-header-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(26, 61, 46, 0.75),
        rgba(26, 61, 46, 0.75)
    );
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

        .page-header h1 {
            color: white;
            font-size: 48px;
            margin-bottom: 15px;
        }

        .breadcrumb {
            justify-content: center;
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: white;
            content: "›";
            font-size: 20px;
            line-height: 1.2;
        }

        /* --- Main Content Layout --- */
        .content-area {
            padding-bottom: 80px;
        }

        /* Left Content Styling */
        .service-image-wrapper {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image-wrapper:hover img {
            transform: scale(1.03);
        }

        .blog-content h2 {
            margin-top: 30px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .blog-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-orange);
        }

        .blog-content p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            font-weight: 500;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-green);
        }

        /* Pricing Table */
        .pricing-table {
            width: 100%;
            margin: 30px 0;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #dee2e6;
        }

        .pricing-table thead {
            background-color: var(--primary-dark);
            color: white;
        }

        .pricing-table th, .pricing-table td {
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
        }
        
        /* Sidebar Styling */
       .sidebar-holder{
    position: relative;
}

.sidebar-wrapper{
    position: sticky;
    top: 20px;
}

@media(max-width:991px){
    .sidebar-wrapper{
        position: static;
    }
}
       
        .sidebar-widget {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border: 1px solid var(--soft-beige);
        }

        .widget-title {
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--soft-beige);
            color: var(--primary-dark);
        }

        .sidebar-form .form-control, .sidebar-form .form-select {
            background-color: var(--light-cream);
            border: 1px solid transparent;
            margin-bottom: 15px;
            padding: 12px;
        }
        
        .sidebar-form .form-control:focus {
            border-color: var(--accent-orange);
            background-color: white;
            box-shadow: none;
        }

        .btn-sidebar {
            width: 100%;
            padding: 14px;
            background: var(--primary-dark);
            color: black;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-sidebar:hover {
            background: var(--accent-orange);
        }

        /* CTA Card */
        .cta-card {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: white;
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '\f095';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 150px;
            opacity: 0.1;
            transform: rotate(-15deg);
        }

        .cta-card h4 { color: white; font-size: 24px; margin-bottom: 15px; }
        .cta-card a {
            display: inline-block;
            background: white;
            color: var(--accent-orange);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 15px;
        }

        /* Related Services */
        .related-services {
            background-color: var(--soft-beige);
            padding: 80px 0;
            margin-top: 50px;
        }

        .related-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .related-card:hover { transform: translateY(-5px); }

        .related-img {
            height: 200px;
            overflow: hidden;
        }
        .related-img img { width: 100%; height: 100%; object-fit: cover; }
        
        .related-body { padding: 20px; }
        .related-body h5 { font-size: 18px; margin-bottom: 10px; }
        .related-link { 
            color: var(--accent-orange); 
            text-decoration: none; 
            font-weight: 600; 
            font-size: 14px;
        }

        
        @media (max-width: 991px) {
            .sidebar-wrapper { position: static; margin-top: 40px; }
            .feature-list { grid-template-columns: 1fr; }
        }
        


    
/*end*/
/*about page css start*/

        /* About Specific Styles */
        .about-img-box { position: relative; padding-bottom: 30px; padding-right: 30px; }
        .about-img-main { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .about-img-secondary {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            border: 5px solid #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .stats-section { background: var(--primary-dark); color: var(--light-cream); padding: 60px 0; margin: 80px 0; }
        .stat-item h2 { font-size: 48px; color: #ffffff; margin-bottom: 5px; }
        .stat-item p { font-size: 18px; margin: 0; opacity: 0.9; }

        .feature-box {
            text-align: center;
            padding: 40px 20px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }
        .feature-box:hover { transform: translateY(-10px); }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--soft-beige);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        .feature-box:hover .feature-icon { background: var(--accent-orange); color: #fff; }
/*end */
    /*contact csss start 
    /* Contact Styles */
        .contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
            border-bottom: 3px solid var(--accent-orange);
            transition: 0.3s;
        }
        .contact-card:hover { transform: translateY(-5px); }
        .contact-icon {
            font-size: 30px; color: var(--accent-orange); margin-bottom: 20px;
            width: 70px; height: 70px; background: var(--soft-beige); border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
        }
        .contact-form-wrapper {
            background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        .form-control, .form-select { padding: 12px; margin-bottom: 20px; border-radius: 8px; border: 1px solid #ddd; }
        .form-control:focus { border-color: var(--accent-orange); box-shadow: none; }
        .btn-submit {
            background: var(--primary-dark); color: white; padding: 15px 40px; border-radius: 50px; border: none; font-weight: 600; width: 100%; transition: 0.3s;
        }
        .btn-submit:hover { background: var(--accent-orange); }
        .map-container {
            border-radius: 15px; overflow: hidden; height: 100%; min-height: 450px; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
    
    /*end */
    /*blog css start */
    /* Blog Specific Styles */
        .blog-card {
            background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s; height: 100%; border: none;
        }
        .blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .blog-img { height: 220px; width: 100%; object-fit: cover; }
        .blog-body { padding: 25px; }
        .blog-meta { color: var(--accent-orange); font-size: 13px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; }
        .blog-title a { color: var(--primary-dark); text-decoration: none; transition: 0.3s; }
        .blog-title a:hover { color: var(--accent-orange); }
        .read-more { color: var(--primary-green); font-weight: 600; text-decoration: none; font-size: 14px; }
        
        /* Sidebar */
        .sidebar-widget { background: #fff; padding: 25px; border-radius: 15px; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .widget-title { font-size: 20px; border-bottom: 2px solid var(--soft-beige); padding-bottom: 15px; margin-bottom: 20px; position: relative; }
        .widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--accent-orange); }
        .cat-list { list-style: none; padding: 0; }
        .cat-list li { margin-bottom: 10px; border-bottom: 1px solid #f1f1f1; padding-bottom: 10px; }
        .cat-list a { color: #666; text-decoration: none; display: flex; justify-content: space-between; }
        .cat-list a:hover { color: var(--accent-orange); }
        
        /* Recent Posts */
        .recent-post { display: flex; gap: 15px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #f1f1f1; }
        .recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .recent-post img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; }
        .recent-post-content h6 { font-size: 14px; margin-bottom: 5px; }
        .recent-post-content h6 a { color: var(--primary-dark); text-decoration: none; }
        .recent-post-content h6 a:hover { color: var(--accent-orange); }
        .recent-post-content span { font-size: 12px; color: #999; }
        
        /* Pagination */
        .pagination .page-link { color: var(--primary-dark); border-radius: 5px; margin: 0 5px; border: none; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .pagination .page-item.active .page-link { background: var(--primary-green); color: white; }
        
        /* Empty State */
        .empty-state { text-align: center; padding: 60px 20px; }
        .empty-state i { font-size: 60px; color: #ddd; margin-bottom: 20px; }
    /*end */
    