@font-face {
  font-family: 'Sketchup';
  src: url("/assets/fonts/sketchup/SKETCHUP FREE TRIAL.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/satoshi/Satoshi-Regular.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Satosh';
  src: url('/assets/fonts/satosh/Satoshi-MediumItalic.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  height: 100svh;
}

.maskingHeaderBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99;
  opacity: 0.5;
}

.section-wrapper {
  position: relative;
  --max-width: 1110px;
  --padding: 1.25rem;
  width: min(var(--max-width), 100% - var(--padding)*2);
  margin-inline: auto;
}

/*Get involoved button*/
.getInvolved_button {
  position: relative;
  width: 175px;
  display: flex;
}

.getInvolved_button a {
  position: relative;
  background-color: #F6821F;
  color: white;
  display: flex;
  align-items: start;
  justify-content: start;
  padding-block: 14px;
  padding-inline: 24px;
  border-radius: 8px;
  transition: all 300ms ease-in-out;
  flex-grow: 0;
  white-space: nowrap;
  overflow: hidden;
}

.getInvolved_button:hover a {
  flex-grow: 1;
  padding-inline: 18px;
}

.getInvolved_button .button_icon {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  transition: all 500ms ease-in-out;
}

.getInvolved_button:hover .button_icon {
  right: 15px;
}

.getInvolved_button a .content-lowI {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}

.getInvolved_button a .content-lowI::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 1px;
  transform: translateX(-1px);
  background-image: url(/assets/images/icon-in-i-char.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 5.5px;
}

.title-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/threelinesleft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 65px;
  display: inline-block;
  animation: scaleInOut 5s infinite;
}

@keyframes scaleInOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.title-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  background-image: url(../images/threelinesleft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 65px;
  display: inline-block;
  animation: rotateScaleAnimation 5s infinite;
}

@keyframes rotateScaleAnimation {
  0% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.3);
    /* Adjust scale as needed */
  }

  100% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
}

.title-line-right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%) rotate(180deg);
  background-image: url(../images/threelinesleft.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 65px;
  display: inline-block;
  animation: rotateScaleAnimation 5s infinite;
}

@media (max-width:800px) {

  .title-lines::after,
  .title-lines::before,
  .title-line-right::after {
    width: 70px;
    height: 55px;
  }
}

@media (max-width:450px) {

  .title-lines::after,
  .title-lines::before,
  .title-line-right::after {
    display: none;
  }
}


.intro-title-lines {
  position: relative;
}

.intro-title-lines::before,
.intro-title-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  background-image: url('../images/threelinesleft.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 55px;
  transform: translateY(-50%);
}

/* LEFT ICON */
.intro-title-lines::before {
  left: 20px;  /* push outside */
  animation: scaleInOut 5s infinite;
}

/* RIGHT ICON */
.intro-title-lines::after {
  right: -40px;  /* push outside */
  transform:   rotate(180deg);
  animation: rotateScaleAnimation 5s infinite;
}

@media (max-width: 767px) {

  .intro-title-lines::before,
  .intro-title-lines::after {
    display: none;
  }
}




