/* Reset and basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

.hero-section-media {
  background-image: url('./image/7a0dc79bc6c349e6bc854afb3ce88e56560d9de7.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* prevents repeating the image */
  height: 500px;
  position: relative;
}

.container {
  max-width: 90% !important;
}


.overlay-media {
  background-color: rgba(0, 0, 0, 0.4);
  /* optional dark overlay */
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-media {
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.content-media h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

/* Responsive text size */
@media (max-width: 768px) {
  .content-media h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .content-media h1 {
    font-size: 1.5rem;
  }
}


/* Featured Box */
.video-Sec {
  background-color: #F3F3F3;
}

.video-gallery-wrapper {
  max-width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;

}

.gallery-title {
  color: #0c7034;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.video-slider {
  margin: 0 auto;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  margin: 0 10px;
  /* 👈 This adds space between slides */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}


.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff00;
  border: none;
  font-size: 50px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: #fff;
}

.card-content {
  padding: 10px;
}

.card-content h3 {
  font-size: 16px;
  color: #0c7034;
  font-weight: bold;
  margin: 10px 0;
}

.meta {
  font-size: 12px;
  color: #555;
}

.share-icon {
  float: right;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
}

/* Customize Slick Arrows */
.slick-prev,
.slick-next {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: #0c7034;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Default desktop spacing */
.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

/* Hover effect */
.slick-prev:hover,
.slick-next:hover {
  background-color: #0c7034;
  color: white;
  border-color: #0c7034;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .slick-prev,
  .slick-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .slick-prev {
    left: -35px;
  }

  .slick-next {
    right: -35px;
  }
}

@media (max-width: 480px) {

  .slick-prev,
  .slick-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .slick-prev {
    left: 5px;
  }

  .slick-next {
    right: 5px;
  }

  .featureContent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    position: relative;
    bottom: -7x;
  }
}

@media (max-width:880px) {
  .gallery-title {
    color: #0c7034;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 25px;
  }
}

/* ======================================= */

.video-gallery-heading {
  text-align: left;
  padding-bottom: 35px;
  color: #036C37;
  font-size: 50px;

}

/* ========================================= */
.featured-Storys {
  padding-top: 100px;
  padding-bottom: 100px;
  /* Default for small screens */
  background-color: #E6ECF0;
}



.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Stack on mobile */
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 1.5fr 1fr;
    /* Side-by-side layout on larger screens */
  }
}




.grid-one-feature {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
}


.grid-one-feature img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 10px;
  filter: brightness(0.7);
  /* 0.7 = 70% brightness */
}



.grid-one-feature p {
  position: absolute;
  color: white;
  /* Or a color that contrasts with the image */
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 10px;
}

.fearurecard {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: 40% 60%;

}

.featureContent-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.featureContent-card.highlight {
  border: 3px solid #c3b6ff;
}

.featureContent-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin-right: 20px;
}

.featureContent-content {
  flex: 1;
}

.featureContent-title {
  font-weight: bold;
  color: #045d3b;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.featureContent-meta {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 12px;
}

.featureContent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  position: relative;
  bottom: -7px;

}

.featureContent-shareIcon {
  font-size: 18px;
  cursor: pointer;
  color: #0a7c44;
}

.featureContent-button {
  background-color: #0a7c44;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.featureContent-button:hover {
  background-color: #066636;
  color:#fff;
}

@media (max-width: 480px) {

  .slick-prev,
  .slick-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .slick-prev {
    left: 5px;
  }

  .slick-next {
    right: 5px;
  }

  .featureContent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    position: relative;
    bottom: -10px;
  }

  .featureContent-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    /* align-items: center; */
    padding: 20px;
    margin: 20px 0;
    transition: transform 0.3s ease;
    flex-direction: column;
  }

  .featureContent-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-right: 0px !important;
    margin-bottom: 15px;
  }
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 44% 1fr !important;
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr !important;
  }
}






.slider-container-new {
  margin: 20px auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 50px 0px;
  position: relative;
}

.main-slide-new {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 0.5s ease;
}

.speech-bubble-new {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 18px;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.thumbnails-wrapper-new {

  overflow: hidden;
  padding: 10px;
  width: 80%;
  position: relative;
  right: -21%;
}

.thumbnails-new {
  display: flex;
  transition: transform 0.3s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px;
}

.thumbnail-new {
  /* min-width: calc(100% / 3 - 20px); */
  width: 360px;
  margin: 0 20px;
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
  flex-shrink: 0;
  background: #E6ECF0 !important;
  padding: 14px;
  opacity: 1;
  transform: scale(1.05);
  background-color: white;
  border: 2px solid green;

}


.thumbnail-number-new {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 2px black;
}

.thumbnail-caption-new {
  top: 8px;
  left: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 0px !important;
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
  color: #036C37;
  font-weight: 600;
  /* margin-bottom: 12px; */
  font-style: italic;
  margin-top: 25px;
  font-size: 20px !important;

}

.thumbnail-source-new {
  font-size: 14px;
  color: #999;
  margin-top: 4px;
  top: 33px;
  left: 21px;
  margin-left: 10px;
  font-weight: bold;
  color: black;
}





@media (max-width: 768px) {
  .thumbnail-new {
    min-width: 80%;
  }
}



.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 1200px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}


