/* Common Css Start */
.LinedBG {
  background-image: url('../images/OurMission/LinedBG.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.color-green {
  color: #016937;
}

.trusteeImgWraper{
  padding: 20px 30px;
}


.trusteeImgCon img{
   height: 160px;
  width: 160px;
  display: block;
  margin: auto;
  border-radius: 50%;
}

.trusteeImgCon1 img{

  width: 160px;
  display: block;
  margin: auto;

}

.bannerBtmGIF {
  width: 90%;
  display: block;
  /* make margin auto work */
  margin: 0 auto;
  /* center left & right */
}

.topBarLogoicons {
  width: 30px;
}

.redington-Container {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

/* .redington-Container {
    padding-top: 80px;
    padding-bottom: 80px;
} */
.headingSectionMain {
  font-family: 'Avenir Next';
  font-weight: 400;
  font-size: 64px;
  margin-bottom: 20px;
}

.redingtonH3 {
  /* For h3 tag*/
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: normal;
}

.text_Page_center {
  text-align: center;
  color: #016937;
}

.boldheadingh3 {
  font-weight: bold;
  color: #016937;
  margin-bottom: 20px;
}

.whiteBG {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.subDiscription {
  padding-left: 20px;
  padding-right: 20px;
}

.text_color_white {
  color: #fff !important;
  text-align: center;
}

.descr_Section {
  /* For p tag*/
  font-family: 'Avenir Next';
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 20px;
}

.ReadMoreRedington {
  font-size: clamp(16px, 2.5vw, 24px);
  padding: 14px 75px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ReadMoreRedington:hover {
  background: #fff;
  color: #016937;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* .ReadMoreRedington:hover{
    background-color: #016937;
    color: #fff;
    border: 2px solid #016937;
} */

.bgLightGreen {
  background-color: #E0ECE6;
}

/* Common Css End */

/* Header Css Start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Avenir Next';
}

/* Top bar container */
.top_bar_redington_container {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 5px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Logo styles */
.top_bar_redington_logo_container {
  display: flex;
  align-items: center;
}

.top_bar_redington_logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.top_bar_redington_logo_img {
  /* height: 60px; */
  height: 85px;
  /* width: 60px; */
  margin-right: 10px;
}

/* Navigation styles */
.top_bar_redington_nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.top_bar_redington_nav_list {
  display: flex;
  list-style: none;
  margin: 0 20px;
  align-items: center;
}

.top_bar_redington_nav_item {
  margin: 0 5px;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Avenir Next';
}

.top_bar_redington_nav_link {
  text-decoration: none;
  color: #016937;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.top_bar_redington_nav_link:hover {
  color: #016937;
}

.top_bar_redington_nav_link.active {
  color: #016937;
}

.top_bar_redington_nav_link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #016937;
  animation: borderExpand 0.3s ease-out forwards;
}

@keyframes borderExpand {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Icons container */
.top_bar_redington_icons_container {
  display: flex;
  align-items: center;
  margin-left: 20px;
  /* gap: 20px; */
}

.top_bar_redington_icon {
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.top_bar_redington_icon:hover {
  color: #016937;
}

/* Search styles - Enhanced UI */
.top_bar_redington_search_container {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 30px;
}

.top_bar_redington_search_input {
  width: 0;
  padding: 0;
  border: none;
  /* border-radius: 20px; */
  outline: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-size: 14px;
  position: absolute;
  right: 40px;
  background: transparent;
  height: 35px;
  box-shadow: none;
  opacity: 0;
  padding-right: 35px;
}

.top_bar_redington_search_input.active {
  width: clamp(250px, 50vw, 400px);
  padding: 5px 15px;
  background-color: white;
  border-bottom: 2px solid #016937;
  opacity: 1;
}

.top_bar_redington_search_btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 23px;
  color: #016937;
  transition: all 0.3s;
  margin-left: 90px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.top_bar_redington_search_btn:hover {
  transform: rotate(15deg);
}

/* Mobile menu styles */
.top_bar_redington_mobile_controls {
  display: none;
  align-items: center;
  gap: 15px;
}

.top_bar_redington_mobile_menu_btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  /* color: #333; */
  color: #016937;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.top_bar_redington_mobile_menu_btn:hover {
  background-color: #f5f5f5;
}

/* Header Css End */

/* Video Banner Css Start */
.redington_video_banner_section {
  padding: 60px 20px;
  text-align: center;
}

.redington_video_banner_wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  color: white;
  text-align: left;
}
@media (max-height: 800px) {
  .redington_video_banner_wrapper {
    height: 95vh;
  }
}

@media (max-height: 570px) {
  .redington_video_banner_wrapper {
    height: 130vh;
  }

  .redington_video_banner_text {
    max-width: 900px !important;
  }
}

.redington_video_banner_wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.redington_video_banner_text {
  z-index: 1;
  max-width: 700px;
}

.ourPartner .partner-item img {
  height: 100px;
  width: 100px;
  margin-left: 50px;
  margin-right: 50px;
}

/* Video Banner Css End */

/* Our mission css start */
.Our_Mission_Section {
  background-image: url('../images/OurMission/LinedBG.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.redington-container-mission {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.what-we-do-content .what-we-do-desc{
  font-weight: 600;
}

@media (min-width: 1258px) {
  .redington-container-mission {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.redington-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.redington-cards .smallTextPara{
font-size: 18px;
}
@media (max-width: 1500px) {
  .redington-cards .smallTextPara{ font-size: 16px;}
}
.redington-card {
  max-width: 500px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.redington-mission {
  background-color: #016937;
  color: #ffffff;
  animation: redingtonFloatLeftRight 4s ease-in-out infinite;
  /* z-index: 2; */
  display: grid;
  grid-template-columns: 20% 80%;
}

.redington-vision {
  background-color: #ffffff;
  color: #000000;
  animation: redingtonFloatRightLeft 4s ease-in-out infinite;
  margin-left: 69px;
  position: relative;
  top: -33px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 20% 80%;
}

@keyframes redingtonFloatLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

@keyframes redingtonFloatRightLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@media (max-width:550px) {
  .redington-mission {
    grid-template-columns: 100%;
  }

  .redington-mission img {
    margin-bottom: 15px;
  }

  .redington-vision {
    grid-template-columns: 100%;
  }

  .redington-vision img {
    margin-bottom: 15px;
  }

  .redington-container-mission.container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}


.redington-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}


@keyframes redingtonSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes redingtonSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.redington-cards {
  animation: redingtonSlideInLeft 1s ease-out forwards;
}

.redington-content {
  animation: redingtonSlideInRight 1s ease-out forwards;
}

/* Center alignment for the right content */
@media (min-width: 768px) {
  .redington-content {
    padding-top: 0;
    margin-top: 0;
  }
}

/* Our mission css end */

/* What we Do css start */

.imageSvgSec img {
  width: 100%;
}

.imageSvgSec {
  position: absolute;
  top: -54px;
}

.what-weDoSec {
  background-color: #016937;
}

.what-we-do-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  max-width: 90%;
  margin: 0 auto;
}

.what-we-do-card {
  position: relative;
  height: clamp(300px, 40vw, 600px);

  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.what-we-do-card img {
  width: 100%;
}

.what-we-do-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.what-we-do-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  transition: transform 0.4s ease;
  transform: translateY(0%);
  z-index: 2;
}

.what-we-do-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 16px;
  opacity: 0.9;
}

.what-we-do-card:hover .what-we-do-content {
  transform: translateY(-21%);
}

.what-we-do-card:hover .what-we-do-extra {
  max-height: 200px;
}

.what-we-do-title {
  /* font-size: 20px; */
  font-weight: 600;
  margin-bottom: 6px;
}

.what-we-do-desc {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .what-we-do-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .what-we-do-container {
    grid-template-columns: 1fr;
  }
}

/* What we Do css end */

/* Our Impact Container Start  */

.our-Impact .tstm_card.active {
  background: #016937;
}

.our-Impact .tstm_card.active .impactHeading,
.our-Impact .tstm_card.active .impactCardPara {
  color: #fff;
}

.our-Impact .tstm_card {
  border-radius: 20px;
}



.our-Impact {
  background-color: #E0ECE6;
  padding-bottom: 160px;
}

.insightMainSlider-slider-container .slick-slide {
  margin-right: 10px;
}

.insightMainSlider-hero-section {
  display: flex;
  flex-wrap: wrap;
  background: url('/image1.jpg') center top/cover no-repeat;
  height: 600px;
  color: white;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 70px;
  border-radius: 20px;
}

.insightMainSlider-slider-container {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  bottom: -20%;
  /* bottom: -15%; */
}


.insightMainSlider-slider-container .tstm_card {
  padding: 20px !important;
}

.insightMainSlider-slider-container .tstm_img img {
  width: 60px;
}

.impactHeading {
  color: #016937;
}

.impactCardPara {
  color: #016937;
  min-height: 80px;
}

.our-Impact .insightMainSlider-slider-container .tstm_card {
  cursor: pointer;
}

/* Our Impact Container End  */

/* Story of Changes start */
.storyOfChange .tstm_card {
  padding: 0px;
}

.tstm_card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card_img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.card_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black overlay */
  z-index: 1;
}

.overlay_text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}


/* Story of Changes end */


/* Redington Slider Top Start */
.redingtionSlider-container {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.redingtionSlider-cards-wrapper {
  display: flex;
  height: 500px;
  gap: 10px;
  align-items: flex-end;
  position: relative;
  padding-top: 50px;
}

.redingtionSlider-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* First card (left) */
.redingtionSlider-card:first-child {
  border-radius: 20px 0 0px 20px;
}

/* Middle card */
.redingtionSlider-card:nth-child(2) {
  border-radius: 0;
}

/* Last card (right) */
.redingtionSlider-card:last-child {
  border-radius: 0px 20px 20px 0px;
}

.redingtionSlider-card--active {
  flex: 0 0 80%;
  height: 100%;
}

.redingtionSlider-card:not(.redingtionSlider-card--active) {
  flex: 0 0 9%;
}

/* Middle card when not active - slightly raised */
.redingtionSlider-card:nth-child(2):not(.redingtionSlider-card--active) {
  height: 100%;
  margin-bottom: 5px;
  position: relative;
  top: -20px;
}

.redingtionSlider-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.redingtionSlider-card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.redingtionSlider-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redingtionSlider-card:not(.redingtionSlider-card--active):hover .redingtionSlider-card-image {
  transform: scale(1.05);
}

.redingtionSlider-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  z-index: 2;
}

.redingtionSlider-card--active .redingtionSlider-card-content {
  transform: translateY(0);
  opacity: 1;
}

.redingtionSlider-card-arrow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 50px;
  z-index: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.redingtionSlider-card--active .redingtionSlider-card-arrow {
  opacity: 0;
  visibility: hidden;
}

/* Blur effect for non-active cards */
.redingtionSlider-card:not(.redingtionSlider-card--active) .redingtionSlider-card-image-wrapper::after {
  backdrop-filter: blur(2px);
}

.redingtionSlider-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.redingtionSlider-card-description {
  font-size: 14px;
}

/* Mobile styles */
@media (max-width: 768px) {

  .redingtionSlider-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0%);
    transition: transform 0.3s ease;
    opacity: 1;
    z-index: 2;
  }

  .redingtionSlider-container {
    width: 100%;
    padding: 0 15px;
  }

  .redingtionSlider-cards-wrapper {
    display: none;
  }

  .redingtionSlider-mobile {
    display: block;
  }

  .redingtionSlider-mobile-card {
    position: relative;
    /* padding: 0 10px; */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .redingtionSlider-mobile-card .redingtionSlider-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  .redingtionSlider-mobile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .redingtionSlider-slick-dots {
    bottom: -30px;
  }

  .home_bnr .slide-content h1 { font-size: 30px;}
  .know-more-btn {margin-top:30px;}
}

@media (min-width: 769px) {
  .redingtionSlider-mobile {
    display: none;
  }
}

.topSlider {
  margin-top: 60px;
}

.slidersubText {
  color: #D1D1D1;
  margin-bottom: 18px;
}

.lightGreenText {
  color: #5BB456;
}

/* Redington Slider Top End */

/* Latest Updated start */
.latestUpdateContainer {
  max-width: 90%;
  margin: 0 auto;
}

.mainLatstSection {
  width: 100%;
  height: 60vh;
  border-radius: 10px;
  margin-top: 60px;

}

.latestUpdatedHeading {
  font-size: 36px;
  color: #016937;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .latestUpdatedHeading {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .latestUpdatedHeading {
    font-size: 28px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .latestUpdatedHeading {
    font-size: 24px;
  }
}


/* Latest Updated end */


/* Footer Css start here */
.redingtonFooterCon {
  background-color: #F6F6F6;
  padding-bottom: 0px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 37% 20% 37%;
  gap: 3%;
  max-width: 90%;
  margin: 0 auto;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.footerGrid .smallTextPara {
  font-size: 16px;
}

.footerBootom .smallTextPara {
  font-size: 16px;
  color: #016937;
}

.footerIconsGrid1 {
  display: flex;
  gap: 10px; margin-top: 25px;
}

.footerIconsGrid1 img {
  cursor: pointer;
}

/* .fotterHeading {
  color: #016937;
} */

.firstFooterGrid .smallTextPara {
  cursor: pointer;
  margin-bottom: 10px;
  color: rgb(33, 37, 41);
}

.firstFooterGrid .smallTextPara a {
  color: #ffffff;
  font-size: 16px;
}

/* .firstFooterGrid .smallTextPara:hover { color: #81CE7B; } */

.firstFooterGrid .smallTextPara a:hover {
  color: #81CE7B;
}

.footerBootom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 90%;
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media (max-width: 1200px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .fotterHeading {
    /* color: #016937; */
    padding-top: 0px;
  }
  .firstFooterGrid .smallTextPara:last-child { margin-bottom: 0;}

  .footerBootom p.text-right.smallTextPara { text-align:right; }

  .text-right {
    text-align: left;
  }
}

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

/* Footer Css end here */


/* About Css Start here  */

.padding-top-main {
  margin-top: 80px;
}


.firstSecImage {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  /* padding: 0 16px; */
}

.firstSecImage img {
  width: 100%;
  /* height: 60vh; */
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: blur(1px);
}


/* Centered h2 over image */
.firstSecImage h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: left !important;
  margin: 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .firstSecImage h2 {
    font-size: 1.5rem;
    padding: 0 10px;

  }

  /* .firstSecImage img {
    height: 40vh;
    margin-top: 40px;
  } */
}

/* section 2 about us text */
.section2About {
  /* margin-bottom: 60px; */
}

.imagesecSec2 {
  position: absolute;
  bottom: -8%;
}

@media (max-width:1470px) {
  .imagesecSec2 {
    position: absolute;
    bottom: -6%;
  }

}

@media (max-width:1120px) {
  .imagesecSec2 {
    position: absolute;
    bottom: -4%;
  }

}

@media (max-width:900px) {
  .imagesecSec2 {
    position: absolute;
    bottom: -2%;
  }

}

@media (max-width:510px) {
  .imagesecSec2 {
    position: absolute;
    bottom: -1%;
  }

}

.imagesecSec2 img {
  width: 100%;
}

.aboutTextGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}

.rightTextGrid {
  padding: 0px 70px;
  color: #016937;
}

.leftImageGrid .mainHandImage {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* HandSlider Container */
.handSlider-container {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Circle */
.handSlider-circle {
  width: 55vw;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  background-color: #016937;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Slider Images */
.handSlider-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
}

.handSlider-circle img.hidden {
  opacity: 0;
}

/* Tablet View */
@media (max-width: 768px) {
  .rightTextGrid {
    padding: 0px 10px;
    color: #016937;
  }

  .aboutTextGrid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 100px;
  }

  .handSlider-container {
    margin-top: 20px;
  }

  .handSlider-circle {
    width: 65vw;
    max-width: 200px;
  }

  .handSlider-circle img {
    width: 65%;
    height: 65%;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .handSlider-circle {
    width: 75vw;
    max-width: 150px;
  }

  .handSlider-circle img {
    width: 70%;
    height: 70%;
  }
}

/* About US Section Three */

.aboutUS-sectionThree {
  /* margin-bottom: 60px; */
}

.ourJourneySliderSec {
  padding: 40px 20px;
  max-width: 80%;
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
  box-sizing: border-box;
}

.fotterAboutText {
  max-width: 80%;
}

@media (max-width: 768px) {
  .ourJourneySliderSec {
    padding: 30px 16px;
    border-radius: 12px;
  }

  .fotterAboutText {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ourJourneySliderSec {
    padding: 20px 12px;
    border-radius: 10px;
  }
}


.ourJourneySliderSec h4 {
  text-align: left;
  padding-left: 34px;
  font-size: 30px;
}

.ourJourneySliderSec .card_img_wrap {
  padding: 30px;
  /* min-height: 300px; */
}

@media (max-width: 860px) {
  .ourJourneySliderSec h4 {
    text-align: center;
    padding-left: 0px;
    font-size: 30px;
  }
}

@media (max-width: 368px) {
  .ourJourneySliderSec h4 {
    text-align: center;
    font-size: 30px;
  }
}

/* map Section */

.map-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: white;
}

.map-container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
}

.map-content-section {
  flex: 1;
  padding-left: 40px;
}

.map-content-section h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.2;
}

.map-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 60px;
  opacity: 0.9;
}