.title-quote::before {
  content: '';
  transform: translate(0%, 0%);
  background-image: url(/assets/images/quotes.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  display: inline-block;

}

@media (max-width:700px) {
  .title-quote::before {
    width: 28px;
    height: 28px;
  }
}

.contribute-title::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  background-image: url(/assets/images/quotes.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  display: inline-block;

}

*/ .getInvolved_button:hover a .content-capI {
  opacity: 0;
  visibility: hidden;
}

.getInvolved_button:hover a .content-lowI {
  opacity: 1;
  visibility: visible;
}

@media (max-width:900px) {
  header .getInvolved_button {
    display: none;
  }
}

/* contact us button */
.contactus-btn {
  position: relative;
  width: 175px;
  display: flex;
}

.contactus-btn button {
  position: relative;
  border: 1px solid #ffffff;
  color: white;
  display: flex;
  align-items: start;
  justify-content: start;
  padding-block: 14px;
  padding-inline: 32px;
  border-radius: 8px;
  flex-grow: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.contactus-btn:hover button {
  flex-grow: 1;
  padding-inline: 18px;
  gap: 10px;
  background-color: #ffffff;
}

.contactus-btn:hover span {
  color: #F6821F;
}

.btn-icon {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  right: -30%;
}

.contactus-btn:hover button .btn-icon {
  opacity: 1;
  visibility: visible;
}

.contactus-btn:hover button .btn-icon i {
  color: #F6821F;
}

/* explore more button */
.explore_btn {
  width: auto;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}

.explore_btn:hover {
  padding-right: calc(1rem + 2rem);
}

.explore_btn .button_icon {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
}

.explore_btn:hover .button_icon {
  right: 20px;
}



/* header style css */
.header-navigation {
  z-index: 9999;
  width: 100%;
}

.sticky-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* optional for visual consistency */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 0.3s ease forwards;
  z-index: 9999;
  padding-bottom: 20px;
}

/* Optional smooth entrance animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.nav-link span {
  border-bottom: 1px solid transparent;
}

.nav-link:hover i,
.nav-link:focus i {
  color: #F6821F !important;
}

.nav-link:hover span,
.nav-link:focus span {
  color: #F6821F;
  border-bottom: 1px solid #F6821F;
  transition: all 300ms ease-in-out;
}

.nav-link.active span {
  color: #F6821F;
  border-bottom: 1px solid #F6821F;
}

.nav-link.active i {
  color: #F6821F;
}


.dropdown-submenu {
  background-color: #ffffff;
  width: max-content;
  padding: 16px calc(20px + 20%) 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 60;
}

.dropdown-submenu li a:hover,
.dropdown-submenu li a:focus {
  color: #F6821F;
  border-bottom: 1px solid #F6821F;
  transition: all 300ms ease-in-out;
}

/*Mobile menu*/
#menu-toggle {
  display: none;
}

@media (max-width:900px) {
  #menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: white;
    z-index: 999;
    overflow-y: auto;
    padding-top: 20px;
    padding-inline: 20px;
    transform: translateY(-100%);
    transition: all 300ms ease-in-out;
    display: block;
  }

  .primary-navigation.active {
    transform: translateY(0);
  }

  .primary-navigation .nav-items {
    flex-direction: column;
    margin-top: 40px;
  }

  .primary-navigation .nav-items>li {
    padding-top: 30px;
  }

  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
  }

  .nav-link span {
    color: #000;
  }

  .dropdown-submenu {
    position: relative !important;
    top: 0;
    left: 0;
    z-index: 999;
    padding: unset;
    gap: 0;

  }

  .dropdown-submenu li {
    padding-top: 30px;
    padding-left: 10px;
  }

  .dropdown-submenu li a {
    font-size: 1rem;
  }
}


/* hero section image slider css */
.hero-section {
  height: 100svh;
}

.image-slickslider {
  position: relative;
}

.image-slickslider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 20;
  opacity: 0.5;
}

.hero-section .slick-list {
  height: 100% !important;
}

.hero-section .slick-slide {
  margin-right: 0 !important;
}

.hero-section .slick-track {
  height: 100% !important;
}

.imageSlider-buttons {
  position: absolute;
  bottom: 20%;
  left: 0;
  height: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 30;
}

.imageSlider-buttons button {
  width: 32px;
  height: 100%;
  background-color: white;
  border-radius: 8px;
  transition: all 300ms ease-in-out;
}

.imageSlider-buttons button:hover {
  border-radius: 50%;
}

.imageSlider-buttons button:hover i {
  color: #F6821F;
}

.hero-section .slick-dots {
  position: absolute;
  right: 10%;
  bottom: auto;
  top: 0;
  height: 100svh;
  width: auto !important;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 12px;
  z-index: 20;
}

.hero-section .slick-dots li button::before {
  content: unset !important;
}

.hero-section .slick-dots li {
  width: 12px;
  height: 12px;
}

@media (max-width:640px) {
  .hero-section .slick-dots {
    display: none;
  }

}

.hero-section .slick-dots li button {
  width: 12px;
  height: 12px;
  position: relative;
}

