 @import 'variables.css';
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');


html,
body,
a,
p,
ul,
li {
   font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    line-height: 30px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
  font-optical-sizing: auto;
}

h1 {
    position: relative;
    font-size: 54px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 20px;
    color: var(--primary);
}

h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
}

h4 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
}
h4 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
}


/* home slider */
.hero-slider { position: relative; width: 100%; height: 85vh; overflow: hidden; }
.slides { position: relative; width: 100%; height: 100%; }
.hero-slide { 
    position: absolute; top:0; left:0; width:100%; height:100%; 
    background-size: cover; background-position: center; 
    opacity:0; visibility:hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s; 
    overflow-x: hidden !important;
    /* animation: kenBurns 15s ease-in-out infinite; */
}
.hero-slide.has-video { animation: none !important; }
.hero-slide.active { opacity:1; visibility:visible; }
@keyframes kenBurns { 0% {transform:scale(1) translate(0,0);} 50% {transform:scale(1.05) translate(-2%, -2%);} 100% {transform:scale(1) translate(0,0);} }

/* Slide Content */
.slide-content-container { 
    position:absolute; bottom:30%; left:5%; width:90%; max-width:600px; padding:2.5rem; 
    border:3px solid #0B8F35; z-index:10; 
}
.slide-content-container::before { 
    content:''; position:absolute; top:0; left:0; right:0; bottom:0; 
    background-color: #0b8f3564; backdrop-filter: blur(7.91px); z-index:-1; 
}
.slide-content h1 { margin-bottom:15px; font-size:3.5rem; }
.slide-content p { font-size:1.5rem; line-height:1.5; }

/* Navigation Dots */
.slider-nav { position:absolute; bottom:5%; left:50%; transform:translateX(-50%); display:flex; gap:1.5rem; z-index:20; }
.nav-dot { width:45px; height:8px; background-color:rgba(255,255,255,0.5); cursor:pointer; position:relative; transition:background-color 0.3s ease; }
.nav-dot.active { background-color: var(--primary-green); }
.nav-dot .thumb-preview {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    z-index: 30;
}
.nav-dot:hover .thumb-preview { opacity:1; visibility:visible; border-color:var(--primary-green); }

/* Always-Visible Next Slide Indicator */
.next-slide-indicator.always-visible {
    position:absolute; top:50%; right:2%; transform:translateY(-50%); display:flex; align-items:center; gap:0.5rem; z-index:20;
    cursor:pointer; animation: pulse 2s infinite;
}
.next-slide-indicator .thumb-preview {
    width: 175px;
    height: 103px;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary-green);
}

.next-arrow { font-size:1.5rem; color:#fff; transition: transform 0.3s ease; }
.next-slide-indicator:hover .next-arrow { transform: translateX(5px); }

/* Pulse animation */
@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

.slide-video {
    position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:0;
}

.slide-content-container { z-index:10; }


/*-----------------------------------------BANNER-SECTION---------------------------------------------------*/

 .site-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 250px 0; 
  color: #fff;
}

.site-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.site-banner .page-heading {
  position: relative;
  z-index: 2;
}
.site-banner .page-heading h1{
  display: inline-block; 
  background: rgba(11, 143, 53, 72%);
  color: #fff;
  padding: 2rem;
  border: 2px solid rgba(11, 143, 53, 1);
  text-transform: capitalize;
}


/*-----------------------------------------Statistics---------------------------------------------------*/
.stat-content {
	max-width: 200px;
}

.stat-content p {
    font-weight: 500;
    line-height: 1.6;
    word-spacing: normal;
    letter-spacing: normal;
}

.stat-item h2 span {
	font-size: 2.5rem;
	font-weight: 700;
	padding-left: 8px;
}

.stat-item h2{
	font-weight: 300;
	font-size: 30px;
	padding-right: 5px;
}