.map-stats-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.map-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.map-stat-circle {
  width: 100px;
  height: 100px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #016937;
}

.map-stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.map-map-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.map-india-map {
  position: relative;
  width: 500px;
  height: 600px;
  background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/ebcaee52a4e712102dc7a702fe08e4abc70af545-wgGceC7wJdbyjOfHFh0GmzTg3RcdY0.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.map-button {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.map-button:hover {
  transform: scale(1.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.map-button.active {
  background: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.btn-north1 {
  top: 42%;
  left: 64%;
}

.btn-north2 {
  top: 35%;
  left: 76%;
}

.btn-central1 {
  top: 11%;
  left: 24%;
}

.btn-central2 {
  top: 26%;
  left: 27%;
}

.btn-central3 {
  top: 30%;
  left: 38%;
}

.btn-west1 {
  top: 45%;
  left: 14%;
}

.btn-west2 {
  top: 59%;
  left: 17%;
}

.btn-south1 {
  top: 65%;
  left: 30%;
}

.btn-south2 {
  top: 74%;
  left: 35%;
}

.btn-south3 {
  top: 83%;
  left: 35%;
}

.btn-south4 {
  top: 82%;
  left: 25%;
}
.btn-south5 {
  top: 88%;
  left: 28%;
}

.map-fade-transition {
  transition: opacity 0.3s ease-in-out;
}

.map-back-button {
  margin-top: 30px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: none;
}

.map-back-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.map-back-button.show {
  display: inline-block;
}

@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
    gap: 30px;
  }

  .map-content-section {
    padding-left: 0;
    text-align: center;
  }

  .map-content-section h1 {
    font-size: 2.5rem;
  }

  .map-stats-container {
    justify-content: center;
    gap: 20px;
  }

  .map-india-map {
    width: 350px;
    height: 420px;
  }

  .map-button {
    width: 20px;
    height: 20px;
  }
}

/* Section 5 */

.what-we-do-container-about {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  /* Desktop: 3 columns */
  gap: 20px;
  padding: 40px;
  max-width: 90%;
  margin: 0 auto;
}

/* Tablet view: 2 columns */
@media (max-width: 1024px) {
  .what-we-do-container-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view: 1 column */
@media (max-width: 600px) {
  .what-we-do-container-about {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}


/* section 6 */
.ourTrustee-accor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Default 3 columns */
  gap: 20px;
}

.ourTrustee-accor-card {
  /* background: white; */
  border-radius: 12px;
  padding: 16px 20px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  align-self: start;
  /* Important for grid-row height fix */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 109px;
  justify-content: center;
}

#readmorebtn {
  display: block;
  margin: auto;
}

.soi-content-overlay #readmorebtn .stotyImp {
  padding: 15px;
  font-size: 16px;
}

.ourTrustee-accor-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ourTrustee-accor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ourTrustee-accor-title {
  color: #146c43;
  font-weight: 500;
  font-size: 17px;
  font-weight: bold;
}

.founderDesignation {
  font-weight: normal;
  font-size: 15px;
}

.ourTrustee-accor-icon {
  transition: transform 0.3s ease;
  display: none;
}

.ourTrustee-accor-card.active .ourTrustee-accor-icon {
  transform: rotate(90deg);
}

.ourTrustee-accor-body {
  display: block;
  padding-top: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.ourTrustee-accor-body p {
  font-size: 16px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .ourTrustee-accor-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ourTrustee-accor-container {
    grid-template-columns: 1fr;
  }
}

/* Section7 */

.orTeamSlider .card_img_wrap h3 {
  padding: 10px 12px;
  color: #016937;
}

.orTeamSlider .card_img_wrap p {
  padding: 5px 12px;
  color: #016937;
}


/* About Css End here  */


.ourJourneySliderSec .tstm-slider .slick-list {
  padding-right: 0%;
  margin-right: 0% !important;
  overflow: hidden;
}


/* Contact page css start here ============================================================== */


.contactProduct {
  background-color: #fff !important;
}

.productPage-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  padding: 40px 20px;


}

.productPage-contact-left {
  text-align: left;
  margin: auto;
}

.productPage-contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #111;
}

.productPage-contact-title span {
  color: #4253f0;
}

.productPage-contact-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.productPage-contact-right {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  align-self: center;
}

.productPage-contact-form-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.productPage-contact-form-title h2 {
  color: #000000;
}

.productPage-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.productPage-contact-input,
.productPage-contact-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c3cbe4;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.productPage-contact-input:focus,
.productPage-contact-textarea:focus {
  border-color: #016937;
}

.equipNowBTN {
  background-color: #016937 !important;
  color: #fff !important;
}

.equipNowProduct {
  background-color: #fff !important;
  border: 1px solid #016937 !important;

}

.enquire_btn {
  font-family: 'Avenir Next';

}

.productPage-contact-textarea {
  resize: vertical;
  min-height: 200px;
}

.productPage-contact-button {
  background-color: #016937;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.productPage-contact-button:hover {
  background-color: #016937;
}

.productPage-contact-button {
  width: 50%;
}

/* Grid for desktop/tablet */
@media (min-width: 769px) {
  .productPage-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width:1500px) {
  .top_bar_redington_container {
    padding: 5px 20px;
  }
}

@media (max-width:1024px) {
  .productPage-contact-grid {
    max-width: 100%;
  }

  .productPage-contact-grid {
    gap: 50px;
  }

  .productPage-contact-right {
    padding: 15px;
  }
}


/* map embded */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
}