.hero-section .slick-dots li button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.hero-section .slick-dots .slick-active button::after {
  border: 3px solid #FF7E29;
  width: 16px;
  height: 16px;
}

/*Home page marquee slider*/
@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* introduction section style */
.introduction-image>div {
  box-shadow: 0px 4px 12.2px 6px #0000004F;
}

.introduction-image .circle-image {
  transition: all 800ms ease-in-out;
}

.introduction-image .circle-image:hover {
  width: 100%;
  height: 100%;
  z-index: 100;
}

.circle-image.expand {
  transition: all 1s ease-in-out;
}

.circle-image.expand.top-center {
  top: 50%;
  transform: translateY(-50%);
  scale: 0.3;
  opacity: 0;
  visibility: hidden;
}

.circle-image.expand.left-center {
  left: 50%;
  transform: translateX(-50%);
  scale: 0.3;
  opacity: 0;
  visibility: hidden;
}

.circle-image.expand.right-center {
  right: 50%;
  transform: translateX(-50%);
  scale: 0.3;
  opacity: 0;
  visibility: hidden;
}

.circle-image.expand.bottom-center {
  bottom: 50%;
  transform: translateX(-50%);
  scale: 0.3;
  opacity: 0;
  visibility: hidden;
}


/* our foucs section style */
.ourFocus_card {
  transition: all 300ms ease-in-out;
}

.ourFocus_card:hover {
  box-shadow: 0 10px 25px rgba(246, 129, 33, 0.4);
}

.ourFocus_card .ourFocus-card-img img {
  transition: all 300ms ease-in-out;
}

.ourFocus_card:hover .ourFocus-card-img img {
  transform: scale(1.13);
}


/* our coverage section style */
.ourCoverage-container {
  position: relative;
  box-shadow: 0px 4px 12.5px -1px #FFFFFF85;
}

@media (min-width:640px) {
  .ourCoverage-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -60px;
    background-image: url(/assets/images/arroe-vector.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 75px;
  }
}

.ourCoverage-list .custom-radio input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  height: 12px;
  width: 12px;
  top: 0;
  left: 0;
  margin: 0;
}

.ourCoverage-list .custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Style the outer circle */
.ourCoverage-list .custom-radio .radio-outer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #fff;
  border: 2px solid #F6821F;
  border-radius: 50%;
  transition: border 0.3s ease;
}

/* Style the inner dot */
.ourCoverage-list .custom-radio .radio-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #F6821F;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show the inner dot when the checkbox is checked */
.ourCoverage-list .custom-radio input[type="checkbox"]:checked+.radio-outer .radio-inner {
  opacity: 1;
}

/* Change the border color when checked */
.ourCoverage-list .custom-radio input[type="checkbox"]:checked+.radio-outer {
  border-color: #F6821F;
}

.ourCoverage-list .custom-radio input[type="checkbox"]:checked+label {
  color: #F6821F;
}

.ourCoverage-list .custom-radio label {
  margin-left: 8px;
}

/* about us page  */
@media (min-width:768px) {
  .impactCard>div {
    transition: all 300ms ease-in-out;
  }

  .impactCard:hover>div {
    height: 100% !important;
  }
}

/* .ourImpact-slider .slick-list {
    padding: 0 30% 0 0;
} */

.ourImpact-slider .slick-slide {
  margin-right: 0 !important;
  margin-inline: 10px;
}

.impactCard-sliderButtons {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-65%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.impactCard-sliderButtons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6821F;
  border-radius: 50%;
}

@media (max-width:768px) {
  .impactCard-sliderButtons {
    display: none;
  }

  .ourImpact-slider {
    margin-inline: 0;
  }
}

.ourImpact-slider-buttons{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 50vw;
    position: absolute;
    bottom:-22%;
    justify-content:center;
    transform: translateY(-60%);
}

.slick-impactCardPrev,
.slick-impactCardNext{
    width: 40px;
    height: 40px;
    background-color:#F6821F;
    color:white;
    border-radius:100%;
}

@media(max-width:1025px){
    .ourImpact-slider-buttons{
    display: none;
}
}
/* reach page style */
.researchCard-content h3,
.researchCard .researchCard-content button {
  transition: all 300ms ease-in-out;
}