.insight-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 12px;
  margin-bottom: 40px !important;
  margin: auto;
  padding: 0px 100px;
}

@media (min-width: 600px) {
  .insight-container {
    flex-direction: row;
  }
}

.insight-dropdown {
  position: relative;
}

.insight-select {
  appearance: none;
  padding: 10px 40px 10px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.insight-select:focus {
  border-color: #2e8b57;
  outline: none;
  box-shadow: 0 0 5px rgba(46, 139, 87, 0.4);
}

.insight-dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #666;
}

.insight-view-all {
  font-weight: bold;
  color: #2e8b57;
  text-decoration: none;
  transition: color 0.3s;
}

.insight-view-all:hover {
  color: #18633d;
}

.social-media {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 780px) {
  .slider-container-new {
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
    padding: 50px 0px;
    position: relative;
  }

  .video-gallery-heading {
    text-align: left;
    padding-bottom: 35px;
    color: #036C37;
    font-size: 36px;
  }


}

.absolute-main {
  position: relative;
  margin-top: -112px;
}

#thumbnailContainer {
  overflow: auto;
  /* or scroll, if needed */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

#thumbnailContainer::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.Discover-Insights {
  padding-left: 100px;
}

/* Popup Overlay */

/* Base Popup Styles */
.videoGallery-classname {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Transparent black */
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.video-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: transparent;
  border-radius: 10px;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-wrapper {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: green;
  color: white;
  border: none;
  font-size: 24px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10000;
}

.featureStory {
  height: 60%
}

.second-feature {
  background-color: #F3F3F3 !important;
}

@media (max-width:780px) {

  .Discover-Insights {
    padding-left: 16px;
  }

  .thumbnails-wrapper-new {
    overflow: hidden;
    padding: 10px;
    width: 100%;
    position: relative;
    right: 0px;
  }

  .featureStory {
    height: 100%
  }


}

/* Press Releae */

.content-section {
  padding: 20px;
  margin: auto;
}

.content-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.view-all {
  color: #007236;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 15px;

}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.content-left {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-item {
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.content-item .number {
  color: #007236;
  font-size: 1.5rem;
  font-weight: bold;
}

.content-item .title {
  color: #777;
  font-size: 1.4rem;
}

.content-right {
  flex: 1 1 250px;
}

.image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 7%;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007236;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

.fade-img {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.fade-img.fade-out {
  opacity: 0;
}


/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .content-header {
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  .view-all {
    font-size: 1rem;
  }

  .image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 5%;
  }
}


/* Media Content6 */

.mediaContact-section {
  background-color: #eaf0f3;
  text-align: center;
  font-family: sans-serif;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mediaContact-title {
  color: #006837;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.mediaContact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.mediaContact-item {
  flex: 1 1 150px;
  min-width: 120px;
  text-align: left;
}

.mediaContact-name {
  font-size: 28px;
  font-weight: bold;
  color: #006837;
  margin-bottom: 15px;
}

.mediaContact-detail {
  font-size: 20px;
  color: #333;
}

.mediaContact-arrow {
  display: inline-block;
  padding: 4px 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-top: 30px;
  width: 30%;
}

.mediaContact-arrow span {
  font-size: 18px;
  color: #006837;
}


.mediaContact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  margin-top: 50px;
}

#scrollLeft {
  padding: 9px;
  position: absolute;
  z-index: 2;
  top: 41%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: none;
  width: 44px;
  font-size: 24px;
  cursor: pointer;
  color: green;
  background: #fff;
  height: 44px;
}

#scrollRight {
  position: absolute;
  z-index: 2;
  padding: 9px;
  top: 40%;
  right: 3%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: none;
  width: 44px;
  font-size: 24px;
  cursor: pointer;
  color: green;
  background: #fff;
  height: 44px;
}

.arrow-left,
.arrow-right {
  font-size: 27px;
  /* font-weight: bold; */
  cursor: pointer;
  user-select: none;
  padding: 10px;
  position: relative;
  top: -7px;
  left: -8px;
}


.readMoreBtn-media {
  background-color: #ffffff;
  color: #0a7c44;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 11px;
}

.black-blur-overlay {
  position: absolute;
  bottom: 25%;
  display: flex;
}

.mainReadMore{
  position: absolute;
  top: 25%;
    left: 10%;
}

.mainReadMore h1{
 margin-bottom: 15px;
  color: #fff;
 
}
.mainReadMore button{
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 7px;
}
@media (max-width:780px) {

  .insight-container {

    padding: 0px 14px;
  }

  .content-right {
    flex: 1 1 250px;
    margin-top: 20%;
  }
}