.left-section {
  flex: 1;
  min-width: 300px;
}

.info-group {
  margin-bottom: 30px;
}

.info-group h3 {
  font-size: 22px;
  color: #016937;
  margin-bottom: 12px;
  font-weight: 100;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.info-item i {
  font-size: 20px;
  margin-top: 4px;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #016937;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.social-icons a img {
  width: 50px;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.map-section {
  flex: 1;
  min-width: 320px;
}

.map-embed {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
  }

  .map-section {
    min-width: 100%;
  }

  .map-embed {
    height: 250px;
  }
}

.foterLogo {
  width: 80px;
  margin-bottom: 15px;
}


/* Media query css start here =========================================== */

@media (max-width: 1440px) {
  .redington-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .what-we-do-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 100%;
    margin: 0 auto;
  }

  .footerIconsGrid1 img {
    width: 44px;
  }
}

@media (max-width: 1024px) {
  .insightMainSlider-hero-section {
    max-width: 92%;

  }

  .what-we-do-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ReadMoreRedington {
    font-size: clamp(16px, 2.5vw, 24px);
    padding: 10px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    margin-top: 40px;
  }

  .foterLogo {
    width: 90px;
  }
}

@media (max-width: 768px) {
  .what-we-do-card:hover .what-we-do-content {
    transform: translateY(-1%);
  }

  .what-we-do-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ourJourneySliderSec {
    max-width: 100%;
  }

  .map-stat-circle {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #016937;
  }
}