.researchCard:hover .researchCard-content button {
  transform: translateY(0);
  opacity: 1;
  height: auto;
}

.researchCard-content:hover button {
  transition: all 300ms ease-in-out;
  border-bottom: 2px solid transparent;
  padding-bottom: 10px;
}

.researchCard-content button:hover {
  border-color: wheat;
  padding-bottom: 0;
}

.researchCard-content button .button-arrow-icon {
  transition: all 300ms ease-in-out;
}

.researchCard-content button:hover .button-arrow-icon {
  transform: translateX(0);
  opacity: 1;
}


.research-slider {
  margin-inline: 50px;
}

.research-slider .slick-slide {
  margin-right: 0 !important;
  margin-inline: 10px;
}

.research-sliderButtons {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.research-sliderButtons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6821F;
  border-radius: 50%;
}

@media (max-width:768px) {
  .research-sliderButtons {
    display: none;
  }

  .research-slider {
    margin-inline: 0;
  }
}


/*Social and development page-scroll bar styling*/
.custom-scrollbar {
  overflow-y: scroll !important;
  /* Always show scrollbar */
  max-height: 500px;
  /* Ensures content can overflow */
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: white;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #F6821F;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: black;
}


/* get involved page styling */
.getInvoledHeading {
  position: relative;
}

/* .getInvoledHeading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/quotes.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
} */

/*read more button*/

.card {
  position: relative;
}

.read-more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: 'Mulish', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #f97316;
  /* Tailwind's orange-500 */
  padding-bottom: 0.25rem;
  text-decoration: none;
}


.read-more-link .arrow-wrapper {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.25rem;
  overflow: visible;
}


.read-more-link .arrow-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-size: 1rem;
  color: #f97316;
  /* Tailwind's orange-500 */
}

.read-more-link .underline-bar {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #f97316;
  transition: width 0.3s ease-in-out;
}

@media (min-width:500px) {
  .article-card:hover .read-more-link .arrow-icon {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  .article-card:hover .read-more-link .underline-bar {
    width: 100%;
  }
}


/*Video slider-gallery page*/
.video-slider {
  margin-inline: 50px;
}

@media (min-width:768px) {
  .video>div {
    transition: all 300ms ease-in-out;
  }

  .video:hover>div {
    height: 100% !important;
  }
}

.video-slider .slick-slide {
  margin-right: 0 !important;
  margin-inline: 10px;
}

.video-sliderButtons {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-65%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.video-sliderButtons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6821F;
  border-radius: 50%;
}

@media (max-width:768px) {
  .video-sliderButtons {
    display: none;
  }

  .video-slider {
    margin-inline: 0;
  }
}

/*Video slider-gallery page*/
.photo-slider {
  margin-inline: 50px;
}

@media (min-width:768px) {
  .photo>div {
    transition: all 300ms ease-in-out;
  }

  .photo:hover>div {
    height: 100% !important;
  }
}

.photo-slider .slick-slide {
  margin-right: 0 !important;
  margin-inline: 10px;
}

.photo-sliderButtons {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-65%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.photo-sliderButtons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6821F;
  border-radius: 50%;
}

@media (max-width:768px) {
  .photo-sliderButtons {
    display: none;
  }

  .photo-slider {
    margin-inline: 0;
  }
}

.info-slider .slick-slide {
  margin-right: 20px;
}

/* Optional: remove extra margin on last clone slide */
.info-slider .slick-track {
  display: flex !important;
}

.blog-heroimage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 20;
  opacity: 0.5;

}

/* .report-card ::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 20;
  opacity: 0.5;

} */

/*About us page styling*/
.clip-ellipse {
  clip-path: ellipse(110% 100% at 50% 0%);
}

@media (max-width: 1180px) {
  .clip-ellipse {
    clip-path: ellipse(130% 100% at 50% 0%);
  }
}

@media (max-width: 768px) {
  .clip-ellipse {
    clip-path: ellipse(150% 100% at 50% 0%);
  }
}

