/* ---------------------------
   Zariya Welfare - styles.css
   Editable comments are added throughout.
   --------------------------- */

/* Root colors and simple variables for easy edits */
:root{
  --brand-green: #006666; /* light green header background */
  --accent: #FFFFFF;
  --muted: #616161;
  --container: 1200px;
}

/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: Poppins, sans-serif;
  color: #222;
  line-height: 1.3;
  background: #fafafa
}

/* Header */
.site-header {
  background: var(--brand-green);
  border-bottom: 1px solid #e6efe6;
  position: relative;
  z-index: 50
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* Prevent wrapping */
  padding: 10px 10px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid white;
  background: white;
  padding: 1px
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent)
}

/* Desktop nav */
.nav {
  display: flex;
  gap: 18px
}

.nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 6px
}

.nav a:hover {
  background: rgba(43, 138, 74, 0.08)
}


/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.25s
}

/* Side panel for mobile */
.side-panel {
  position: fixed;
  right: 0;
  left: auto;
  top: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  transition: width 0.3s;
  z-index: 60
}

.side-panel.open {
  width: 100%
}

.side-nav {
  background: #006666;
  width: 180px;
  height: 100%;
  padding: 24px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15)
}

/* Close button (X) */
.close-btn {
  background: none;
  border-bottom: 1px solid #000000;
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  top: 10px;
  left: 140px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: rotate(90deg);
 }


/* add to show in right side ;margin-left: auto;margin-right: 0; */
.side-nav a {
  display: block;
  padding: 10px 6px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 6px
}

.side-nav a:hover {
  background: #000000
}

/* Ensure the heading acts as a full-width block element */

h4.color-fade {
    color: #f05422;
    background: linear-gradient(to right, #801a50 0%, #f05422 100%);
    -webkit-text-fill-color: transparent;
    line-height: 1em;
    text-transform: uppercase;
}

h2 {
    display: block; 
    width: 100%;
}

h3 {
    display: block;
    width: 100%;
    color: #10c784;      /* set your font color */
    font-size: 22px;     /* adjust size as needed */
    font-weight: 600;    /* optional: makes it look sharper */
}

/* Side panel dropdown */
.side-dropdown {
  display: flex;
  flex-direction: column;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1em;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  outline: none;
}

.dropdown-toggle:hover {
  color: #fd0303;
}

.submenu {
  display: none;
  flex-direction: column;
  margin-left: 15px;
}

.submenu a {
  padding: 8px 0;
  font-size: 0.95em;
  color: #ffffff;
}

.submenu.show {
  display: flex;
}

/* Back to Top Button */
#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #006666;
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #009999;
  transform: scale(1.1);
}

#backToTopBtn img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit:cover;
  filter: brightness(0) invert(1); /* ensures white icon if PNG is dark */
}
/* Container */
/*.container{max-width:var(--container);margin:0 auto;padding:28px 20px}*/

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 8px;
  display: flex;            /* makes boxes align side by side */
  justify-content: space-between; /* optional spacing */
  flex-wrap: wrap;          /* ensures responsiveness */
  gap: 8px;                /* adds spacing between boxes */
}

/* Container styling for centering/layout (Optional) */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

/* Base styling for all social media links */
.social-links a {
    font-size: 40px; /* Icon size */
    margin: 0 25px; /* Spacing between icons */
    text-decoration: none; /* Removes any link underlines */
    transition: transform 0.2s ease-in-out; /* Smooth hover effect */
}

/* SLIDE SHOW START */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 450px;
  /* Set the height you want for the slideshow */
  overflow: hidden;
  border-radius: 5px;
  border: 0px solid #006666;
  /* Optional: for layout debugging */
}

/* Slides */
.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cntain;
  object-position: center;
  display: block;
  border-radius: 3px;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* Navigation arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 8px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0, 0, 0, 0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Dots */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active,
.dot:hover {
  background-color: #006666;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .slideshow-container {
    height: 140px;
  }

  .prev,
  .next {
    font-size: 12px;
    padding: 6px;
  }
}