@media (max-width: 500px) {
  .ReadMoreRedington {
    font-size: 16px;
    padding: 8px 18px;
    border-radius: 8px;
    margin-top: 30px;
  }

  .redington-vision {
    background-color: #ffffff;
    color: #000000;
    animation: redingtonFloatRightLeft 4s ease-in-out infinite;
    margin-left: 0px;
    position: static;
    top: -33px;
    border: 1px solid #e2e8f0;
  }

  .container,
  .container-sm {
    max-width: 100%;
  }

  .redington-container-mission {

    padding: 60px 5px;
  }

  .padding-top-main {
    margin-top: 45px;
  }
}

.productPage-contact-input,
.productPage-contact-textarea {
  margin-bottom: 15px;
}

.enquire_btn {
  padding: 11px 15px !important;
  font-family: 'Avenir Next' !important;
}


/* Scope only to the specific slider with .ourJourneySlider */
.ourJourneySlider .slick-slide {
  display: flex !important;
  /* Use flexbox */
  height: auto !important;
  /* Allow height to adjust */
}

.ourJourneySlider .slick-track {
  display: flex !important;
  /* Align slides in a row with flex */
  align-items: stretch !important;
  /* Stretch slides to same height */
}

.ourJourneySlider .tstm_item {
  height: 100% !important;
  /* Make item take full height of slide */
}