@media (max-width: 480px) {
  .clip-ellipse {
    clip-path: ellipse(250% 100% at 50% 0%);
  }
}

/*About us bulb animation*/
.whole-bulb:hover .bulb-vector {
  opacity: 0;
}

.whole-bulb:hover .bulb-vector-color {
  opacity: 1;
}

.whole-bulb:hover .bulb-rays-vector {
  opacity: 1;
}

/* home page article section slider style */
.article-slider .slick-list {
  padding: 0 50px 0 0;
}

@media (max-width:900px) {
  .article-slider .slick-list {
    padding: 0 200px 0 0;
  }
}

@media (max-width:840px) {
  .article-slider .slick-list {
    padding: 0 80px 0 0;
  }
}

@media (max-width:640px) {
  .article-slider .slick-list {
    padding: 0 200px 0 0;
  }
}

@media (max-width:480px) {
  .article-slider .slick-list {
    padding: 0 40px 0 0;
  }
}

.slick-prev,
.slick-next {
  display: block !important;
  /* Ensure they're visible */
  background-color: transparent;
  /* Optional, for custom styling */
  font-size: 24px;
  /* Adjust size */
}

/*Image background*/
.custom-overlay {
  background: linear-gradient(0deg, #383838, #383838),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

/*AOS animation*/

[data-aos="custom-zoom"] {
  opacity: 0;
  transform: scale(0.8);

}

[data-aos="custom-zoom"].aos-animate {
  opacity: 1;
  transform: scale(1) translateY(0);

}

/*animated about us image*/
.absolute-img {
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  transition: all 2s ease-in-out;
  transform-origin: bottom center;
  width: 10px;
  height: 10px;
}

.aboutus-img-1 {
  top: 120%;
}

.collage-animate.in-view .aboutus-img-1 {
  top: 0;
  width: 260px;
  height: 208px;
}

.aboutus-img-2 {
  top: 120%;

}

.collage-animate.in-view .aboutus-img-2 {
  top: 20%;
  width: 278px;
  height: 223px;
  left: 15%;
}

.aboutus-img-3 {
  top: 120%;

}

.collage-animate.in-view .aboutus-img-3 {
  top: 20%;
  width: 278px;
  height: 223px;
  left: 85%;
}

.aboutus-img-4 {
  top: 120%;

}

.collage-animate.in-view .aboutus-img-4 {
  top: 55%;
  width: 278px;
  height: 223px;
}

/*Animated puzzle*/
.puzzlebig {
  z-index: 1;
}

.puzzlepart {
  z-index: 2;
  position: absolute;
  left: 200px;
  top: -90px;
  transform: rotate(20deg);
  transition: all 2s ease-in-out;
}

.puzzle-animate.in-view .puzzlepart {
  left: 91px;
  top: -10px;
  transform: rotate(-16deg);
}

@media(max-width:1025px){
    .puzzle-animate{
        display:none;
    }
}


/* our impact section */
.statistics-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 10px 20px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(255, 255, 255, 0.15),
    0 0 15px rgba(255, 255, 255, 0.1);
}


/* Collaborate Section css */
.interactive-card p {
  transition: all 300ms ease-in-out;
}

.interactive-card.scale-110 p {
  max-height: 10000px;
  opacity: 1;
}
.partner-card {
    padding:10px;
}
@media(min-width:500px)
{
.research-list{
    margin-bottom:100px;
}
}
@media(min-width:1024px)
{
.research-list{
    margin-bottom:60px;
}
}
/* Clamp to 2 lines */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  cursor: pointer; /* change from 'help' to 'pointer' */
}

/* Tooltip styling */
.line-clamp-2[data-full-title]:hover::after {
  content: attr(data-full-title);
  position: absolute;
  top: -100%; /* appear above */
  left: 0;
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  z-index: 10;
  max-width: 280px;
  width: max-content;
  pointer-events: none; /* avoid flicker */
}

/* Optional: small arrow */
.line-clamp-2[data-full-title]:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 10px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
}