/* Hover effect: make the icon slightly larger */
.social-links a:hover {
    transform: scale(1.1);
}

/* Navigation Bar */
.navbar {
  background-color: #006666;
  padding: 12px 0;
  font-family: Arial, sans-serif;
}

/* Main Menu */
.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu li {
  position: relative;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  display: block;
  transition: background 0.3s;
}

.menu li a:hover {
  background-color: #009999;
  border-radius: 4px;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  top: 100%;
  left: 0;
  z-index: 10;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  color: #006666;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Show dropdown when active */
.dropdown-content.show {
  display: block;
}


/* Specific Brand Colors */

/* Facebook Icon Color */
.facebook-icon {
    color: #FFFFFF; /* Official Facebook blue */
}

/* YouTube Icon Color */
.youtube-icon {
    color: #ff0000; /* Official YouTube red */
}

/* Email Icon Color */
.email-icon {
    color: #FFFFFF; /* A common color for a generic email/contact icon */
}

section {
    display: none; /* Hides ALL sections by default */
}

/* Intro Section */
section.visible-intro{
  display: block;
  animation: fadeIn 1s ease-in-out;
}

.visible-intro .lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 1px;
}


/* Sections */
.section{padding:18px 0;border-bottom:1px solid #f0f0f0;background:white;margin-bottom:5px}
.home-section .lead{font-size:16px;color:var(--muted);margin-top:1px;}
.section {
  scroll-margin-top: 10px; /* section will stop scrolling 150px before top */
}

/* Work section */
.section {
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
  background: white;
  margin-bottom: 12px;
}

.work-section .lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 1px;
}

.work-section .impact-list {
  list-style: none;
  margin-top: 3px;
}


/* Container */
.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding: 40px 50px;
}

/* Individual Card */
.impact-card {
  background: #f6ff00;
  width: 240px;
  padding: 55px 20px 25px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
}

/* Top Icon (centered circle) */
.impact-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #10c784; /* brand green */
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Text */
.impact-card h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #10c784;
  font-size: 26px;
  font-weight: 700;
}

.impact-card p {
  font-size: 22px;
  color: #444;
  margin: 0;
}

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

  .impact-cards {
    padding: 24px 2px;
    gap: 18px; /* reduce spacing */
  }

  .impact-card {
    width: 160px;        /* smaller card */
    padding: 18px 10px 10px;
    border-radius: 12px;
  }

  .impact-icon {
    top: -22px;
    font-size: 20px;     /* smaller icon */
    width: 45px;
    height: 45px;
  }

  .impact-card h3 {
    font-size: 18px;     /* smaller heading */
  }

  .impact-card p {
    font-size: 14px;     /* smaller description */
  }
}

 /* Testimony START*/

 .testimonial-container {
  background-color: #006666;
  color: #fff;
  border-radius: 15px;
  margin: 2px auto;
  padding: 20px 60px;
  max-width: 768px;
  position: relative;
  transition: opacity 0.6s ease-in-out;
}

.fa-quote {
  color: rgba(81, 246, 4, 0.956);
  font-size: 28px;
  position: absolute;
  top: 10px;
}

.fa-quote-left {
  left: 30px;
}

.fa-quote-right {
  right: 30px;
}

.testimonial {
  line-height: 26px;
  text-align: left;
  font-family: Georgia, sans-serif;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
}

.user .role {
  font-weight: normal;
  margin: 10px 0;
}

.progress-bar {
  background-color: #fff;
  height: 4px;
  width: 100%;
  transform-origin: left;
  animation: grow 10s linear infinite;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 20px 30px;
  }

  .fa-quote {
    display: none;
  }
}


.green-heading {
  background-color: #006666;   /* Zariya green */
  padding: 18px 15px;
  text-align: center;
  border-radius: 6px;
  margin: 30px auto;
  width: 100%;
}

.green-heading h2 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

  /* Testimony END */