.ourJourneySlider .tstm_card {
  height: 100% !important;
  /* Make card take full height of item */
  display: flex !important;
  flex-direction: column !important;
}

.ourJourneySlider .card_img_wrap {
  flex: 1 !important;
  /* Allow content area to grow and take remaining space */
}

.slick-arrow:hover {
  /* background-color: #016937 !important; */
}


/* latest update section */

.latest-updates {
  /* background-color: #ffffff; */
  border-radius: 12px;
  padding: 40px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #2d5a27;
  text-align: center;
  margin-bottom: 40px;
}

/* Featured Article Styles */
.featured-article {
  margin-bottom: 60px;
}

.featured-image {
  width: 100%;
  height: 500px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.featured-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #016937;
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.article-meta .source,
.article-meta .date {
  color: #666;
  font-size: 0.95rem;
}

.separator {
  color: #666;
  margin: 0 10px;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.share-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.share-btn:hover {
  color: #2d5a27;
}

.read-more-btn {
  background-color: #2d5a27;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1e3d1a;
}

/* Slider Styles */
.slider-container {
  position: relative;
  /* Remove any padding/margin that creates gaps */
  margin: 0;
  padding: 0;
}

.articles-slider {
  /* Remove negative margins that create gaps */
  margin: 0;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  /* Remove side margins */
  margin: 0 5px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex !important;
  height: 180px;
}

.article-card:hover {
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
}

.card-image {
  width: 40%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #016937;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #666;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-actions .read-more-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.card-actions .share-btn {
  padding: 4px;
}

/* Slick Slider Customization */
.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: #2d5a27;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: #2d5a27;
}

/* Position arrows closer to content - remove gaps */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slick-prev {
  left: -20px;
  /* Reduced from -50px */
}

.slick-next {
  right: -20px;
  /* Reduced from -50px */
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: #2d5a27;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #1e3d1a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .latest-updates {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .featured-image {
    height: 250px;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .article-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .article-card {
    flex-direction: column;
    height: auto;
    margin: 0 3px;
  }

  .card-image {
    width: 100%;
    height: 150px;
  }

  .card-content {
    width: 100%;
  }

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

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

  .slick-prev:before,
  .slick-next:before {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .latest-updates {
    padding: 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .featured-image {
    height: 200px;
  }

  .featured-title {
    font-size: 1.3rem;
  }

  .card-content {
    padding: 15px;
  }

  .article-card {
    margin: 0 2px;
  }

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

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

  .slick-prev:before,
  .slick-next:before {
    font-size: 25px;
  }
}

.articles-slider .slick-slide {
  padding-left: 10px;
  padding-right: 10px;
}



/* story of impact css start here ------------------------------------------------------- */


.soi-beneficiaries {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: left;
}

.greenBGDark {
  background-color: #056c3c;
}



.soi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

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

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

.soi-box {
  border-left: 1px solid #ffffff88;
  padding: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

.textWhite {
  color: #fff;
}

.soi-number {
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.soi-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.soi-box:hover .soi-number {
  font-size: 1.4rem;
}

.soi-box:hover .soi-text {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .soi-number {
    font-size: 2rem;
  }
}



/* Volintery Sction */

.soi-volunteer-section {
  max-width: 1400px;
  margin: auto;
}

.soi-volunteer-section {
  padding-left: 20px;
  padding-right: 20px;
}

.soi-volunteer-section h2 {
  font-size: 2.5rem;
  color: #056c3c;
  margin-bottom: 30px;
}

.soi-volunteer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.soi-sidebar {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.soi-sidebar button {
  display: block;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-size: 1.3rem;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  color: #003b1f;
  transition: all 0.2s ease;
}



.soi-sidebar .active {
  color: #056c3c;
}

.soi-content {
  flex: 2;
  min-width: 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  color: white;
}

.soi-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* lightish black overlay */
  z-index: 1;
}

/* Make sure text is above the overlay */
.soi-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 80%);
  width: 100%;
  z-index: 2;
  display: grid;
  grid-template-columns: 80% 20%;
  /* Ensures text appears above the overlay */
}

@media (max-width:1024px) {
  .soi-content-overlay {

    grid-template-columns: 70% 30%;

  }

  .soi-content-overlay #readmorebtn .stotyImp {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width:500px) {
  .soi-content-overlay {

    grid-template-columns: 100%;
    height: 250px;
  }

  .soi-content-overlay #readmorebtn .stotyImp {
    padding: 10px;
    font-size: 16px;
  }
}


.soi-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* max-height: 450px; */
}

@media (max-width:500px) {
  .soi-content img {
    height: 400px;
  }

  .soi-volunteer-section {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.soi-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 80%);
  width: 100%;
}

.soi-content-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.soi-content-overlay p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .soi-volunteer-grid {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }


  .soi-content-overlay {
    padding: 20px;
  }

  .soi-content-overlay h3 {
    font-size: 1.5rem;
  }

  .soi-content-overlay p {
    font-size: 0.95rem;
  }

  .soi-sidebar button {
    font-size: 0.8rem;
  }
}

/* story of impact top banner */


.soi-banner-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1600px;
  margin: auto;
  height: 400px;
}

.soi-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.soi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.soi-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
}

.soiTopSec {
  padding: 20px;
  margin-top: 90px;
  padding-bottom: 60px !important;
  padding-top: 60px;
}

.soi-leaf {
  height: 60px;
  margin-right: 12px;
  transform: translateY(-40px);
}

.soi-text-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.soi-highlight {
  color: #78D97C;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 1024px) {
  .soi-banner-container {
    height: 400px;
  }

  .soi-text-wrapper h1 {
    font-size: 2rem;
    text-align: center;
  }

  .soi-leaf {
    height: 40px;
    transform: translateY(-6px);
    margin-bottom: 10px;
  }

  .soi-text-wrapper {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .soi-banner-container {
    height: 300px;
  }

  .soi-text-wrapper h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    width: 206px;
  }

  .soi-leaf {
    height: 28px;
    transform: translateY(0);
    margin-right: 0;
  }
}

