.hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  /* background: linear-gradient(to right, #0a4784, #043c55); */
  /* background: rgb(17, 173, 189); */
  background: linear-gradient(90deg, rgba(17, 173, 189, 1) 0%, rgba(4, 60, 85, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 50px;
  overflow: visible;
  color: #fff;
}

/* Left Side Text */
.hero-left {
  z-index: 2;
  max-width: 42%;
  margin-top: 50px;
}

.hero-breadcrumbs {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #efeded;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

/* Right Side Banner */
.hero-right {
  position: absolute;
  bottom: -20px; /* Drop banner below background */
  right: 6%;
  width: 48%;
  z-index: 1;
}

.hero-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}



.mg_image_box {
  position: relative;
  padding: 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #fff;
  transition: 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Image Area */
.mg_image_box .image_box {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
}
.mg_photo_box .image_box {
  height: 185px;
}

.mg_image_box .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay Icon */
.mg_image_box .image_box .ab_link {
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: 0.4s ease;
}

.mg_image_box .image_box .ab_link i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #11adbd;
  color: #fff;
  font-size: 20px;
  position: absolute;
  inset: 0;
  margin: auto;
  line-height: 52px;
  opacity: 0;
  transform: translateY(-12px);
  transition: 0.4s ease;
}

/* Title Bar */
.mg_image_box h2 {
  position: absolute;
  bottom: 0;
  left: -100%;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  background: linear-gradient(90deg, #11adbd, #2a77bb);
  color: #fff;
  transition: 0.4s ease;
}

.mg_image_box h2 a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* FLOATING CIRCLE BADGE */
.item-wrapper {
    position: relative;
    overflow: visible; /* only outer wrapper will show overflow */
}
.item-wrapper .tag {
  position: absolute;
  top: -10%;
  right: -10px;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #2a77bb;
  font-weight: 700;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 3px solid rgb(17, 173, 189);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 20;
}


/* Optional hover effect */
.mg_image_box:hover .tag {
  transform: scale(1.06);
}

/* For photo box variant */
.mg_photo_box .image_box .ab_link i {
  opacity: .7;
  transform: translateY(0);
}

/* Hover Effects */
.mg_image_box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.mg_image_box:hover .image_box img {
  opacity: 0.45;
  transform: scale(1.03);
}

.mg_image_box:hover .image_box .ab_link i {
  opacity: 1;
  transform: translateY(0);
}

.mg_image_box:hover h2 {
  left: 0;
}
.vmv-section {
    background-color: #f5f7fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Cards */
.vmv-section .card {
  border: none;
  border-radius: 20px;
  padding: 40px 30px;
  transition: transform 0.4s, box-shadow 0.4s;
  margin-bottom: 40px;
}

/* Hover Effect */
.vmv-section .card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Alternating Card Colors (branding feel) */
.card.even {
  background: #e6f4ea; /* soft green */
  box-shadow: 10px -10px #11adbd;
}

.card.odd {
  background: #e8ecfa; /* soft blue */
  box-shadow: -10px 10px #0b656f;
}

/* Card Text */
.card-title {
  font-size: 45px;
  font-weight: 700;
  color: #0e6ab0; /* corporate dark blue */
  margin-bottom: 20px;
}

/* Images */
.vmv-img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.team-card{

    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f3f3f3;
}
.team-card:hover {
   box-shadow: 0 4px 15px rgba(7, 171, 83, 0.3);
}
.team-btn{
    background-color: #11adbd;
    color: #fff;
    border: none;
}
.team-btn:hover{
    background-color: #0b656f;
    color: #fff;
}

/* Images */
.vmv-img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
#member-modal .modal-title {
  color: #006fbd;
  font-size: 1.8rem;
  text-shadow:  1px 1px 2px rgba(0, 0, 0, 0.1);

}
#member-modal .modal-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

#member-modal .modal-header .btn-close {
  font-size: 1.1rem;
  color: #333333;
  opacity: 1;
}

#member-modal .title {
  color: #006fbd;
  font-size: 1.4rem;
}
#member-modal .designation {
  font-size: 1rem;
}

.map-wrapper {
  width: 100%;
  height: 100%;
 border:5px solid #11adbd;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);

}
.contact-title {
    color: #006fbd;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-section .feature-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-top: 4px solid #11adbd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  max-height: 250px;
}

.contact-section .feature-card:hover .icon-box, .contact-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 84, 166, 0.15);
  border-top-color: #0b656f;
}

.contact-section .icon-box {
  width: 70px;
  height: 70px;
  background: #11adbd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto;
  transition: 0.3s ease;
}

.contact-section .feature-card:hover .icon-box {
  background: #0b656f;
}

.contact-section .feature-title {
  color: #0054a6;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.contact-section .feature-desp {
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;

}

.alert-error {
  background-color: #ffdddd;
  border-left: 6px solid #f44336;
  padding: 10px 15px;
  margin-bottom: 20px;
  color: #a94442;
  border-radius: 4px;
}

.contact-form {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-section ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.product-section ul li {
    position: relative;
    padding-left: 22px; /* marker + gap */
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-section ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #11adbd;
    position: absolute;
    left: 0;
    top: 0.55em; /* 🔥 fine-tuned vertical alignment */
}


/* Responsive */
@media (max-width: 992px) {
  .card img {
    max-width: 300px;
    margin-bottom: 20px;
  }
}


@media (min-width: 746px) {
    section.hero-section {
        flex-direction: row;
        display: flex;
    }
}


/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 400px;
  }

  .hero-left {
    max-width: 100%;
	margin-top: 30px;
  }

  .hero-title {
	font-size: 2rem;
  }

  .hero-right {
    position: relative;
    width: 100%;
    bottom: -10px;
    right: 0;
  }

  .hero-banner {
    height: 250px;
    border-radius: 10px;
  }


 .card {
    padding: 25px 20px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .row.flex-column-reverse {
    flex-direction: column-reverse !important;
  }

  .vmv-img {
    max-width: 100%;
  }
  .contact-title {
    margin-top: 20px;
  }

  .map-wrapper {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .mobile-full-btn {
    width: 100%;
    justify-content: center;
  }

  .ak-footer.style-1 .copy-right {
    padding-bottom: 30px;
  }
  .developed_by {

    right: 25%;
    top: 40px;
    color: rgba(214, 212, 212, 0.8); /* Slightly visible */
    font-size: 14px;
    margin-top: 10px;
  }
  }