/*--------------------------------------- ABOUT SECTION-----------------------------------------------------*/
section.about-section {
	background-color: var(--primary-green);
}
section.about-section .about-description {
	margin-bottom: 6rem;
  text-align: justify;
}


/*--------------------------------------- SOLUTIONS SECTION-----------------------------------------------------*/

section.solutions-section .solution-col {
  position: relative;
  margin-bottom: 3.5rem;
}

section.solutions-section .solution-figure {
  position: relative;
  overflow: visible; 
}

section.solutions-section  .solution-card {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translateY(50%);
	width: 72%;
	background: rgba(11, 143, 53, 0.9);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
     height: 58%; 
}

section.solutions-section .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; 
}

section.solutions-section .solution-col {
  display: flex;
}

section.solutions-section .solution-figure {
  display: flex;
  flex-direction: column;
  flex: 1;
}

section.solutions-section .read-more-link{
    margin-top: 6rem;
}

/* Dots styling */
section.solutions-section .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(59, 59, 59, 1);
  opacity: 1;
  border: 0;
}

section.solutions-section .carousel-indicators .active {
  background-color: rgba(217, 217, 217, 1);
}

section.solutions-section .carousel-inner {
	overflow: unset !important;
}

#solutionsCarousel .carousel-indicators {
    position: static !important; 
    margin-top: 16rem; /* space below the carousel */
}






/* Card wrapper */
.solution-card-wrapper {
  position: relative;
}

/* Floating card */
.solution-card {
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 72%;
  background: rgba(11, 143, 53, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 1rem;
  z-index: 2;
  height: 58%;
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background-color: #3B3B3B;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #D9D9D9;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .solution-card-wrapper {
    width: 100%;
  }
  .solution-card {
    width: 90%;
    right: 5%;
    bottom: -15%;
  }
}


.swiper {
    overflow: initial !important;
}

section.solutions-section .swiper-wrapper {
    padding-bottom: 250px !important;
}

span.swiper-pagination-bullet{
/* background-color: #D9D9D9 !important; */
width: 12px !important;
height: 12px !important;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important; 
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #3B3B3B !important;
}

/*--------------------------------------- LATEST NEWS AND STORIES-----------------------------------------------------*/
section.latest-news-section{
  background-color: var(--primary-green);
  padding: 100px 0;
}
section.latest-news-section .container{
  padding: 80px 0;
}
.news-card .news-content {
    border-radius: 0 0 20px 20px;
}
p.news-date {
    color: #B9B9B9;
}



/* News Card Hover */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Thumbnail Zoom on Hover */
.news-thumb {
  overflow: hidden; /* ensures the image doesn’t overflow its container */
}

.news-thumb img {
  transition: transform 0.5s ease;
  transform-origin: center center; /* zoom from center */
}

/* True zoom-in on hover */
.news-thumb:hover img {
  transform: scale(1.15); /* larger than scale(1.05) for more zoom effect */
}


/* Modal Slide Animation */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.5s ease;
}
.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Optional: Smooth text transition inside modal */
.news-modal-content {
  transition: all 0.4s ease;
}


/*--------------------------------------- WHAT WE HAVE ACHIEVED----------------------------------------------------*/
.achievement-section {
  min-height: 80vh; 
  position: relative;
  overflow: hidden;
  display: flex; 
  justify-content: center; 
  align-items: center;   
}

.achievement-bg {
  object-fit: cover;
  z-index: 0;
}

.achievement-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.achievement-content {
  z-index: 2;
  max-width: 511px;
}
.achievement-content p{
  font-size: 20px;
  font-weight: 300;
  text-align: start;
}
.main-achievement-content {
    display: flex;
    flex-direction: column;
    align-items: start;
}



/*--------------------------------------- TESTIMONIALS-----------------------------------------------------*/