/* Key impact highlights  */



.soi-horizontal-scroll {
  position: relative;
}

.soi-horizontal-wrapper {
  position: sticky;
  top: 0;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-height: 561px) and (max-height: 767px) {
 .soi-horizontal-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
}

@media (max-width:1024px) {

  .soi-horizontal-wrapper {
    height: 100vh;
  }
}

.soi-slider-text {
  text-align: left;
  max-width: 1000px;
  padding: 60px 20px 30px 150px;
}

.soi-slider-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #016937;
  text-align: left;
}

.soi-subtext h3 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #016937;
  margin-bottom: 20px;
}

/* 
    .soi-subtext p {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
      max-width: 600px;
    } */

.soi-scroll-container {
  overflow: hidden;
  width: 100%;
}

.soi-scroll-track {
  display: flex;
  gap: 20px;
  padding-left: 150px;
  will-change: transform;
}

.soi-card {
  flex: 0 0 calc((100vw - 190px) / 3);
  height: 300px;
  background: #ffffff;
  color: #003b1f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  border: 1px solid #eee;
}

.soi-card-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #056c3c;
}

.soi-card-text {
  font-size: 1rem;
  margin-top: 15px;
  color: #333;
  line-height: 1.4;
}

.soi-scroll-track>.soi-card:last-child {
  margin-right: 0 !important;
}

@media (max-width: 1024px) {
  .soi-card {
    flex: 0 0 calc((100vw - 170px) / 2);
  }

  .soi-slider-text {
    padding-left: 150px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .soi-card {
    flex: 0 0 calc(100vw - 170px);
    height: auto;
    font-size: 1.4rem;
  }

  .soi-slider-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .HideBrtag {
    display: none;
  }

  .soi-card-number {
    font-size: 2rem;
  }

  .soi-slider-text h2 {
    font-size: 2rem;
  }

  .soi-subtext h3 {
    font-size: 1.1rem;
  }

  .soi-subtext p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .soi-slider-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .soi-card {
    flex: 0 0 90%;
    font-size: 1.2rem;
  }
}

/* our work css */

@font-face {
  font-family: 'Avenir Next';
  src: url('./assets/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Avenir Next Medium';
  src: url('./assets/fonts/AvenirNextLTPro-MediumCn.otf') format('opentype');
}

/* Base (mobile & tablet): NO sticky */
.ow-container {
  display: flex;
  flex-direction: column;
  /* stack on small screens */
  width: 80%;
  margin: 0 auto;
  gap: 16px;
  /* DO NOT put overflow hidden here if you want sticky later */
}

.ow-sidebar {
  width: 100%;
  padding: 40px 20px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 15px;
  position: static;
  /* not sticky on small */
  top: auto;
  background: #fff;
}

/* Tablet layout (optional): still not sticky */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .ow-container {
    flex-direction: row;
    gap: 24px;
  }

  .ow-sidebar {
    width: 320px;
    /* fixed column, but not sticky */
  }
}

/* Desktop: enable sticky */
@media (min-width: 1024px) {
  .ow-container {
    flex-direction: row;
    gap: 24px;
  }

  .ow-sidebar {
    width: 310px;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 100px;
    align-self: flex-start;
    /* important in flex rows */
  }
}


/* .ow-container {
  display: flex;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.ow-sidebar {
  width: 310px;
  padding: 40px 20px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 15px;
} */

.ow-nav-item {
  font-size: 25px;
  line-height: 1.3;
  color: #006736;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ow-nav-item.active {
  font-weight: 600;
  opacity: 1;
}

.ow-nav-item img {
  margin-bottom: 15px;
}



.ow-tab-content {
  display: none;
}

.ow-tab-content.active {
  display: block;
}

.ow-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 40px 40px;
}

.ow-accordion-item {
  border-bottom: 1px solid #eee;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

.ow-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ow-accordion-text {
  flex: 1;
}

.ow-accordion-text h3 {
  color: #00703c;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 500;
  line-height: 1.4;
}

.ow-accordion-text p {
  margin: 0;
  font-size: 16px;
  color: #222;
  max-width: 90%;
}

.ow-arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.ow-arrow-icon {
  font-size: 18px;
  color: #222;
}

.ow-arrow-icon svg {
  width: 20px;
}

.ow-accordion-header.active .ow-arrow-btn {
  transform: rotate(90deg);
}

.ow-accordion-body {
  display: none;
  /*  margin-top: 20px; */
}

.ow-accordion-body p.full-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.ow-impact-heading {
  color: #00703c;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ow-slider {
  margin-bottom: 20px;
  position: relative;
}

.ow-slide-card {
  padding: 0 10px;
}

.ow-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.ow-impact-list {
  font-size: 16px;
  color: #333;
  padding-left: 20px;
}

.ow-impact-list li {
  margin-bottom: 10px;
}

.ow-impact-list li ul {
  list-style: lower-alpha;
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .ow-container {
    flex-direction: column;
  }

  .ow-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px 20px;
    background: #f6fdf9;
    border-bottom: 1px solid #e0e0e0;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ow-nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 16px;
    color: #006736;
    border: 1px solid #d0e2d9;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .ow-nav-item.active, .ow-nav-item.active:hover {
    background-color: #006736;
    color: white;
    font-weight: 600;
    border-color: #004d2a;
  }

  .ow-nav-item:hover {
    background-color: #e8f5f0;
  }

  .ow-content {
    padding: 20px;
  }

  .ow-accordion-text h3 {
    font-size: 20px;
  }

  .ow-accordion-text p,
  .ow-accordion-body p,
  .ow-impact-list {
    font-size: 14px;
  }

  .ow-arrow-btn {
    width: 32px;
    height: 32px;
  }

  .ow-slider img {
    height: 180px;
  }
}

.mobile-follow {
  display: none;
}

@media (max-width:1024px) {
  .ow-nav-item.active img {
    filter: brightness(0) invert(1); border-radius: 50%;
  }

  .mobile-follow {
    display: block;
  }

}

@media (max-width:500px) {
  .ow-container {
    display: flex;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
  }

}

.ow-slider .slick-arrow {
  height: 40px;
  width: 40px;
}

.ow-slider .slick-next {
  right: -23px !important;
  background: url(../images/Home/next_arrow.png);
  background-size: contain !important;

}

