  /* ========== Base Reset ========== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f9f7;
    color: #1f2f2f;
    line-height: 1.6;
  }

  /* ========== Typography ========== */
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #134e4a;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1rem;
    color: #333;
  }

  /* ========== Layout Containers ========== */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 3rem 0;
  }

  section {
    padding: 3rem 0;
  }

  /* ========== Navbar ========== */
  .navbar {
    background-color: #134e4a;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    color: #a7f3d0;
    border-bottom: 2px solid #a7f3d0;
  }
  .nav-links li a.active {
    color: #a7f3d0;
    border-bottom: 2px solid #a7f3d0;
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
  }


/* ========== Hero Section ========== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  position: relative;
  background-size: contain; /* or '100% 100%' if needed */
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

/* ========== Hero Fade Transition ========== */
.hero {
  transition: opacity 0.5s ease-in-out, background-image 0.6s ease-in-out;
}




.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeZoom 2s ease-in-out both;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: darkslategray;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-family: 'Playfair Display', serif;
} 

.hero p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.hero {
  /* other styles... */
  animation: heroWave 8s ease-in-out infinite; /* was 18s or 20s */
}

@keyframes heroWave {
  0% {
    background-position: center center;
  }
  50% {
    background-position: center top;
  }
  100% {
    background-position: center center;
  }
}
/* === Hero Background Slideshow === */
@keyframes bgSlideshow {
  0%   { background-image: url('images/u1.png'); }
  25%  { background-image: url('images/u2.png'); }
  50%  { background-image: url('images/u3.png'); }
  75%  { background-image: url('images/u4.png'); }
  100% { background-image: url('images/u1.png'); }
}




@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}




  



  /* ========== Pillars Section ========== */
  .pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #ecfdf5;
    text-align: center;
  }

  .pillar {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
  }

  .pillar:hover {
    transform: translateY(-5px);
  }

  /* ========== GHG Quantification ========== */
  .ghg {
    background-color: #f0fdf4;
    padding: 4rem 2rem;
  }

  .ghg .ghg-features {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
  }

  .ghg-card {
    background: white;
    border-left: 5px solid #10b981;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }

  .ghg-card:hover {
    transform: scale(1.02);
  }

  /* ========== Methodology Section ========== */
  .methodology {
    background-color: #fff;
  }

  .method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .method-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0d9488;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }

  .method-card:hover {
    transform: translateY(-6px);
  }

  /* ========== Project Section ========== */
  .project-description {
    margin-top: 2rem;
    line-height: 1.8;
  }

  .highlight {
    color: #047857;
    font-weight: bold;
  }

  /* ========== Impact Section ========== */
  .impact {
    background-color: #f0fdf4;
    text-align: center;
    padding: 4rem 2rem;
  }

  .impact h2 {
    font-size: 2rem;
    color: #134e4a;
    margin-bottom: 2rem;
  }

  .impact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }

  .impact-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .impact-box:hover {
    transform: translateY(-5px);
  }

  .impact-box h3 {
    color: #047857;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .impact-box p {
    color: #333;
    font-size: 1rem;
  }


  /* ========== About Section ========== */
  .about {
    background: #e0f2f1;
    text-align: center;
    padding: 4rem 2rem;
  }

  .about .btn-secondary {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #134e4a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
  }

  .about .btn-secondary:hover {
    background-color: #0f766e;
  }

  /* ========== Team Section ========== */
  .team {
    background-color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
  }

  .team h2 {
    font-size: 2rem;
    color: #134e4a;
    margin-bottom: 2rem;
  }

  .team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
  }

  .team-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-6px);
  }

  .team-card h3 {
    color: #0f766e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .team-card p {
    color: #444;
    font-size: 0.95rem;
  }


 /* =================== Gallery Section =================== */
.gallery {
  background-color: #f0fdf4;
  text-align: center;
  padding: 4rem 2rem;
}

.gallery h2 {
  font-size: 2.2rem;
  color: #134e4a;
  margin-bottom: 1rem;
}

.gallery .intro {
  color: #475a4e;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
}