.exective-description {
    background-color:#F9C893;
    padding:24px;
    
    
}
.exective-grid {
    background-color:#F9C893;
}
.exective-name{
    background-color:#FCE3C3;
    padding:12px;
}
.center-grid {
  display: grid;
  gap: 20px;
  justify-content: center;      
  grid-auto-columns: max-content;  
}

@media (min-width: 640px) {
  .center-grid {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (min-width: 768px) {
  .center-grid {
    grid-template-columns: repeat(4, max-content);
  }
}

 
 
 
 /*accordion style*/
details {
    cursor: pointer;
    margin-inline: auto;
    &::details-content {
        height: 0;
      interpolate-size: allow-keywords;
        opacity: 0;
        overflow: hidden;
        transition: height 0.5s ease-in-out,
                                content-visibility 0.5s ease-in-out,
                                opacity 0.5s ease-in-out,
                                scale 0.5s ease-in-out;
        transition-behavior: allow-discrete;
    }

    &[open] > summary {
        color: black;
    }

    &[open] > summary:after {
        transform: rotate(45deg);
    }

    &[open]::details-content {
        height: auto;
        opacity: 1;
    }
}

summary {
    background-color: #F9C893;
    border-top: 1px solid black;
    color: black;
    list-style: none;
    padding: 1rem;
    position: relative;
    transition: color 0.5s ease-in-out;

    &:after {
        border-radius: 50%;
        content: '+';
        color: black;
        font-size: 1.75rem;
        height: 1.5rem;
        line-height: 1.5rem;
        position: absolute;
        right: 1rem;
        text-align: center;
        transition: background-color 0.5s ease-in-out,
                                transform 0.5s ease-in-out;
        width: 1.5rem;
    }
}

.ctn-info {
    background-color: #FCE3C3;
    padding: 1rem;
}

details {
  counter-increment: num;
}

details summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

details summary::before {
  content: counter(num);
  background: #FF7A33; 
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;

  width: 21px;
  height: 21px;
  border-radius: 165px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
 
 
 
 
 /*Area project page styling*/
 
:root {
  --page-bg: #ffffff;
  --card-bg: #f6f6f6;
  --text-main: #0d0d0d;
  --border-color: #e5e5e5;
  --radius: 16px;
  --padding: 24px;
  --transition: 0.22s ease-out;
}

/* Page base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "SF Pro Text", sans-serif;
  background-color: var(--page-bg);
  color: var(--text-main);
}

 
.faq-container {
  margin-bottom: 80px;
}

/* Title */
.faq-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

/* List layout */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition), background-color var(--transition);
}

/* Optional slight border when open for clarity */
.faq-item.is-open {
  border-color: var(--border-color);
}

/* Header (clickable area) */
.faq-header {
  width: 100%;
  padding: var(--padding);
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
  font-size: 20px;
  
}

/* Icon base */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Horizontal line */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Horizontal line (before) */
.faq-icon::before {
  transform: translate(-50%, -50%);
}

/* Vertical line (after) */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* WHEN OPEN → X ICON */
.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Body */
.faq-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding-bottom var(--transition),
    padding-top var(--transition);
  will-change: max-height;
  color: var(--text-main);
}

.faq-item.is-open .faq-body {
  padding-top: 0;
  padding-bottom: var(--padding);
}

/* Text inside body */
.faq-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
  max-width: 720px;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-section {
    padding: 40px 12px 56px;
  }

  .faq-header {
    padding: 20px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-body {
    padding-bottom: 20px;
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  position: relative;
  padding-left: 20px; /* space for line */
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;   /* length of line */
  height: 100%;   /* thickness */
  background-color: #FF7A33; /* your orange primary color */
  transform: translateY(-50%);
}
.org-link, .org-address, .org-address, .org-name, .org-email{
    display: block;
    width: 100%;
    margin-top: 4px; 
}
.featured-video p{
    font-size:16px;
    font-family: 'Mulish', sans-serif;
    font-weight: semibold;
}
.logo-bg{
    background-color:white;
    padding:6px;
}
.coverage-btn{
    background-color: #FF7A33;
    padding:10px 14px 10px 14px;
    border-radius:8px;
    color:white;
    width:fit-content;
    margin-top:12px;
}
 