.ow-slider .slick-prev {
  left: -23px !important;
  background: url(../images/Home/prev_arrow.png);
  background-size: contain !important;

}

.ow-slider.slick-next:hover {
  background-size: contain !important;
}


.ow-slider .slick-prev:hover {
  background-size: contain !important;
}

/* Wrapper spacing for slick */
.what-we-do-slider .slick-list {
  padding: 0 10px;
}

.what-we-do-slider .slick-slide {
  padding: 0 10px;
}

.impactSliderFoundation .tstm_card.active {
  background-color: rgb(1, 105, 55);
  ;
  transition: background-color 0.3s ease;
}

.impactSliderFoundation .tstm_card.active img {
  filter: brightness(0) invert(1);
}

/* About Awards Slider  */

.award-slider-wrapper {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
}

.award-slider {
  margin: auto;
}

.award-slider .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}

.award-card {
  background: #ffffff;
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  /* margin: 0 10px; */
  border: 1px solid lightgrey;
}

.award-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.award-trophy {
  width: 60%;
  height: auto;
}

/* .footerBootom .text-right a {
  color: rgb(33, 37, 41);
}

.footerBootom .text-right a:hover {
  color: rgb(1, 105, 55);
} */

/* home slider */

.slider-wrapper {
  width: 100%;
  max-width: 90%;
  margin: 90px auto 0px auto;
  padding: 60px 0px;

  overflow: hidden;
  position: relative;
}

.slider-wrapper .progress-bar {
  flex-direction: row;
}

.slider .slide {
  position: relative;
  height: 500px;
  color: white;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.5);
  border-radius: 20px;
}

.slide-content {
  position: absolute;
  top: 20%;
  left: 5%;
  right: 5%;
  color: white;
  max-width: 600px;
}

.slide-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.slide-content h1 {
  font-size: 44px;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 4px 4px 6px rgba(0,0,0,0.6);
}

.slide-content h1 span {
  display: block;
  color: #5BB456;
  margin-top: 10px;
}

.slide-content p {
  font-size: 24px;
  margin-top: 10px;
  color: #ddd;
}

.progress-bar {
  position: absolute;
  bottom: 30%;
  left: 5%;
  display: flex;
  gap: 5px;
  width: fit-content;
}

.progress-bar span {
  height: 6px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar span.completed {
  background-color: #5BB456;
}

.progress-bar span.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #5BB456;
  animation: fillBar 5s linear forwards;
}

@keyframes fillBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slide-content {
    top: 10%;
    max-width: 90%;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .progress-bar {
    left: 5%;
    bottom: 82pxpx;
  }

  .slider-wrapper {
    /* margin: 60px auto 30px auto;  */

  }
}

.redington-card.redington-vision {
  color: #016937;
}

/* tabel foundation  */

:root {
  --foundation-bg: #ffffff;
  --foundation-text: #1b1f24;
  --foundation-muted: #6b7280;
  --foundation-border: #d1d5db;
  --foundation-border-dark: #9ca3af;
  --foundation-row-alt: #f9fafb;
  --foundation-accent: #111827;
  --foundation-radius: 10px;
  --foundation-shadow: 0 1px 2px rgba(17, 24, 39, .05),
    0 8px 24px rgba(17, 24, 39, .06);
}

/* Layout wrapper */
.foundation-container {
  max-width: 1080px;
  margin: 32px auto;
  padding: 0 16px;
  /* font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; */
  color: var(--foundation-text);
  background: var(--foundation-bg);
}

.foundation-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: .2px;
  margin: 6px 0 16px;
  color: var(--foundation-accent);
}

.foundation-table-wrap {
  position: relative;
  border: 1px solid var(--foundation-border);
  border-radius: var(--foundation-radius);
  box-shadow: var(--foundation-shadow);
  overflow: hidden;
  background: #fff;
  /* enable scroll on small screens */
  overflow-x: auto;
}

/* Subtle scroll shadows (JS toggles left/right classes) */
.foundation-table-wrap:before,
.foundation-table-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  pointer-events: none;
  transition: opacity .2s ease;
  opacity: 0;
}

.foundation-table-wrap.foundation-scroll-left:before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .08), rgba(0, 0, 0, 0));
  opacity: 1;
}

.foundation-table-wrap.foundation-scroll-right:after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, .08), rgba(0, 0, 0, 0));
  opacity: 1;
}

table.foundation-table {
  width: 100%;
  min-width: 760px;
  /* keeps structure on smaller screens, scrolls */
  border-collapse: separate;
  border-spacing: 0;
}

.foundation-table caption {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: var(--foundation-muted);
  padding: 12px 16px 0;
}

.foundation-table thead th {
  background: #f3f4f6;
  color: #111827;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--foundation-border-dark);
  border-right: 1px solid var(--foundation-border);
  padding: 12px 14px;
  font-size: 14px;
  white-space: nowrap;
}

.foundation-table thead th:last-child {
  border-right: 0;
}

.foundation-table tbody td {
  border-bottom: 1px solid var(--foundation-border);
  border-right: 1px solid var(--foundation-border);
  vertical-align: top;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  background: #fff;
}

.foundation-table tbody tr:nth-child(even) td {
  background: var(--foundation-row-alt);
}

.foundation-table tbody td:last-child {
  border-right: 0;
}

/* Narrow screens: optional stacked “cards” view */
@media (max-width: 540px) {
  .foundation-table {
    min-width: 0;
  }

  .foundation-table thead {
    display: none;
  }

  .foundation-table tbody tr {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "sn hospital"
      "sn support";
    border-bottom: 1px solid var(--foundation-border-dark);
  }

  .foundation-table tbody td {
    border: 0 !important;
    padding: 10px 12px;
    background: #fff !important;
  }

  .foundation-td-sn {
    grid-area: sn;
    font-weight: 700;
    color: var(--foundation-accent);
  }

  .foundation-td-hosp {
    grid-area: hospital;
    padding-left: 0;
  }

  .foundation-td-sup {
    grid-area: support;
    padding-left: 0;
    color: #111;
  }

  .foundation-table-wrap {
    border-radius: var(--foundation-radius);
  }

  .foundation-container {

    padding: 0;

  }
}

/* Small utilities */
.foundation-mono {
  font-variant-numeric: tabular-nums;
}

.foundation-note {
  color: var(--foundation-muted);
  font-size: 13px;
  margin: 10px 2px 0;
}


/* Pop up details  */