.gallery-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.gallery-card p {
  font-size: 0.95rem;
  color: #334e3c;
  margin: 0;
}


  /* ========== Contact Section ========== */
  .contact {
    background-color: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 5rem;
  }

  .contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 3rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }

  .btn-submit {
    background-color: #134e4a;
    color: white;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: #0f766e;
  }

  .form-success-message {
    margin-bottom: 4rem;
  }

  /* ========== Footer ========== */
  footer {
    background-color: #d1fae5;
    padding: 2rem;
    text-align: center;
    font-size: 0.95rem;
    margin-top: 4rem;
  }

  .footer-block {
    background-color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  .footer-block a.greenworks-link {
    font-weight: bold;
    color: #000000;
    text-decoration: none;
  }

  .footer-block a.greenworks-link:hover {
    text-decoration: underline;
  }


  /* ========== Responsive Tweaks ========== */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }

    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav-links {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  }

  /* ========== Testimonials Section ========== */
  .testimonials {
    background-color: #ecfdf5;
    padding: 4rem 2rem;
    text-align: center;
  }

  .testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
  }

  .testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
  }

  .testimonial-card h4 {
    color: #134e4a;
    margin-bottom: 0.2rem;
  }

  .testimonial-card span {
    font-size: 0.9rem;
    color: #555;
  }
  .impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  /* ========== Partners Section ========== */
  .partners {
    background-color: #f0fdf4;
    padding: 4rem 2rem;
    text-align: center;
  }

  .partners h2 {
    color: #134e4a;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .partners-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .partners-grid img {
    width: 160px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
  }

  .partners-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  #scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  background-color: #134e4a;
  color: white;
  border: none;
  outline: none;
  padding: 0.8rem 1.1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}


  #scrollToTopBtn:hover {
    background-color: #0f766e;
  }
  .section-heading {
    text-align: center;
    margin-bottom: 1rem;
  }

  .gallery .intro {
    text-align: center;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 2rem;
  }
  .contact .section-heading,
  .contact .intro {
    text-align: center;
  }

  .contact .intro {
    margin-bottom: 2rem;
    color: #444;
    font-size: 1.05rem;
  }

  .form-success-message {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 10px;
    text-align: center;
  }
  /* ========== Partners Section ========== */
  .partners {
    background-color: #f0fdf4;
    padding: 4rem 2rem;
    text-align: center;
  }

  .partners .section-heading {
    margin-bottom: 2rem;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
  }

  .partners-logos img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .partners-logos img:hover {
    transform: scale(1.1);
  }

/* ========== FAQ Section ========== */
.faq {
  background-color: #f0fdf4;
  padding: 4rem 2rem;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  padding: 1rem;
  cursor: pointer;
  color: #134e4a;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #d1fae5;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: #333;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.ghg-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.ghg-card h3 a:hover {
  color: #047857;
}
/* ========== Methodology Page ========== */
.methodology {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.methodology .intro {
  text-align: center;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2rem;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.method-card {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #0d9488;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  text-align: left;
}

.method-card:hover {
  transform: translateY(-6px);
}

.method-card h3 a {
  color: #0f766e;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.method-card h3 a:hover {
  color: #10b981;
}

.method-card p {
  color: #444;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  animation: slideUp 0.3s ease-in-out;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}

.open-modal {
  background: none;
  border: none;
  color: #134e4a;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* === Modal Styles === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.modal h2 {
  margin-bottom: 1rem;
  color: #134e4a;
}

.modal p {
  color: #333;
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.pillars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background-color: #f3faf7;
}

.pillar {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

.pillar h3 {
  font-size: 1.3rem;
  color: #14532d;
  margin-bottom: 0.5rem;
}

.pillar p {
  color: #4b5563;
}
.hero {
  height: 70vh; /* or try 60vh for smaller */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #083d3e;
  font-family: 'Georgia', serif;
  padding: 2rem;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 60%;
  max-width: 600px;
  animation: fadeIn 0.4s ease;
}

.modal .close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  margin-top: 15px;
  background-color: #00695c;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
/* GHG Section */
.ghg {
  padding: 80px 20px;
  background: #f4f7f9;
  text-align: center;
}

.ghg .section-heading {
  font-size: 2.5rem;
  color: #003049;
  margin-bottom: 30px;
}

.ghg .ghg-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.ghg-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.ghg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ghg-card h3 {
  font-size: 1.3rem;
  color: #003049;
  margin-bottom: 12px;
}

.ghg-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .ghg .ghg-features {
    flex-direction: column;
    align-items: center;
  }

  .ghg-card {
    max-width: 90%;
  }
}
/* === Carbon Removal Page Enhancements === */
.carbon-monitoring {
  padding: 4rem 2rem;
  background-color: #f0fdf4;
}

.carbon-monitoring h2 {
  font-size: 2rem;
  color: #134e4a;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-in-out;
}

.carbon-monitoring p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroPan {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}


/* Lightbox Gallery Styling */
.gallery-section {
  padding: 80px 20px;
  background: #f3fdf6;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #0c3c3e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.04);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-section {
  margin-top: 60px;
}

.gallery-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #00332d;
  text-align: center;
}

.gallery-section p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.gallery-grid a img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-grid a img:hover {
  transform: scale(1.03);
}
.gallery-section {
  margin-bottom: 4rem;
}

.gallery-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e2a38;
}

.gallery-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox z-index fix */
.lb-data .lb-caption {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .gallery-section h3 {
    font-size: 1.3rem;
  }
  .gallery-section p {
    font-size: 0.95rem;
  }
}


.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  max-width: 300px;
}

.team-card:hover {
  transform: translateY(-5px);
}
.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}






@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #134e4a;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}
/* Partner Logo Slider */
.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.partner-track {
  display: flex;
  gap: 3rem;
  animation: scrollLogos 20s linear infinite;
  align-items: center;
}

.partner-track img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-track img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* PDF Modal Viewer - Fullscreen */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: relative;
  padding: 0;
  box-shadow: none;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
  z-index: 10000;
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

/* =================== Gallery Grid Images =================== */
.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}