/* Gallery layout New */
.work-gallery {
  display: flex;
  justify-content: center; /* centers the images horizontally */
  align-items: center;     /* vertically aligns them */
  gap: 10px;               /* spacing between images */
  flex-wrap: wrap;         /* wraps images on smaller screens */
  margin-top: 10px;
  text-align: center;
}

/* Image style *MAIN PAGE */ 

 .collage-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  grid-gap: 25px;
}

 .collage-card {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  background: #006666;
}

.collage-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.collage-card:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Image style * END/

/* Image style * EFA PAGE */
.gallery-container {
  display:contents;
  justify-content: center;   /* center row */
  align-items: center;
  gap: 10px;                 /* spacing between images */
  flex-wrap: nowrap;         /* keep in one row */
  overflow-x: auto;          /* allow scroll if overflow */
  padding: 8px 0;
}

/* Individual image styling */
.gallery-img {
  height: 450px;
  width: 100%;               /* keep image proportion */
  border-radius: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
/* ----- MOBILE VIEW ----- */
@media (max-width: 768px) {
  .gallery-container {
    gap: 10px;
    overflow-x: scroll;      /* scroll horizontal row */
  }

  .gallery-img {
    height: 170px;           /* smaller thumbnails */
    width: auto;
    border-radius: 10px;
  }
}


/* Bullet points */
.bullet {
  /* Remove default browser padding on the left (usually 40px) */
  padding-left: 0; 
  font-size:16px;color:var(--muted);margin-top:1px;
  /* Add padding to the right of the list container */
  margin-left: 20px; /* Adjust this value (e.g., 20px, 1.5em) to control the shift */
}

/* Style for each individual box */
  .box {
    border: 3px solid #ccc;
    border-radius: 50px;
    padding: 20px;
    width: 45%; /* Adjusts box width for side-by-side display */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color:var(--brand-green);
    text-align: center; /* Centers all text content inside the box */
    margin-bottom: 20px;
  }

  /* Style for the heading inside each box */
  .box h2 {
    margin-top: 0;
    font-size: 24px;
    color: #FFFFFF;
  }

  /* Style for the paragraph text */
  .box p {
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
  }
  
  /* Media query for responsiveness */
  @media (max-width: 768px) {
    .container {
      flex-direction: column; /* Stacks boxes vertically on smaller screens */
      align-items: center; /* Centers stacked boxes */
    }
    .box {
      width: 100%; /* Adjusts width for better mobile viewing */
      margin-bottom: 10px;
    }
  }

/* ...............................NEW MAIN PAGE IMAGES................................. */

.zwf-gallery {
  width: 100%;
  margin: 0 auto;
 }

/* DESKTOP: uniform card size */
.zwf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.zwf-gallery-img {
  width: 100%;
  height: 220px;
  border: 3px solid #006666;
  border-radius: 12px;
  cursor: pointer;
  object-fit: fill; 
  transition: transform .3s ease;
}

.zwf-gallery-img:hover {
  transform: scale(1.2);
}

/* ----- MOBILE VIEW ----- */
@media (max-width: 768px) {
  .zwf-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 3px;
    padding: 0 10px;
  }

  .zwf-gallery-img {
    height: 100px;   /* smaller thumbnails */
    border-radius: 10px;
  }
}

/* ----- POPUP MODAL ----- */
.zwf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.zwf-modal-content {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}

.zwf-modal-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.zwf-modal-caption {
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

/* Image END */


/* ...............................NEW EFA PAGE IMAGES................................. */

.efa-gallery {
  width: 100%;
  margin: 0 auto;
 }

/* DESKTOP: uniform card size */
.efa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.efa-gallery-img {
  width: 100%;
  height: 220px;
  border: 3px solid #006666;
  border-radius: 12px;
  cursor: pointer;
  object-fit: fill; 
  transition: transform .3s ease;
}

.efa-gallery-img:hover {
  transform: scale(1.2);
}

/* ----- MOBILE VIEW ----- */
@media (max-width: 768px) {
  .efa-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 3px;
    padding: 0 10px;
  }

  .efa-gallery-img {
    height: 100px;   /* smaller thumbnails */
    border-radius: 10px;
  }
}