.testimonial-section {
	height: 60vh;
	min-height: 300px;
	margin-bottom: 320px;
}
.testimonial-section .carousel-inner {
	position: relative;
	width: 100%;
	overflow: unset !important;
}
.testimonial-card {
    background: rgba(244, 244, 244, 1);
}
.testimonial-section .carousel-indicators {
	display: none;
}
.testimonial-section p {
    font-size: 14px;
}
.testimonial-section .content{
  font-size: unset !important;
}
.testimonial-position p,
.testimonial-position h5{
color: var(--primary-green);
}
.testimonial-section .content a{
	color: var(--primary-green) !important;
}

@media (max-width: 768px) {
    .testimonial-bg {
        background-attachment: scroll;
    }
}




/*--------------------------------------- LEADERSHIP-----------------------------------------------------*/
.board-management-section { 
  background: var(--gray-light); 
  padding: 130px 0; 
}

/* Tabs */
.board-tabs { 
  list-style: none; 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
  padding: 0; 
  margin: 0 0 2rem; 
}
.board-tab { 
  cursor: pointer; 
  padding: 0.6rem 1.2rem; 
  border-radius: 5px; 
  font-weight: 600; 
  background: rgba(11,143,53,0.08); 
  color: var(--dark-green); 
  position: relative; 
  transition: all 0.3s ease; 
  text-transform: uppercase;
}
.board-tab:hover { background: rgba(11,143,53,0.15); }
.board-tab.active { background: rgba(11,143,53,0.15); color: var(--primary-green); }

/* Content */
.board-content { display: none; animation: fadeIn 0.4s ease; }
.board-content.active { display: block; }
@keyframes fadeIn { from {opacity:0; transform:translateY(15px);} to {opacity:1; transform:translateY(0);} }

/* Cards */
.board-card { 
  background: rgba(255,255,255,0.7); 
  backdrop-filter: blur(10px); 
  border-radius: 1.5rem; 
  padding: 2rem 1.5rem; 
  text-align:center; 
  transition: all 0.3s ease; 
  height: 100%; 
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}
.board-card:hover { transform:translateY(-6px); box-shadow:0 12px 28px rgba(0,0,0,0.08); }
.board-img img { 
  width:100px; height:100px; 
  object-fit:cover; border-radius:50%; 
  border:3px solid var(--primary-green); 
  margin-bottom:1rem; 
  box-shadow:0 0 15px rgba(11,143,53,0.15);
}
.board-card-content h4 { font-size:1.1rem; font-weight:700; color:var(--dark-green); margin-bottom:0.25rem; }
.board-card-content .position { font-size:0.9rem; font-weight:600; color:var(--primary-green); margin-bottom:0.75rem; }
.board-card-content .desc { font-size:0.9rem; color:#444; line-height:1.5; max-height:60px; overflow:hidden; transition:max-height 0.4s ease; text-align:justify; }
.read-more { cursor:pointer; color:var(--primary-green); font-weight:600; font-size:0.85rem; transition: color 0.3s; }
.read-more:hover { color: var(--dark-green); }

/* Modal Styles */
.board-modal-content { 
  background: rgba(255,255,255,0.95); 
  backdrop-filter: blur(10px); 
  border-radius:1.5rem; 
  padding:2rem; 
  position:relative; 
}
.board-modal-inner img { 
  width:150px; height:150px; 
  object-fit:cover; border-radius:50%; 
  margin-bottom:1rem; 
  border:3px solid var(--primary-green); 
  box-shadow:0 0 15px rgba(11,143,53,0.15);
}
.board-modal-inner h4 { font-size:1.3rem; font-weight:700; color:var(--dark-green); margin-bottom:0.5rem; }
.board-modal-inner .board-modal-position { font-weight:600; color:var(--primary-green); margin-bottom:1rem; }

/* Description with fixed height, scroll and gradient scrollbar */
.board-modal-inner .board-modal-description {
  color:#444;
  line-height:1.5;
  text-align:justify;
  max-height:300px; /* fixed height */
  overflow-y:auto;
  padding-right:0.5rem;
}
.board-modal-inner .board-modal-description::-webkit-scrollbar { width:8px; }
.board-modal-inner .board-modal-description::-webkit-scrollbar-track { background: rgba(11,143,53,0.05); border-radius:4px; }
.board-modal-inner .board-modal-description::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, rgba(11,143,53,0.4), rgba(11,143,53,0.8)); 
  border-radius:4px; 
}
.board-modal-inner .board-modal-description::-webkit-scrollbar-thumb:hover { 
  background: linear-gradient(180deg, rgba(11,143,53,0.6), rgba(11,143,53,1)); 
}
/* Firefox */
.board-modal-inner .board-modal-description { scrollbar-width: thin; scrollbar-color: rgba(11,143,53,0.6) rgba(11,143,53,0.05); }

