@import url("https://fonts.googleapis.com/css2?family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap");

/* ===================================
   CSS Variables & Design System
   =================================== */
:root {
  /* Colors */
  --color-primary: #005745;
  --color-accent: #e7ba48;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray: #666666;
  --color-gray-dark: #333333;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-family: "Lato", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-base);
}

/* ===================================
   Utility Classes
   =================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0px;
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray);
  margin-bottom: var(--spacing-xl);
}

.section-subtitle.centered {
  text-align: center;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in.visible {
  animation: fadeIn 0.8s ease-out forwards;
}

/* ===================================
   Main Header
   =================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 10px 0;
  transition: all var(--transition-base);
}

.main-header.scrolled {
  background: var(--color-primary);
  padding: 10px 0;
}

.main-header.bg-green {
  background: var(--color-primary);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.menu-button {
  font-size: 18px;
  line-height: 20px;
  border: 1px solid white;
  border-radius: 40px;
  color: white;
  background: #ffffff63;
  padding: 10px 19px;
}

.menu-button .icon {
  padding-left: 5px;
  font-size: 18px;
  line-height: 20px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

/* ===================================
   Full Screen Menu Overlay
   =================================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #005745;
  z-index: 1000;
  opacity: 0;
  display: none;
  transition: all var(--transition-slow);
  padding: 30px 3rem;
}

.menu-overlay-container {
  max-width: 1200px;
  margin: auto;
}

.menu-overlay.active {
  opacity: 1;
  display: block;
}

.menu-overlay .btn-close {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.menu-container {
  display: flex;
  height: calc(100% - 10px);
  padding: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.menu-container .menu-image-section {
  width: 50%;
  height: 100%;
}

.menu-container .menu-image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-container .menu-list {
  list-style: none;
  text-align: right;
}

.menu-container .menu-list li {
  margin-bottom: 10px;
  font-size: 22px;
  color: white;
}

.menu-container .menu-list li .active {
  font-weight: 700;
}

/* ===================================
   Hero Slider Section (Text Left, Image Right)
   =================================== */

.hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-slider-section {
  position: relative;
  background: var(--color-primary);
  min-height: 100vh;
}

.hero-slider-container {
  position: relative;
  height: 100vh;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* Text Section (Left) */
.hero-slide-text {
  width: 60%;
  padding: var(--spacing-xl) 0px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.hero-slide.active .hero-slide-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.hero-slide-title {
  font-size: 46px;
  line-height: 54px;
  font-weight: 700;
  color: #e7ba48;
  margin-bottom: 20px;
}

/* Image Section (Right) */

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  top: 65%;
  left: 2rem;
  display: flex;
  gap: 15px;
  z-index: 1;
}

.hero-slider-btn {
  width: 20px;
  height: 20px;
  background: #ffffff61;
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* ===================================
   Logo Section
   =================================== */
.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #fff;
  padding: 35px 0;
  position: relative;
}

.logo-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 50px;
  transition: 0.3s;
}

/* Keyframes for continuous movement */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================================
   Story Section
   =================================== */
.story-section {
  position: relative;
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
}

.story-section .story-bg-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.story-section .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.story-section .story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-section .story-text {
  font-size: var(--font-size-base);
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.cta-button {
  padding: 10px 12px;
  background: #f15a22;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-button .icon {
  margin-left: var(--spacing-xs);
  background-color: var(--color-accent);
  color: black;
  padding: 6px 8px;
  border-radius: var(--radius-full);
  transform: rotate(325deg);
  font-size: 15px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-accent);
}

.gallery-section .title-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-section .title-underline {
  width: 150px;
}

.gallery-grid {
  margin: 40px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Individual Item */
.gallery-item {
  width: 100%;
}

/* Decorative Frame */
.gallery-frame {
  background-image: url("./public/home/gallery-frame.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px;
  aspect-ratio: 1 / 1;
  /* keeps perfect square like sample */
  position: relative;
}

/* Square Image inside frame */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption Over Image (Bottom Overlay) */
.gallery-item p {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  background: rgba(0, 0, 0, 0.062);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 25px 8px 15px 8px;
  text-align: center;
  border-radius: 4px;
}

/* ---------- Impact Section ---------- */

.impact-section {
  position: relative;
  padding: 80px 0 60px;
  background: #fff;
}

.impact-section .impact-bg-image {
  position: absolute;
  top: 80px;
  right: 0;
}

.impact-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
}

.impact-section .impact-right {
  padding: 0px 0px 0px 60px;
}

.impact-section .title-content {
  margin-bottom: 15px;
}

.impact-section .title-content .section-title {
  color: #484747;
  text-align: left;
}

.impact-section .title-underline {
  width: 150px;
}

.impact-left img {
  width: 100%;
}

.impact-right h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.impact-text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
  padding-right: 60px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  white-space: n;
}