/* ----- POPUP MODAL ----- */
.efa-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.efa-modal-content {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}

.efa-modal-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* EFA Image END */

/* CAROUSEL FOR IMAGES................... */

/* --------------------------- PDF Carousel Styles (Isolated) --------------------------- */
/* PDF Carousel Container */
.pdf-carousel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

/* Slides */
.pdf-carousel-slide {
  display: none;
  text-align: center;
}

.pdf-carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 6px;
}

/* --- Control Buttons (Below the Carousel) --- */
.pdf-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;                /* space between buttons */
  margin-top: 10px;
}

.pdf-carousel-prev,
.pdf-carousel-next {
  background: #006660;   
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.pdf-carousel-prev:hover,
.pdf-carousel-next:hover {
  background: #de2069;
  transform: scale(1.05);
}

/* --- Dots --- */
.pdf-carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.pdf-carousel-dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.pdf-carousel-dot.active,
.pdf-carousel-dot:hover {
  background-color: #006666;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .pdf-carousel-slide img {
    max-height: 280px;
  }

  .pdf-carousel-prev,
  .pdf-carousel-next {
    font-size: 14px;
    padding: 8px 16px;
  }

  .pdf-carousel-controls {
    gap: 12px;
  }
}


/* END CARAOUSEL...................... */