/* Slide from right animation using Bootstrap 5 */
.modal.modal-slide-right .modal-dialog { transform: translateX(100%); transition: transform 0.5s ease-in-out; }
.modal.modal-slide-right.show .modal-dialog { transform: translateX(0); }

@media(max-width:768px){
  .board-modal-inner img { width:120px; height:120px; }
}


/*--------------------------------------- WHAT WE DO-----------------------------------------------------*/

.services-section {
  background: var(--gray-light);
  padding:110px 0
}

/* Titles (Left Column) */
.service-titles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-title {
  cursor: pointer;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(11, 143, 53, 0.08); /* subtle green tint */
  font-weight: 600;
  color: var(--dark-green);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.service-title:hover {
  background: rgba(11, 143, 53, 0.15);
}
.service-title.active {
  background: var(--card-color);
  color: var(--white-color);
  border: 1px solid var(--border-green);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Content (Right Column) */
.service-contents .service-content {
  display: none;
  animation: fadeIn 0.4s ease;
  background: var(--white-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

  /* Fixed height & scroll */
  max-height: 600px; /* adjust as needed */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) #0b8f351c /* Firefox: deep blue & green */
}
.service-contents .service-content.active {
  display: block;
}
.service-text {
  font-size: 1rem;
  color: var(--black-color);
  line-height: 1.7;
}
.service-img img {
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border: 3px solid var(--primary-green);
}

/* Custom Scrollbar (Webkit) */
.service-contents .service-content::-webkit-scrollbar {
  width: 8px;
}
.service-contents .service-content::-webkit-scrollbar-track {
  background: transparent;
}
.service-contents .service-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0a4a8e, #94d227);
  border-radius: 6px;
}
.service-contents .service-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #094080, #7db51f);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


/*---------------------------------------PRODUCTION-----------------------------------------------------*/
/* Production Titles as row pills */
.production-title-item {
  background: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.production-title-item.active,
.production-title-item:hover {
  background: var(--primary-green);
  color: var(--white-color);
}

/* Production content hide/show */
.production-content { display: none; }
.production-content.active { display: block; }

/* Productions Cards */
.production-card {
  background: var(--white-color);
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.production-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.production-title {
  color: var(--dark-green);
  font-weight: 600;
}
.production-location {
  font-size: 0.85rem;
}
.production-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--black-color);
}
.production-img img {
  border-radius: 0.75rem;
  object-fit: cover;
  width: 100%;
  height: 200px;
}






/*--------------------------------------- EVENTS---------------------------------------------------*/
.event-card {
  background: var(--white-color);
  border-left: 4px solid var(--primary-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.event-title {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 1.25rem;
}
.event-meta p {
  font-size: 0.9rem;
  color: var(--time-color);
  margin-bottom: 0.2rem;
}
.btn-view-details {
  background: var(--primary-green);
  color: var(--white-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.btn-view-details:hover {
  background: var(--dark-green);
  color: var(--hover-light);
}
.modal-header {
  background: var(--primary-green);
}
.modal-body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}



/*--------------------------------------- NOTICES-----------------------------------------------------*/


/* Notice Cards */
.notice-card {
  background: var(--white-color);
  border-left: 4px solid var(--primary-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.notice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.notice-title {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 1.25rem;
}
.notice-date {
  color: var(--time-color);
  font-size: 0.9rem;
}
.notice-excerpt {
  color: var(--black-color);
  font-size: 0.95rem;
  line-height: 1.5;
}
.btn-download, .btn-read-more {
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-download {
  background: var(--primary-green);
  color: var(--white-color);
  padding: 0.45rem 0.8rem;
  display: inline-flex;
  align-items: center;
}
.btn-download i {
  margin-right: 0.4rem;
}
.btn-download:hover {
  background: var(--dark-green);
  color: var(--hover-light);
}
.btn-read-more {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0.4rem 0.8rem;
}
.btn-read-more:hover {
  background: var(--primary-green);
  color: var(--hover-light);
}

/* Modal Styling */
.modal-header {
  background: var(--primary-green);
  color: var(--white-color);
}
.modal-body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/*--------------------------------------- PHOTO GALLERY-----------------------------------------------------*/

    /* --- Photo Gallery Section --- */
    .photo-gallery-container {
        padding: 5rem 0;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark-green);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: var(--time-color);
        margin-bottom: 3rem;
    }
    
    .photo-card {
        position: relative;
        background-color: var(--white-color);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        transform-origin: center center;
    }

    .photo-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, var(--primary-green), var(--border-green), var(--primary-green));
        z-index: -1;
        opacity: 0;
        border-radius: 1.2rem;
        transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .photo-card:hover {
        transform: translateY(-8px) scale(1.02); /* Shaky effect removed */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        z-index: 10;
    }

    .photo-card:hover::before {
        opacity: 0.5;
    }

    .photo-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .photo-card:hover img {
        transform: scale(1.05);
    }
    
    .photo-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--card-color);
        color: var(--white-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(3px);
    }

    .photo-card:hover .photo-card-overlay {
        opacity: 1;
    }

    .photo-card-overlay-content {
        text-align: center;
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }

    .photo-card:hover .photo-card-overlay-content {
        transform: translateY(0);
    }

    .photo-card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        animation: pulse 1.5s infinite;
    }
    
    .photo-card-title {
        position: absolute; /* Changed from default to absolute */
        top: 1rem; /* Positioning at the top */
        left: 1rem; /* Positioning at the left */
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--white-color); /* Changed color for better contrast */
        background-color: rgba(11, 143, 53, 0.6); /* Translucent background */
        padding: 0.75rem 1.25rem;
        border-radius: 0.5rem;
        z-index: 5; /* Ensure it's above the image */
        transition: all 0.3s ease;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .photo-card:hover .photo-card-title {
        background-color: rgba(11, 143, 53, 0.8);
    }
    
    .photo-card-count {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .photo-card-count span {
        font-size: 1rem;
        font-weight: 400;
        display: block;
    }

    /* --- Modal Styling --- */
    .photo-modal {
        position: fixed;
        z-index: 1050;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease, visibility 0s 0.4s;
    }
    
    .photo-modal.active {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.4s ease;
    }
    
    .photo-modal-content {
        position: relative;
        max-width: 95%;
        max-height: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .photo-modal.active .photo-modal-content {
        opacity: 1;
        transform: scale(1);
    }

    .photo-modal-content img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .photo-modal-close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #fff;
        font-size: 2.5rem;
        font-weight: 300;
        transition: 0.3s;
        cursor: pointer;
    }

    .photo-modal-close:hover {
        color: var(--red-color);
        transform: rotate(90deg);
    }

    /* New style for the arrows */
    .photo-modal-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        user-select: none;
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .photo-modal-nav.prev { left: 2rem; }
    .photo-modal-nav.next { right: 2rem; }

    .photo-modal-nav:hover { 
        background-color: rgba(11, 143, 53, 0.6);
        transform: translateY(-50%) scale(1.1);
    }

    .photo-modal-title {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white-color);
        font-size: 1.25rem;
        font-weight: 400;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        text-align: center;
        padding: 0.5rem 1.5rem;
        background-color: rgba(11, 143, 53, 0.4);
        border-radius: 2rem;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .photo-modal-title:hover {
        background-color: rgba(11, 143, 53, 0.6);
    }

    .photo-modal-counter {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        color: var(--white-color);
        font-size: 1rem;
        font-weight: 400;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        padding: 0.5rem 1rem;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 2rem;
        transition: all 0.3s ease;
    }
    
    .photo-modal-counter:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

    @media (max-width: 768px) {
        .photo-card img {
            height: 200px;
        }
        .photo-modal-nav { font-size: 2rem; }
        .photo-modal-title, .photo-modal-counter {
            bottom: 1rem;
            font-size: 1.2rem;
        }
    }


/*--------------------------------------- PARTNERS-----------------------------------------------------*/
section.partners-section
{
  margin-top:480px;
}
section.partners-section h4{
  color:#707070 !important;
}

section.partners-section .btn.btn-primary {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    margin: 120px 0 150px 0;
}

/* Slider wrapper */
.partner-slider-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

/* Slider track */
.partner-slider {
  overflow: hidden !important;
}
.partner-track {
  display: flex;
  transition: transform 0.6s ease;
}
.partner-logo img {
  max-height: 60px;
  object-fit: contain;
  display: block;
}


/* Arrows */
.partner-arrow {
  z-index: 5;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add space between slider and arrows */
.partner-arrow.left {
  left: -70px;  /* was -40px */
}

.partner-arrow.right {
  right: -70px; /* was -40px */
}


/* PARTNERS PAGE */


.partners-grid h4 {
  color: var(--dark-green);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.partner-logo {
  position: relative;
  background-color: var(--white-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-green), var(--border-green), var(--primary-green));
  z-index: -1;
  opacity: 0;
  border-radius: 1.2rem;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.partner-logo:hover::before {
  opacity: 0.7;
}

.partner-logo img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.partner-logo:hover img {
  filter: grayscale(100%);
  transform: scale(1.05);
}




/*--------------------------------------- VIDEO GALLERY-----------------------------------------------------*/
/* Section styling */
.videos-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

/* Video Card Styling */
.video-card {
    position: relative;
    background-color: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    transform-origin: center center;
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15); /* Subtle overlay on hover */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail::after {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.video-card:hover .play-button {
    opacity: 1;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}

.video-card-body {
    padding: 1.5rem;
    text-align: center;
}

.video-card-body h5 {
    color: var(--dark-green);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Video Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    max-width: 900px; /* New fixed max width for better sizing */
    width: 90%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-modal-frame {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}

.video-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.video-modal-title {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
}

.video-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white-color);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1051;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--primary-green);
}

.video-modal-nav {
    position: fixed; /* Fixed to the viewport */
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 1051;
}

.video-modal-nav-btn {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-modal-nav-btn:hover {
    background: rgba(11, 143, 53, 0.6);
    transform: scale(1.1);
}

.video-modal-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}



/*--------------------------------------- PUBLICATIONS-----------------------------------------------------*/

.publications-section {
    padding: 140px 0;
    background-color: var(--gray-light);
}

.report-group h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-green);
    border-left: 5px solid var(--primary-green);
    padding-left: 1.5rem;
    margin-bottom: 2rem !important;
}

.publication-card {
    background: var(--white-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.publication-card h5 {
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1.5rem;
}

.publication-files-wrapper {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 1rem;
}
.publication-files-wrapper.annual-report-wrapper{
  max-height: 400px;
}
.publication-files-wrapper::-webkit-scrollbar {
    width: 6px;
}

.publication-files-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.publication-files-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-green);
    border-radius: 3px;
    border: none;
}


.publication-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-green);
    background-color: var(--white-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.publication-link:hover {
    background-color: var(--gray-light);
    color: var(--dark-green);
}

.publication-link .link-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.publication-link:hover .link-icon {
    color: var(--dark-green);
}





/*--------------------------------------- Footer-----------------------------------------------------*/
.contact-page-wrapper {
    padding: 140px 0;
}

/* Page Titles */
.contact-page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0B8F35;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

/* Animated Underline Effect */
.contact-page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0B8F35;
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.contact-page-title:hover::after {
    width: 100px;
}

.contact-page-para {
    font-size: 1rem;
    color: #435061;
    margin-bottom: 30px;
}

/* --- Contact Section Grid --- */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Contact Form */
.contact-form-wrapper .wpcf7-form-control.wpcf7-text,
.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 2px solid #e3e8ef;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fcfdfe;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-text:focus,
.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea:focus {
    outline: none;
    border-color: #0B8F35;
    box-shadow: 0 4px 15px rgba(11, 143, 53, 0.2);
}

.contact-form-wrapper .wpcf7-submit {
    width: 100%;
    padding: 15px;
    background: #0B8F35;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-submit:hover {
    background: #116A2E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 143, 53, 0.3);
}

/* Sidebar Contact Info */
.contact-sidebar {
    background: #f8f9fb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-sidebar:hover {
    transform: translateY(-5px);
}

.contact-sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0B8F35;
    font-weight: 600;
}

.address-box {
    margin-bottom: 30px;
}

.contact-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #0B8F35;
    padding-top: 2px;
}

.contact-item a,
.contact-item address {
    color: #435061;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
    font-style: normal; /* Removes address italic */
}

.contact-item a:hover {
    color: #0B8F35;
    text-decoration: underline;
}

/* --- Full-width Map Section --- */
.full-width-map {
    margin-top: 60px;
}

.map-title {
    margin-bottom: 30px;
}

.frame-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.frame-map iframe {
    display: block;
}

/* Responsive Layout */
@media(max-width: 991px){
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/*--------------------------------------- Footer-----------------------------------------------------*/
.footer {
	background: var( --primary-green);
	padding-top: 100px;
}

.footer_sidebar h3 {
	color:var( --white-color);
	margin-bottom: 40px;
}
.footer_sidebar p {
  color: var( --white-color);
  font-size: 16px;
}
.footer_sidebar a {
  color: var( --white-color);
  font-size: 16px;
  transition: 300ms ease-in-out;
}
.footer_sidebar a:hover, .footer_sidebar a:focus {
  color: var(--black-color);

}
.footer_sidebar .recent-posts li + li {
  border-top-color: #e8ecf2;
}
.footer_sidebar .tweet p a {
  color: #0B8F35
;
}

.telephone-details h5, .email-contact h5 {
	color: var(--white-color);
	font-weight: 600;
	margin-bottom: 5px;
}

.telephone-details ul, .widget.widget-quick-links ul.menu{
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.widget-contact button.btn {
	background: transparent;
	border: none;
}

.widget-contact button.btn a {
	background: transparent;
	border: 1px solid var(--white-color);
	padding: 20px 40px;
	border-radius: 50px;
  transition: 300ms ease-in-out;
}

.widget-contact button.btn a:hover {
	background: var(--black-color);
  color: var(--white-color);
	border: 1px solid var(--black-color);

}
.social-icons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.social-icons a i{
  color: var(--white-color);
  font-size: 1rem;
}
.social-icons a i:hover {
  color: var(--black-color);
  transform: scale(1.1);
}

.copyright_area {
  color: var(--white-color);
}
.copyright_area .copy_inner:before {
  background: #e8ecf2;
}
.copyright_area .copyright_text a {
  color: var(--white-color);
  transition: 300ms ease-in-out;
}
.copyright_area .copyright_text a:hover, .copyright_area .copyright_text a:focus {
  color: var(--black-color);
}
.copyright_area .nav li a {
  color: var(--white-color);
}