.stat span {
  font-size: 32px;
  font-weight: 800;
  color: #0c6c4f;
  display: block;
  padding-bottom: 15px;
}

/* ===================================
   Footer
   =================================== */

/* Footer Main */
.footer {
  color: #fff;
  text-align: center;
  padding: 80px 40px 40px;
  position: relative;
}

.footer-with-img {
  margin-top: 350px;
}

.footer .bg-flower-image {
  position: absolute;
  top: -380px;
  left: 0px;
  z-index: -1;
  opacity: 0.4;
}

.footer .bg-round-image {
  position: absolute;
  top: -130px;
  right: 0px;
  z-index: 2;
}

.footer-grass {
  background: url("public/home/grass-footer.png") repeat-x top center;
  height: 70px;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 25px;
}

/* Description Text */
.footer-desc {
  margin: auto;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* Menu */
.footer-nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  cursor: pointer;
  font-size: 15px;
}

.footer-title-underline {
  width: 100%;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 20px;
}

.footer-bottom-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.footer-bottom-right a {
  color: #fff;
  font-size: 16px;
}

.footer-bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  z-index: -1;
  background: var(--color-primary);
}

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

.footer-social a {
  cursor: pointer;
}

/* ===================================
   About Us Section
   =================================== */

.page-main-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 357px;
  position: relative;
  background: var(--color-accent);
  margin-top: 107px;
}

.page-main-banner .banner-bg-image-left {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: -532px;
  height: 251px;
  opacity: 1;
  z-index: 1;
  mix-blend-mode: color-dodge;
}

.page-main-banner .banner-bg-image-right {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: -532px;
  height: 251px;
  opacity: 1;
  z-index: 1;
  mix-blend-mode: color-dodge;
}

.page-main-banner .banner-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
}

.page-main-banner .banner-para {
  font-size: 16px;
  font-weight: 400;
  margin: 10px auto;
  max-width: 600px;
  text-align: center;
}

.page-main-banner .banner-title-underline {
  width: 181px;
  height: 4px;
}

.aboutus-content {
  position: relative;
}

img.aboutus-content-bg {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  height: 450px;
}

.aboutus-content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 60px;
}

.aboutus-head {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #f15a22;
  margin-bottom: 20px;
}

.aboutus-description-content {
  max-width: 639px;
  width: 100%;
}

.aboutus-title-underline {
  width: 150px;
}

.aboutus-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #484747;
}

.aboutus-story-section {
  padding-top: 60px;
}

.aboutus-content-story {
  margin-bottom: 40px;
}

.aboutus-story-title {
  color: #484747;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  margin-bottom: 9px;
  font-family: "Neuton", serif;
}

.aboutus-content-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aboutus-story-intro p,
.aboutus-story-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #484747;
  margin-bottom: 20px;
}

.aboutus-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.aboutus-carousel-container {
  flex: 1;
  width: 100%;
  height: 442px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* core velues css */

.aboutus-value-section {
  position: relative;
  padding: 60px 2rem;
}

.aboutus-value-section .bg-image {
  position: absolute;
  right: 0px;
  top: -20px;
}

.aboutus-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.aboutus-value-card {
  background: #ffffff;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-image: url("public/aboutus/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.aboutus-value-content {
  margin-right: 10px;
}

.aboutus-card-icon {
  max-width: 65px;
  width: 100%;
  height: 65px;
}

.aboutus-icon {
  width: 65px;
  height: 65px;
}

.aboutus-card-title {
  color: #005745;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 10px;
}

.aboutus-card-description {
  color: #484747;
  font-weight: 400;
  font-size: 14px;
}

/* About Us Slider */

.aboutus-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: var(--spacing-lg) 0;
}

.aboutus-carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  /* Adjust height as needed */
  overflow: hidden;
}