:root {
  --overlay-bg: rgba(0, 0, 0, .55);
  --popup-bg: #fff;
  --radius: 16px;
  --green: #16a34a;
  --max-w: min(92vw, 640px);
  --max-h: min(86vh, 720px);
}

body.foundation-si-lock-scroll {
  overflow: hidden;
}

.foundation-si-btn {
  padding: .8rem 1.1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #111;
  color: #fff;
  font: 600 16px/1.2 system-ui, sans-serif;
}

/* Overlay (default hidden) */
.foundation-si-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--overlay-bg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

/* Overlay visible */
.foundation-si-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal */
.foundation-si-modal {
  width: 100%;
  max-width: var(--max-w);
  background: var(--popup-bg);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  display: grid;
  grid-template-rows: auto 1fr;
  transform: scale(0.8);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

/* Animate modal when open */
.foundation-si-overlay.open .foundation-si-modal {
  transform: scale(1);
  opacity: 1;
}

.foundation-si-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px 20px;
  gap: 12px;
}

.foundation-si-title {
  margin: 0;
  font: 700 20px/1.25 system-ui, sans-serif;
}

.foundation-si-close {
  --size: 36px;
  width: var(--size);
  height: var(--size);
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.foundation-si-close svg {
  width: 22px;
  height: 22px;
}

.foundation-si-body {
  padding: 0 20px 20px 20px;
  max-height: var(--max-h);
  overflow: auto;
  font: 400 16px/1.6 system-ui, sans-serif;
  color: #222;
}


/* Slider controls */
.soi-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
  padding: 0 10px;
  box-sizing: border-box;
}

.soi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
}

.soi-slide.active {
  opacity: 1;
}

.soi-slider-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.soi-slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Slider indicators */
.soi-slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 19px;
  display: flex;
  justify-content: right;
  gap: 8px;
  z-index: 100;
}

.soi-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.soi-indicator.active {
  background: #78D97C;
  transform: scale(1.2);
}

.soi-content {
  height: 540px;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('./assets/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Avenir Next Medium';
  src: url('./assets/fonts/AvenirNextLTPro-MediumCn.otf') format('opentype');
}

.soi-volunteer-grid {
  padding: 0px 10px;
}


@media (max-width:850px) {
  .soi-image-container {
    height: 400px;
  }
}


/* Insights Listing css  */
.foundation-detail-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  margin-top: 100px;
}

/* Header Styles */
.foundation-detail-header {
  margin-bottom: 30px;
}

.foundation-detail-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #016937;
}

.foundation-detail-meta {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.foundation-detail-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.foundation-detail-left {
  flex: 1 1 65%;
  min-width: 300px;
}

.foundation-detail-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.foundation-detail-description {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.foundation-detail-description p {
  margin-bottom: 15px;
}
.foundation-detail-right {
  flex: 1 1 30%;
  min-width: 250px;
}

.foundation-detail-related {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.foundation-detail-related-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #016937;
}

.foundation-detail-related-post {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.foundation-detail-related-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.foundation-detail-related-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.foundation-detail-related-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

.foundation-detail-related-post p {
  font-size: 18px;
}

.foundation-detail-related-link {
  color: #016937;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}

.foundation-detail-related-link:hover {
  color: #016937;

}

.foundation-detail-related-link:hover {
  text-decoration: underline;
}

.insightTopSec.topBannerDetail {
  margin-top: 56px;
}

@media (max-width:1023px) {
  .relatedPostWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .foundation-detail-container {
    padding: 0px;
    margin-top: 50px;
  }

  .foundation-detail-content {
    flex-direction: column;
  }

  .foundation-detail-title {
    font-size: 2rem;
  }

  .foundation-detail-left,
  .foundation-detail-right {
    flex: 1 1 100%;
  }

}

@media (max-width: 480px) {
  .foundation-detail-title {
    font-size: 1.7rem;
  }

  .foundation-detail-description,
  .foundation-detail-related {
    padding: 15px;
  }

  .relatedPostWrap {
    grid-template-columns: 1fr;
  }
}

.smallTextPara.readMoreInsight {
  display: inline-block;
  background-color: #FFF;
  /* green */
  color: #22923cff;
  padding: 5px 18px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 13px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.smallTextPara.readMoreInsight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #22923cff, #016937);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.smallTextPara.readMoreInsight:hover {
  background-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(34, 146, 60, 0.25);
}

.smallTextPara.readMoreInsight:hover::before { left: 0; }

.readMoreWrapper {
  text-align: left;
  margin-right: 15px
}

.parentBanner { padding-bottom: 60px;}
.insightTopSec .headingSectionMain.text_Page_center{text-align: left;
  margin-left: 5.5%;
}


/* 27 oct sidhi */
.know-more-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 35px;
  border: 2px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.know-more-btn:hover { background:#ffffff; color:#016937;}
#our-verticals {  scroll-margin-top: 100px;}
.footerIconsGrid1 img {width:45px;}
.dark_green_bg {background: #086B3A; color: #ffffff;}
.dark_green_bg .firstFooterGrid .smallTextPara {color: #ffffff;}
footer.redington-Container.redingtonFooterCon { padding-top: 0;}

.redingtonFooterCon .dark_green_bg {
  position: relative;
  background-color: #086B3A;
  background-image: url("https://redingtongroup-foundation.hashtechorange.com/wp-content/uploads/2025/10/footer-bg-dsktp.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
  background-blend-mode: soft-light;
}
.redingtonFooterCon .dark_green_bg::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: rgba(8, 107, 58, 0.75);
  pointer-events: none;
}
.redingtonFooterCon .dark_green_bg .footerGrid,
.redingtonFooterCon .dark_green_bg .your-text-wrap {
  position: relative;
  z-index: 1;
}
.ftr_btm_logo {width: 15px; height: 35px;}
@media (max-width: 1024px) {
  .redingtonFooterCon .dark_green_bg {
    background-image: url("https://redingtongroup-foundation.hashtechorange.com/wp-content/uploads/2025/10/footer-bg-mbl.png");
    background-position: top center;
    background-size: cover;
  }
}
.footerBootom .text-right.smallTextPara { display: flex; gap: 5px; justify-content: flex-end;} 
.rdngtn_grp_link br {display: none;}
.LinedBG.redington-Container.aboutUS-sectionThree {padding-top: 140px;}
@media (max-width: 480px) { .rdngtn_grp_link br {display: block;}}
/* end */