
        /* CSS Variables */
        :root {
            --primary-color: #2d7a3e;
            --secondary-color: #f8a91d;
            --dark-green: #1a4d2e;
        }

        /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Navigation Styles */
        .navbar {
            background: rgba(45, 80, 22, 0.95) !important;
            backdrop-filter: blur(10px);
        }

        /* Hero Section Styles */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        /* Section Title Styles */
        .section-title {
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
            font-size: 2.5rem;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        /* Zone Card Styles */
        .zone-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .zone-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        .zone-card img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .zone-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .zone-dhikala { color: var(--primary-color); }
        .zone-bijrani { color: #0066cc; }
        .zone-jhirna { color: #00b4d8; }

        /* Feature Icon Styles */
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }

        /* Button Styles */
        .btn-view-details {
            border: 2px solid;
            background: transparent;
            font-weight: 600;
            padding: 10px 30px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-dhikala {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-dhikala:hover {
            background: var(--primary-color);
            color: white;
        }
        .btn-bijrani {
            color: #0066cc;
            border-color: #0066cc;
        }
        .btn-bijrani:hover {
            background: #0066cc;
            color: white;
        }
        .btn-jhirna {
            color: #00b4d8;
            border-color: #00b4d8;
        }
        .btn-jhirna:hover {
            background: #00b4d8;
            color: white;
        }
        .btn-book-now {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-book-now:hover {
            background: var(--dark-green);
            transform: scale(1.05);
        }
        .btn-primary {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: transform 0.3s;
        }
        .btn-primary:hover {
            background: #e76f51;
            transform: translateY(-2px);
        }

        /* Tour Package Card Styles */
        .tour-package-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .tour-package-card:hover {
            transform: translateY(-5px);
        }
        .tour-package-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .price-tag {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Safari Option Card Styles */
        .safari-option-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .safari-option-card:hover {
            transform: translateY(-5px);
        }
        .safari-option-card img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .rating {
            color: var(--secondary-color);
            font-size: 1.3rem;
            font-weight: 700;
        }
        .star-rating {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        /* Simple Package Card Styles */
        .simple-package-card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        .simple-package-card:hover {
            transform: translateY(-10px);
        }
        .simple-package-card.border-warning {
            border: 2px solid #ffc107 !important;
        }

        /* Gallery Image Styles */
        .gallery-img {
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
            width: 100%;
        }
        .gallery-img:hover {
            transform: scale(1.05);
        }

        /* Testimonial Card Styles */
        .testimonial-card {
            background: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
        }

        /* Modal Styles */
        .modal-header {
            background: var(--primary-color);
            color: white;
        }
        .form-label {
            font-weight: 600;
            color: var(--dark-green);
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(45, 122, 62, 0.25);
        }

        /* Footer Styles */
        footer {
            background: var(--dark-green);
            color: white;
            padding: 40px 0 20px;
        }

        /* Utility Styles */
        .include-item {
            margin-bottom: 8px;
        }
        .include-icon {
            color: var(--primary-color);
            margin-right: 8px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                height: 80vh;
                text-align: center;
            }
            .section-title {
                font-size: 2rem;
            }
            .zone-card img,
            .tour-package-card img,
            .safari-option-card img,
            .gallery-img {
                height: 200px;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .navbar-nav .nav-link {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .hero-section p {
                font-size: 1rem;
            }
            .btn-book-now {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
		
		.safari-option-card {
			border: none;
			border-radius: 15px;
			overflow: hidden;
			box-shadow: 0 8px 25px rgba(0,0,0,0.1);
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			background: white;
		}
		.safari-option-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 35px rgba(0,0,0,0.15);
		}
		.safari-option-card img {
			height: 250px;
			object-fit: cover;
			width: 100%;
			transition: transform 0.3s ease;
		}
		.safari-option-card:hover img {
			transform: scale(1.05);
		}
		.details-list li {
			border-left: 3px solid var(--primary-color);
			transition: all 0.3s ease;
		}
		.details-list li:hover {
			background: rgba(45, 122, 62, 0.05) !important;
			border-left-color: var(--secondary-color);
		}
		.star-rating {
			color: var(--secondary-color);
			font-size: 1.5rem;
		}
		.rating {
			color: var(--secondary-color);
			font-size: 1.3rem;
			font-weight: 700;
		}
		@media (max-width: 768px) {
			.safari-option-card img {
				height: 200px;
			}
			.details-list li {
				font-size: 0.9rem;
			}
		}
		.bgcontact {
      background: url('https://www.jimcorbettbookingonline.com/assets/img/form-banner.webp') no-repeat center center/cover;
      background-attachment: fixed;
    }
    .overlay {
      background-color: rgba(255, 255, 255, 0.85);
      border-radius: 10px;
    }
    #bannerSlider {
  margin-top: 96px; /* adjust based on your navbar height */
}
      #bannerSlider .carousel-caption {
    background-color: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
  #bannerSlider img {
    /* ensure good height, maybe full screen banner height */
    min-height: 400px;
    object-fit: cover;
  }
  
  .flot {
    position: fixed;
    width: 60px;
    width: 170px;
    bottom: 10px;
    left: 15px;
    height: auto;
     /*z-index: 99999999999;*/
   z-index: 999
}
.callFloat {
    position: fixed;
    left: 10px;
    bottom: 70px;
    width: 170px;
    height: auto;
    /*z-index: 99999999999;*/
   z-index: 999
}
  #bookNowBtn {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

#bookNowBtn:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(32, 201, 151, 0.4);
  color: #fff !important;
}  
/* Responsive Banner */
.banner1 {
    width: 100%;
    min-height: 280px;        /* Desktop/Mobile responsive height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    text-align: center;

    margin-top: 96px !important;
    padding: 0 !important;    /* No padding on any device */
}

/* Banner Text */
.banner1 h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Smaller devices */
@media (max-width: 1440px) {
    .banner1 {
        min-height: 220px;
        margin-top: 96px !important;
/* Smaller height on tablets */
    }
    .banner1 h2 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .banner1 {
        min-height: 220px;
        margin-top: 96px !important;
/* Smaller height on tablets */
    }
    .banner1 h2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .banner1 {
        min-height: 220px;
        margin-top: 96px !important;
/* Smaller height on tablets */
    }
    .banner1 h2 {
        font-size: 28px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .banner1 {
        min-height: 180px;
        margin-top: 96px !important;
/* Smaller height on mobile */
    }
    .banner1 h2 {
        font-size: 22px;
    }
}