.aboutus-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.aboutus-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.aboutus-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.aboutus-slider-controls .hero-slider-btn {
  background: none;
  color: var(--color-white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.aboutus-slider-controls .hero-slider-btn.prev {
  left: 40px;
}

.aboutus-slider-controls .hero-slider-btn.next {
  right: 40px;
}

/* ===================================
   Knowledge Base Section
   =================================== */

.kb-section-card {
  margin: 60px auto 100px;
}

.kb-section-card .kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.kb-section-card .kb-image-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  background-image: url("public/knowledge/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 2px;
}

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

.kb-section-card .kb-title {
  padding: 10px 0 5px;
}

.covid {
  padding-top: 40px;
  background: #e6e7e8 !important;
  padding-bottom: 40px;
}

#book-container {
  min-height: 84vh;
  position: relative;
}

.covid .flipbook-main-wrapper,
.covid .flipbook-menuBottom {
  background: #e6e7e8 !important;
}

.flipbook-page-html .textLayer {
  opacity: 0;
}

.covid .flipbook-left-arrow {
  transform: scale(-1);
}

.flipbook-right-arrow {
  width: 30px !important;
  margin-right: 3% !important;
  background: rgba(0, 0, 0, 0.1) !important;
  padding: 6px !important;
}

.flipbook-left-arrow {
  width: 30px !important;
  margin-left: 3% !important;
  background: rgba(0, 0, 0, 0.1) !important;
  padding: 6px !important;
}

.flipbook-menuBottom .flipbook-menu-center {
  background: white;
  padding: 0.25em 1em;
  border-radius: 30px;
  margin-top: -2em;
  margin-bottom: 0.5em;
  border: 1px solid #005745;
}

.text-center {
  text-align: center;
  margin-top: 20px;
}

.cta-button.w-auto {
  width: auto;
  display: inline-block;
}

.covid .title-warpe {
  text-align: center;
}

.covid .title {
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
}

.covid .title-warpe img {
  margin: auto;
  width: 190px;
}

/* ===================================
    Team members Section
   =================================== */

.teams-content {
  position: relative;
}

.teams-section .Governing-member,
.teams-section .advisor,
.teams-section .council {
  padding-bottom: 40px;
}

.Governing-member {
  padding-top: 60px;
}

.teams-section .our-team {
  padding-bottom: 60px;
}

.teams-section .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams-section .text {
  color: #484747;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  margin-bottom: 9px;
  font-family: "Neuton", serif;
}

.teams-section .underline {
  width: 181px;
  height: 4px;
}

.teams-section .members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
  justify-items: center;
}

