.common-hero {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates a cool parallax effect */
  overflow: hidden;
}

/* The Branded Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from Primary Blue to Primary Dark with 85% opacity */
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.9),
    rgba(27, 67, 50, 0.5)
  );
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.highlight-accent {
  color: #ffd166;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.glass-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
}

/* Ensure Breadcrumb text is bright */
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a:hover {
  color: #1b4332 !important;
}

/* Simple Photogallery Styling */
.simple-gallery {
  padding: 80px 0;
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, #ffd166);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.gallery-caption i {
  color: #ffd166;
}

/* Safarizone CSS */

:root {
  --primary-dark: #1b4332;
  --accent-yellow: #ffd166;
  --text-gray: #555;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fcfcfc;
}

.safari-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image Styling */
.image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.safari-card:hover .image-wrapper img {
  transform: scale(1.05);
}

/* Content Styling */
.content-area {
  padding: 40px;
}

.badge-top {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

h2 {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Points List */
.safari-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.safari-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.safari-features li i {
  color: var(--primary-dark);
  margin-right: 12px;
  margin-top: 5px;
  font-size: 1.1rem;
}

/* Buttons */
.btn-main {
  background-color: var(--primary-dark);
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  width: 100%;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
}

.btn-main:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.action-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.btn-contact {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

.whatsapp {
  background: #25d366;
  color: white;
}

.calls {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.whatsapp:hover,
.calls:hover {
  opacity: 0.8;
  color: white;
}

.calls:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .content-area {
    padding: 25px;
  }
  h2 {
    font-size: 1.7rem;
  }
}
/* cilla zone CSS */
:root {
  --primary-dark: #1b4332;
  --accent-yellow: #ffd166;
}

.ranipur-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* Title Styling */
.section-title {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.track-badge {
  display: inline-block;
  background: rgba(27, 67, 50, 0.1);
  color: var(--primary-dark);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-dark);
}

/* Points Styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-yellow);
  background: var(--primary-dark);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
}

/* Image Styling */
.ranipur-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--accent-yellow);
  transition: 0.4s;
}

.ranipur-img-box:hover {
  transform: scale(1.02);
  box-shadow: 10px 10px 0px var(--primary-dark);
}

.ranipur-img-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Buttons */
.cta-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-custom {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-dark {
  background: var(--primary-dark);
  color: white;
}

.btn-outline-dark {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-custom:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  color: #ffd166;
  border: 2px solid #ffd166;
}

@media (max-width: 991px) {
  .ranipur-img-box {
    box-shadow: none;
    margin-top: 40px;
  }
  .section-title {
    font-size: 2rem;
  }
}