/* Gallery placeholders */
.gallery{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.placeholder{background:linear-gradient(135deg,#e0e7e0,#d6ead6);width:220px;height:140px;border-radius:8px;box-shadow:inset 0 0 0 2px rgba(255,255,255,0.2)}
.placeholder.alt{background:linear-gradient(135deg,#dfeaf0,#cfe0e8)}
.placeholder.small{width:160px;height:110px}


/* Team grid */
.team-grid{display:flex;gap:25px;flex-wrap:wrap;margin-top:12px}
.leader{background:white;padding:14px;border-radius:8px;min-width:220px;box-shadow:0 1px 4px rgba(0,0,0,0.04);text-align:center}
.leader-photo{width:120px;height:120px;margin:0 auto;border-radius:10px}

/* Box grid Style New */
.profile1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px auto;
}

.profile-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 150px;                /* fixed size for clean frame */
  height: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* deep shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-8px);  /* subtle lift effect */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.profile-card img {
  width: 100%;
  height: 60%;
  object-fit: contain;
  border-bottom: 3px solid #006666; /* theme border */
  background: #eeeeee;
}

.profile-card p {
  color: #2b8a4a;
  font-size: 1.8em;
  text-align: center;
  margin: 5px 0 0 0;
}

/* Container for positioning */
.quote-container {
    max-width: 600px;
    padding: 20px;
    position: relative;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: rgb(244, 240, 240);
    box-shadow: #333;
    /* Center the box horizontally */
    margin: 40px auto;  /* pushes top/bottom spacing and centers horizontally */
}

/* Quote Text Styling */
.quote-text {
    font-size: 1.8rem;
    font-style: italic; /* Makes the text look elegant */
    line-height: 1.5;
    margin: 20px 0;
    padding: 0 40px; /* Space inside for the quote marks */
}

/* ----------------------------------------------------- */
/* Styling the BIG, Artistic Double Quotes */
/* ----------------------------------------------------- */

.quote-mark {
    font-family: Georgia, serif; /* Use a classic serif font for quotes */
    font-size: 8rem; /* Makes the quotes much bigger */
    font-weight: 900;
    color: #ffd700; /* Artistic color (Gold/Yellow) */
    opacity: 0.6;
    
    /* Absolute positioning to place them outside the main text flow */
    position: absolute; 
    z-index: 0; /* Ensures quotes are behind or layered correctly */
}

.open-quote {
    top: -5px; /* Moves it up outside the box */
    left: 10px;
}

.close-quote {
    bottom: -25px; 
    right: 15px;
    /* You may need to flip the close quote depending on the font/Unicode used */
    /* transform: rotate(180deg); */
}
.close-quote2 {
    bottom: -60px; 
    right: 28px;
    /* You may need to flip the close quote depending on the font/Unicode used */
    /* transform: rotate(180deg); */
}



/* Annual Report */
.annual-report-section {
  background: #f8faf9;
  padding: 60px 20px;
  text-align: center;
}

.annual-report-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.section-title {
  color: var(--accent);
  font-size: 32px;
  font-weight: 700;
}

.year-selector {
  font-size: 16px;
  color: #333;
}

.year-selector label {
  margin-right: 8px;
  font-weight: 600;
}

.year-selector select {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
}

/* Flipbook Viewer */
.flipbook-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--brand-green);
  transition: opacity 0.4s ease-in-out;
}

.flipbook-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.section-subtitle {
  font-size: 20px;
  color: #2b8a4a;
  margin-bottom: 10px;
  font-weight: 800;
}
/* Download Button */
.download-section {
  display: none;
}

.download-btn {
  display: inline-block;
  background: var(--brand-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: color(srgb red green blue);
  transform: translateY(-2px);
}


/* Mobile Adjustments */
@media (max-width: 768px) {
  .report-header {
    flex-direction: column;
    gap: 1px;
  }

  .section-title {
    font-size: 26px;
  }
    .section-subtitle {
    font-size: 18px;
    color:#2b8a4a; 
    margin-bottom:10px;
    font-weight: 500;
  }

  .flipbook-container {
    height: 400px;
  }
}


/* Team grid Style New */

.profile {
    /* Override side-by-side layout by forcing content into a single column */
    display: flex;
    flex-direction: column; 
    align-items: center; /* Center the items horizontally */
    max-width: 360px; /* Example width for a card */
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* deep shadow */
}

/* Ensure picture is centered and sized correctly */
.profile__avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid var(--brand-green);
}


/* .profile:hover { */
/*  transform: translateY(-8px);  /* subtle lift effect */
/*  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); */
/*  } */

/* Ensure all text is centered */
.profile__name,
.profile__title,
.profile__header-text {
    color: #006666;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    width: 100%; /* Ensure text elements take full width of parent */
    margin: 5px 0;
}

/* ------------------------------------------------ */
/* Expand/Collapse Styles */
/* ------------------------------------------------ */

.profile__collapsible-content {
    /* Key to hide the content initially */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; /* Smooth animation */
    padding: 0 10px;
}

.profile__collapsible-content.expanded {
    /* Max height must be larger than content height for the animation to work */
    max-height: 610px; 
    padding: 15px 10px;
}

.view-more-btn {
    background: none;
    border: none;
    color: var(--brand-green, #2b8a4a); /* Use your theme color */
    cursor: pointer;
    margin-top: 2px;
    font-weight: bold;
}

    /* Responsive: reduce avatar on small screens */
    @media (max-width: 880px) {
      .profile__avatar { width:160px; height: 160px; }
      .profile { gap: 2px; padding: 5px; }
    }

/* Contact */
.contact-details p{margin:6px 0;color:var(--muted)}

/* Donate */
.donate-grid{display:flex;gap:30px;align-items:center;flex-wrap:wrap}
.qr-frame{width:200px;height:200px;border:4px solid #006666;border-radius:8px;display:flex;align-items:center;justify-content:center;background:#f1f1f1;color:#666;font-weight:700}
.donor-box .btn{display:inline-block;padding:10px 14px;border-radius:8px;background:#006666;color:white;border-radius:10px;cursor:pointer}

/* Footer */
.site-footer{background:var(--brand-green);padding:30px 0;border-top:1px solid #eee;margin-top:28px}
.footer-inner{text-align:center;color:#FFFFFF}

/* Responsive rules */
@media (max-width: 880px){
  .nav{display:none}
  .hamburger{display:block}
  .vision-mission{flex-direction:column}
  .work-gallery{flex-direction:column}
  .team-grid{flex-direction:column}
}