.teams-section .members-grid .member-photo {
  width: 300px;
  height: auto;
  background-image: url("public/resilience/blog-frame.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.5px;
  aspect-ratio: 1 / 1;
}

.teams-section .members-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teams-section .member-name {
  color: #000000;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.teams-section .member-role {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #000000;
}

/* ===================================
    Contact Us Section
    ===================================
*/

.contactus-content {
  position: relative;
  padding-bottom: 60px;
}

.contactus-content .section-title {
  padding-top: 60px;
  color: #000000;
  font-family: "Neuton", serif;
  font-size: 48px;
  font-weight: bold;
}

.title-content {
  margin-bottom: 20px;
}

.title-content img.title-underline {
  display: block;
}

.contact-location-inner {
  background: var(--color-primary);
  width: 100%;
  max-width: 46px;
  height: 46px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-location p {
  width: 100%;
  max-width: 530px;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: var(--font-size-lg);
  color: var(--color-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.contact-map {
  background: rgba(0, 0, 0, 0.062);
  width: 100%;
  height: 100%;
}

.contact-right {
  background-color: var(--color-primary);
  padding: 20px;
  color: var(--color-white);
}

.contact-main-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-main-form label {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.contact-main-form input,
.contact-main-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--color-white);
  border-radius: 0px;
  font-size: var(--font-size-sm);
  background: transparent;
  color: var(--color-white);
  margin-top: 10px;
  outline: none;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
  color: #d9d9d9;
}

.submit-button {
  width: 100%;
  max-width: 190px;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
}

/* ===================================
   Resilience Page Styles
   =================================== */

.resilience-content {
  padding-top: 60px;
  position: relative;
}

.section-title-dark {
  font-family: "Neuton", serif;
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.resilience-overview-text .title-underline {
  width: 150px;
  margin-bottom: 20px;
}

.section-title-white {
  font-family: "Neuton", serif;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.title-underline-small {
  width: 150px;
  display: block;
  margin-bottom: 30px;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 60px;
}

.section-desc {
  max-width: 100%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

/* Overview Section */
.resilience-overview-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.resilience-overview-image {
  flex: 0 0 35%;
  position: relative;
}

.overview-img-mask {
  width: 100%;
}

.resilience-overview-text {
  flex: 1;
}

.resilience-overview-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.resilience-section .gallery-grid {
  margin: 40px 0px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.resilience-serve-frame p {
  padding-bottom: 5px;
}

.resilience-section .resilience-serve-frame {
  background-image: url("./public/home/gallery-frame.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 18px;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 2;
}

/* Success Grid (Who It Serves) */
.resilience-success-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.success-card {
  position: relative;
  border: 4px solid #e7ba48;
  /* Gold border */
  border-radius: 4px;
  overflow: hidden;
}

.success-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}

.success-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  text-align: center;
}

.success-overlay h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Stats Bar */
.resilience-stats-bar {
  background: #fff;
  padding: 40px 0;
  margin: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #f15a22;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  max-width: 200px;
  line-height: 1.4;
}

/* Success Stories */
.resilience-stories {
  background: url("/public/resilience/story-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 0;
  margin: 40px 0;
  border-radius: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.resilience-stories .centered-content {
  margin-top: 0px;
}

.white-underline {
  filter: brightness(0) invert(1);
}

.story-card-large {
  display: flex;
  background: transparent;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

.story-image-col {
  flex: 0 0 50%;
}

.story-image-col img {
  width: 100%;
  height: 380px;
}

.story-content-col {
  flex: 1;
  color: #fff;
}

.story-content-col h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Neuton", serif;
}

.story-content-col p {
  font-size: 18px;
  line-height: 28px;
}

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-bottom: 100px;
}

.resource-card {
  background-image: url("public/resilience/blog-frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
}

.resource-card .resource-img img {
  width: 100%;
}

.resource-content {
  padding: 10px 0 0px;
}

.resource-content h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Neuton", serif;
}

.resource-meta {
  font-size: 14px;
  padding: 5px 0px;
}

.resource-content .read-more {
  color: #f15a22;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.resource-content .read-more .icon {
  background-color: var(--color-accent);
  color: black;
  border-radius: var(--radius-full);
  transform: rotate(325deg);
  font-size: 13px;
  padding: 2px 6px;
}

/* ===================================
   Models Page Styles
   =================================== */

.models-content {
  padding-top: 60px;
  position: relative;
}

.models-content .main-para {
  font-size: 18px;
  line-height: 28px;
}

.models-cards {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.models-cards .cards {
  display: flex;
  align-items: center;
  background-color: #005745;
  padding: 20px;
  color: #fff;
  gap: 20px;
}

.models-cards .card-frame {
  background-image: url("public/models/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 1px;
}

.models-cards .card-image img {
  width: auto;
  min-width: 400px;
  height: 350px;
}

.models-cards .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Neuton", serif;
}

.models-cards .card-description {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===================================
   Compaliance Page Styles
   =================================== */

.compliance-content {
  padding-top: 60px;
  position: relative;
}

/* Sticky Tabs */
.compliance-tabs {
  position: sticky;
  top: 120px;
  z-index: 90;
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #e7ba48;
  padding: 10px;
  width: max-content;
  margin: 0px auto 60px auto;
  border-radius: 50px;
}

.tab-btn {
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #484747;
  background: transparent;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tab-btn:hover {
  color: var(--color-primary);
  background: #f0f0f0;
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.tab-btn.active {
  background: var(--color-primary);
}

.tab-content {
  display: block;
  padding-top: 20px;
  margin-bottom: 60px;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border: 1px solid #f15a22;
  background-color: #fbf2dd;
  padding: 30px;
}

.report-img {
  background: #f4f4f4;
  border-radius: 4px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("public/knowledge/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 2px;
}

.report-img img {
  height: 400px;
  width: 100%;
}

.financial-list-container {
  background-color: #fbf2dd;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border: 1px solid #f15a22;
}

.financial-list {
  list-style: none;
}

.financial-list li {
  margin-bottom: 15px;
}

.financial-list a {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.fcra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 1px solid #f15a22;
  background-color: #fbf2dd;
  padding: 30px;
}

.fcra-card {
  background: var(--color-primary);
  padding: 30px;
  color: white;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.fcra-card h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Neuton", serif;
}

.fcra-card a {
  display: block;
  color: #e7ba48;
  margin-bottom: 5px;
  font-size: 18px;
  text-decoration: none;
}

/* ===============================
Network Page
=============================== */

.network-section .about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
}

.network-section .network-image {
  width: 100%;
  height: 501px;
  max-width: 501px;
}

.network-section .network-image img {
  width: 501px;
  height: 501px;
  object-fit: cover;
}

.network-section .text-content p {
  color: #484747;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.network-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 60px;
  align-items: start;
  justify-items: center;
}

.network-section .card {
  padding: 20px;
  border: 1px solid #f15a22;
  background-color: #ffffff;
  flex-direction: column;
}

.network-section .card-image {
  width: 210px;
  height: 100px;
  margin: 10px 0px;
}

.network-section .card-image img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.network-section .card-title {
  font-weight: 700;
  font-size: 24px;
  color: #005745;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.network-section .card-description {
  color: #484747;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  min-height: 196px;
  height: auto;
}

.network-section .read-more {
  color: #f15a22;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.network-section .read-more .icon {
  background-color: var(--color-accent);
  color: black;
  border-radius: var(--radius-full);
  transform: rotate(325deg);
  font-size: 13px;
  padding: 2px 6px;
}