  body {
      background-color: #fff;
    }

.top-sub-bg {
  position: relative;
  background-image: url(../img/about-bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.top-sub-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #06140c; /* Your overlay color */
  opacity: 0.6; /* adjust transparency here */
  z-index: -1;
}
.top-sub-section{
  height: 400px;
}



  .about-section {
  padding: 80px 0;
}

.about-title {
  font-weight: 700;
  color: #013050; /* Yellow color */
  font-size: 1rem;
  margin-bottom: 15px;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #013050;
}

.about-image img {
    max-width: 100%;
    height: 410px;
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
}

.no-side-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ✅ Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
 
  .about-section {
    padding: 50px 20px;
  }

  .about-title {
    font-size: 0.9rem;
    text-align: center;
  }

  .about-description {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }

  .about-image {
    margin-bottom: 30px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: 250px;
  }

}

     .section-title-small {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #f1f1f3; /* Dark Navy */
  margin-bottom: 40px;
}

.offer-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
  transform: scale(1.02);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 47, 0.5); /* Dark transparent overlay */
}

.offer-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.offer-content h2 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  animation: grow 0.4s ease-in-out;
  color: #fff;
}

@keyframes grow {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bg-image-section {
  background-image: linear-gradient(rgba(13, 20, 32, 0.8), rgba(20, 26, 39, 0.8)), url('../img/back-img.webp');
  background-size: 50%; /* Image size chhoti ho jati hai */
  background-repeat: no-repeat;
  background-position: left center;
  height: 600px; /* Adjust as needed */
}
@media (max-width: 767.98px) {
    .bg-image-section {
    height:100%;
}


}
