.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  min-height: 400px;
}

.heading-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-section {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 250px !important;
}

.heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  left: 0;
  right: 0;
  visibility: hidden; /* Hide heading when not active */
}

.heading.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible; /* Show heading when active */
}

.heading h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #333;
}

.heading p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
}

.heading .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.heading .btn:hover {
  background-color: #45a049;
}

.banner {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.banner.active {
  opacity: 1;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

.banner img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
  object-fit: contain !important;
}

/* Support for data-fullsize attribute */
[data-fullsize] {
  cursor: zoom-in;
}

/* Lightbox styles for full-screen images */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .image-gallery img {
    width: calc(33.33% - 7px);
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 15px;
  }

  .banner-section {
    order: -1;
    margin-bottom: 0;
    border-radius: 0;
  }

  .heading-section {
    padding: 0 15px;
  }

  .heading h2 {
    font-size: 24px;
    margin-top: 10px;
    color: #002656; /* Dark blue color to match your branding */
    font-weight: bold;
  }

  .heading p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .heading .btn {
    padding: 10px 20px;
    background-color: #30a0e0; /* Blue color to match your button */
    font-size: 14px;
    width: 100%;
    max-width: 180px;
    text-align: center;
    border-radius: 3px;
  }

  .banner {
    height: 180px; /* Adjusted banner height to match your screenshot */
    border-radius: 0;
  }
  
  .controls {
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
}
.visually-hidden{
  visibility: hidden;
}
.ch6{
  font-size: 1em !important;
}.carousel_img-item {
  width: 100%;
  aspect-ratio: 16 / 9 !important; /* or your actual banner ratio */
  overflow: hidden;
}

.carousel_img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-horizontal{
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
}@media (max-width: 767px) {
  .swiper-slide {
    flex: 0 0 50% !important; /* 2 slides per view */
    max-width: 50% !important;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-wrapper {
    margin-left: 0 !important; /* Prevent left shift */
    margin-right: 0 !important;
  }

  .digi-logo-slider {
    padding: 0; /* Remove if unnecessary */
    overflow: hidden;
  }
}
.sw-True{
  margin-left: 40px !important;
}
@media (max-width: 767px) {
  .swiper-slide-custom {
    margin-left: -5px !important;
  }
  .testimonialThreeSwiper .swiper-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

}
