@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.6;
  color: #0f172a;
  overflow-x: hidden;
  background: #fff;
  font-weight: 400;
  font-optical-sizing: auto;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Selection Styling */
::selection {
  background: #2563eb;
  color: white;
}

/* Global Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

/* Gradient Backgrounds */
.gradient-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

.gradient-secondary {
  background: linear-gradient(135deg, #10b981, #34d399);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

.gradient-accent {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

/* Professional Container System */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Ultra-wide screens (1600px+) */
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
    padding: 0 3rem;
  }
}

/* Large screens (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .container {
    max-width: 1400px;
    padding: 0 2.5rem;
  }
}

/* Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 1200px;
    padding: 0 2rem;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 900px;
    padding: 0 1.5rem;
  }
}

/* Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 1.25rem;
  }
}

/* Small Mobile (≤575px) */
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* ===== Responsive Row/Col Grid System ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.row > [class*="col-"] {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Base: full width on mobile */
.col-12 {
  width: 100%;
}
.col-6 {
  width: 50%;
}
.col-4 {
  width: 33.333%;
}
.col-3 {
  width: 25%;
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-12 {
    width: 100%;
  }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

/* Mobile: stack all columns */
@media (max-width: 767px) {
  .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* ===== Global Typography System (International Standards) ===== */
/* Heading Hierarchy - Consistent Across All Pages */
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #0f172a;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1e293b;
  letter-spacing: -0.005em;
  font-optical-sizing: auto;
}

h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-optical-sizing: auto;
}

h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #334155;
  font-optical-sizing: auto;
}

h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-optical-sizing: auto;
}

/* Paragraph & Text Styles */
p {
  /* Typography & Readability */
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.7; /* Better for serif */
  font-weight: 400;
  color: #1f2937;

  /* Layout & Flow */
  max-width: 65ch; /* Slightly wider for serif */
  margin-bottom: 1.75rem;

  /* Rendering Quality */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p:last-child {
  margin-bottom: 0;
}

/* Paragraph color variants — used in place of inline styles */
p.p-muted {
  color: #64748b;
}

p.p-white {
  color: #ffffff;
}

p.p-white-soft {
  color: rgba(255, 255, 255, 0.75);
}

p.p-white-faint {
  color: rgba(255, 255, 255, 0.6);
}

p.p-tight {
  line-height: 1.6;
}

p.p-tighter {
  line-height: 1.7;
}

p.p-mt {
  margin-top: 1rem;
}

p.p-mt-lg {
  margin-top: 1.5rem;
}

/* Testimonial paragraph — larger, bold */
p.p-testimonial {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

/* Donate card paragraph */
p.p-card {
  font-size: 1.5rem;
  color: #64748b;
  line-height: 1.6;
}

/* List Styles */
ul,
ol {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: #1f2937;
  font-weight: 400;
  margin-left: 2rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

li {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-weight: 400;
}

ul li,
ol li {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1f2937;
  font-weight: 400;
}

/* Small text — kept at minimum 20px */
small,
.text-small {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.3rem;
  line-height: 1.65;
  color: #64748b;
}

/* Bold emphasis */
strong,
b {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-weight: 700;
  color: #0f172a;
}

/* Links */
a {
  font-family: "Cormorant Garamond", serif;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d4ed8;
}

/* Responsive Typography (Tablet 768px) */
@media (max-width: 991px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.3rem;
  }
}

/* Responsive Typography (Mobile 576px) */
@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/* ===== Global Spacing & Section Standards ===== */
section {
  padding: 2rem 0;
}

/* Sections - Tablet */
@media (max-width: 991px) {
  section {
    padding: 2rem 0;
  }
}

/* Sections - Mobile */
@media (max-width: 575px) {
  section {
    padding: 2rem 0;
  }
}

/* ===== Responsive Media (Images & Videos) ===== */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Image & Video Container Styling */
.img-fluid,
.video-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Gallery images/videos */
.gallery-item img,
.gallery-item video,
.gallery-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover,
.gallery-item video:hover,
.gallery-video:hover {
  transform: scale(1.05);
}

/* Hero background videos */
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-image {
  height: auto; /* adjust this value */
  width: 100%;
  object-fit: cover;
}

/* Service & content videos */
.service-image video,
.capacity-image video,
.intro-image video,
.sidebar-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Professional Content Centering */
.section-content {
  text-align: center;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  margin: 0 auto 1rem auto;
  font-size: 2.75rem;
  font-weight: 700;
  font-optical-sizing: auto;
}

.section-header p {
  font-family:
    "EB Garamond", "Cormorant Garamond", "Garamond", "Georgia", serif;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #64748b;
  font-optical-sizing: auto;
}

/* Section Header - Tablet */
@media (max-width: 991px) {
  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .section-header p {
    font-size: 1.3rem;
  }
}

/* Section Header - Mobile */
@media (max-width: 575px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/* ===== GOOGLE FONTS UTILITY CLASSES ===== */
/* Cormorant Garamond - Elegant serif font (weights 300-700) */
.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.cormorant-garamond-light {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.cormorant-garamond-regular {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond-medium {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.cormorant-garamond-semibold {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.cormorant-garamond-bold {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Pirata One - Decorative display font */
.pirata-one {
  font-family: "Pirata One", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  line-height: 1.8;
}

/* Display headings using Cormorant Garamond */
.display-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Display headings using Pirata One */
.display-pirata {
  font-family: "Pirata One", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

/* Grid Centering Fixes */
.grid-centered {
  display: grid;
  place-items: center;
  justify-content: center;
}

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

/* Text Centering for All Devices */
.text-center-mobile {
  text-align: left;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }
}

.text-center-tablet {
  text-align: left;
}

@media (max-width: 991px) {
  .text-center-tablet {
    text-align: center;
  }
}

/* Professional Section Layouts */
section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  section {
    padding: 2rem 0;
  }
}

/* Laptops */
@media (min-width: 992px) and (max-width: 1199px) {
  section {
    padding: 0;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }

  /* Hero slider section must never have section padding */
  section#home {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
}

/* Hero Section Professional Centering */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  text-align: center;
  margin: 0 auto 1.5rem auto;
  line-height: 1.2;
}

.hero-content p {
  text-align: center;
  margin: 0 auto 2.5rem auto;
  max-width: 700px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Stats Section Professional Centering */
.stats {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: #0f172a;
}

/* Approach Section Professional Centering */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.approach-card {
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.approach-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.approach-card p {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #64748b;
}

/* Program Section Professional Centering */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.program-card {
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.program-content {
  padding: 2.5rem;
  text-align: center;
}

.program-content h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.program-content p {
  font-family:
    "EB Garamond", "Cormorant Garamond", "Garamond", "Georgia", serif;
  font-size: 1.3rem !important;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #334155;
  font-weight: 400;
  font-optical-sizing: auto;
}

.program-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Testimonials Section Professional Centering */
.testimonials {
  text-align: center;
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-content {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-content p {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  text-align: left;
  margin-bottom: 0.25rem;
}

.author-info p {
  text-align: left;
  margin: 0;
}

/* Gallery Section Professional Centering */
.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.gallery-item {
  text-align: center;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: scaleIn 0.6s ease-out;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.gallery-date {
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.8;
}

/* Partners Section Professional Centering */
.partners {
  text-align: center;
  background-color: inherit;
}

.partners-carousel {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  gap: 3rem;
}

.partner-item {
  text-align: center;
  padding: 2rem;
}

.partner-logo {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .partner-logo {
    width: 250px;
    height: 250px;
  }
}

/* Call to Action Professional Centering */
.call-to-action {
  text-align: center;
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #2563eb, #10b981);
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.cta-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.cta-content p {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Call to Action - Responsive */
@media (max-width: 991px) {
  .call-to-action {
    padding: 5rem 2rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .call-to-action {
    padding: 4rem 1rem;
  }
  .cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .cta-content p {
    font-size: 1.3rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-buttons .cta-button {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Index page refinements (above & below slider) ===== */
main {
  overflow-x: hidden;
}

#home {
  margin-bottom: 0;
  padding: 0;
}

/* Unified section padding rhythm for index */
main .quick-intro,
main .impact-statistics,
main .our-approach,
main .featured-programs,
main .how-we-work,
main .photo-gallery,
main .testimonials {
  padding: 6rem 0;
  font-size: 1.3rem;
}

main .partners {
  padding: 5rem 0;
}

main .section-header {
  margin-bottom: 3rem;
}

main .section-header h2 {
  font-size: 3rem;
}

main .section-header p {
  font-size: 1.3rem;
  max-width: 600px;
}

/* Section header responsive – index */
@media (max-width: 991px) {
  main .quick-intro,
  main .impact-statistics,
  main .our-approach,
  main .featured-programs,
  main .how-we-work,
  main .photo-gallery,
  main .testimonials {
    padding: 4rem 0;
    font-size: 1.3rem;
  }
}
main .partners {
  padding: 4rem 0;
}
main .section-header {
  margin-bottom: 2.5rem;
}
main .section-header h2 {
  font-size: 2.25rem;
}
main .section-header p {
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  main .quick-intro,
  main .impact-statistics,
  main .our-approach,
  main .featured-programs,
  main .how-we-work,
  main .photo-gallery,
  main .testimonials {
    padding: 3.5rem 0;
    font-size: 1.3rem;
  }
}
main .partners {
  padding: 3.5rem 0;
}
main .section-header {
  margin-bottom: 2rem;
}
main .section-header h2 {
  font-size: 1.875rem;
}
main .section-header p {
  font-size: 1.3rem;
}

@media (max-width: 480px) {
  main .quick-intro,
  main .impact-statistics,
  main .our-approach,
  main .featured-programs,
  main .how-we-work,
  main .photo-gallery,
  main .testimonials {
    padding: 3rem 0;
    font-size: 1.3rem;
  }
}
main .partners {
  padding: 3rem 0;
}
main .section-header {
  margin-bottom: 1.75rem;
}
main .section-header h2 {
  font-size: 1.5rem;
}
main .section-header p {
  font-size: 1.3rem;
}

/* Impact stats: 2×2 grid on small tablets (576–767px) */
@media (min-width: 576px) and (max-width: 767px) {
  main .impact-statistics .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  main .impact-statistics .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 0;
  }
}

/* Approach cards: 2×2 on small tablets */
@media (min-width: 576px) and (max-width: 767px) {
  main .our-approach .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  main .our-approach .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 0;
  }
}

/* Quick intro: tighter mobile layout */
@media (max-width: 480px) {
  main .quick-intro .intro-content {
    margin-bottom: 1.5rem;
  }
  main .quick-intro .intro-image img {
    max-height: 300px;
    object-fit: cover;
  }
}

/* CTA: tighter on very small screens */
@media (max-width: 480px) {
  main .call-to-action {
    padding: 3rem 1rem;
  }
  main .cta-content h2 {
    font-size: 1.375rem;
  }
}

.cta-button {
  text-align: center;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: white;
  color: #2563eb;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile and Tablet Professional Centering */
@media (max-width: 991px) {
  /* Tablet Centering */
  .hero-content {
    max-width: 700px;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .program-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .testimonial-item {
    padding: 2rem 1.5rem;
  }

  .testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 400;
    font-optical-sizing: auto;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 400;
    font-optical-sizing: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  /* Mobile Centering */
  .hero-content {
    max-width: 500px;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .approach-card {
    padding: 2rem 1.5rem;
  }

  .approach-card h3 {
    font-size: 1.3rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .program-content {
    padding: 2rem 1.5rem;
  }

  .program-content h3 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-item {
    padding: 1.5rem 1rem;
  }

  .testimonial-content p {
    font-size: 1.3rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }

  .author-info h4 {
    text-align: center;
  }

  .author-info p {
    text-align: center;
  }

  .partners-carousel {
    max-width: 100%;
  }

  .partner-logo {
    width: 300px;
    height: 300px;
  }

  .cta-content {
    max-width: 500px;
    padding: 0 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Centering */
  .hero-content {
    max-width: 400px;
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .approach-card {
    padding: 1.5rem 1rem;
  }

  .approach-card h3 {
    font-size: 1.3rem;
  }

  .approach-card p {
    font-size: 1.3rem;
  }

  .program-content {
    padding: 1.5rem 1rem;
  }

  .program-content h3 {
    font-size: 1.3rem;
  }

  .program-content p {
    font-size: 1.3rem;
  }

  .testimonial-item {
    padding: 1rem 0.75rem;
  }

  .testimonial-content p {
    font-size: 1.3rem;
  }

  .partner-logo {
    width: 250px;
    height: 250px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  margin: 0 auto;
  position: relative;
  height: auto;
  width: 100%;
  box-sizing: border-box;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2rem;
  flex-shrink: 0;
}

/* Logo - works for both <a><img class="logo"></a> and <div class="logo"><img></div> */
.navbar-brand .logo,
.navbar-brand img,
.logo img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.navbar-brand:hover img,
.logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-left: auto;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.nav-link {
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #2563eb;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e293b;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 1rem 2rem;
    padding: 1.5rem 2rem;
  }

  .logo {
    margin-right: 3rem;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 75px;
  }

  .nav-menu {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 1.25rem 2rem;
  }

  .logo {
    margin-right: 2.5rem;
  }

  .logo img {
    height: 80px;
    width: 80px;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 65px;
  }

  .nav-menu {
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    margin-right: 0;
  }

  .logo img {
    height: 80px;
    width: 80px;
    border: 2px solid rgba(255, 255, 255, 0.9);
  }

  .logo::after {
    font-size: 1.3rem;
    left: 60px;
  }

  .nav-menu {
    display: none; /* Hide desktop menu on mobile */
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 1rem;
  }

  .logo img {
    height: 70px;
    width: 70px;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 55px;
  }
}

@media (max-width: 480px) {
  .logo::after {
    display: none; /* Hide text on very small screens */
  }
}

/* Navigation Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 0.4rem 0;
    height: 45px;
  }

  .navbar-nav {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-link-booking {
    font-size: 1.3rem;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.3rem 0;
    height: 40px;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(30, 41, 59, 0.98)
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-brand img {
    height: 50px;
    width: 50px;
  }

  .navbar-nav {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-link-booking {
    font-size: 0.7rem;
    padding: 0.4rem;
  }

  /* Mobile navigation dark background */
  .navbar-collapse {
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(30, 41, 59, 0.98)
    );
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  /* Hamburger styling for dark background */
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.3rem;
  }

  .nav-link {
    color: #ffffff !important;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #ffffff !important;
    transform: translateX(5px);
  }

  .nav-link-booking {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white !important;
    margin-top: 0.3rem;
  }

  .nav-link-booking:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateX(5px);
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.25rem 0;
    height: 35px;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(30, 41, 59, 0.98)
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-brand img {
    height: 38px;
    width: 38px;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .nav-link-booking {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Prevent Content Overlap with Fixed Header */
body {
  margin: 0;
}

@media (max-width: 768px) {
  body {
    padding-top: 0px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 0;
  }
}

/* Navigation Responsive */
@media (max-width: 1200px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .logo {
    margin-right: 3rem;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 65px;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    margin-right: 2rem;
  }

  .logo img {
    height: 65px;
    width: 65px;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 60px;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 0.4rem 0;
  }

  /* Hero Slider Responsive */
  .slide-content {
    padding: 0 2rem;
  }

  .slide-text h1 {
    font-size: 2.8rem;
  }

  .slide-text p {
    font-size: 1.3rem;
  }

  .slide-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  .logo {
    margin-right: 0;
  }

  .logo img {
    height: 60px;
    width: 60px;
  }

  .logo::after {
    font-size: 1.3rem;
    left: 55px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Hero Slider Mobile */
  .slide-content {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .slide-text {
    max-width: 100%;
    order: 2;
  }

  .slide-image {
    max-width: 300px;
    order: 1;
    margin-bottom: 2rem;
  }

  .slide-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .slide-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
  }

  /* Section Spacing to Prevent Overlap */
  section {
    padding: 4rem 0;
    margin-top: 0;
  }

  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0.75rem 1rem;
    min-height: 70px;
  }

  .logo img {
    height: 35px;
    width: 35px;
  }

  .logo::after {
    font-size: 0.8rem;
    left: 50px;
  }

  /* Hero Slider Small Mobile */
  .slide-content {
    padding: 1.5rem 1rem;
  }

  .slide-text h1 {
    font-size: 1.8rem;
  }

  .slide-text p {
    font-size: 1.3rem;
  }

  .slide-image {
    max-width: 250px;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 1.3rem;
  }

  /* Tight Section Spacing */
  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  /* Partners Slider Mobile */
  .partners-carousel .owl-prev,
  .partners-carousel .owl-next {
    width: 40px;
    height: 40px;
  }

  .partner-logo {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .logo::after {
    display: none;
  }

  .slide-text h1 {
    font-size: 1.6rem;
  }

  .slide-text p {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  section {
    padding: 2.5rem 0;
  }
}

/* Prevent Content Overlap with Fixed Header */
body {
  padding-top: 80px;
}

body.home-page {
  padding-top: 0;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  body.home-page {
    padding-top: 0;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
  body.home-page {
    padding-top: 0;
  }
}

/* Enhanced Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #201f1f, #000000);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #000, #111);
}

.cta-button.primary {
  background: linear-gradient(135deg, #080808, #130f0f);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-button.accent {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button.accent:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.booking-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.booking-btn:hover::before {
  left: 100%;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }
  .section-header p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
}

.section-header p {
  font-size: 1.3rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Hero Sections for All Pages */
.about-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7584.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7510.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7616.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.volunteer-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7610.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7539.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero {
  min-height: 100vh;
  background: url("images/conference/IMG_7538.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/conference/IMG_7629.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.resources-hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/conference/IMG_7507.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero Content Styling */
.about-hero .hero-content,
.services-hero .hero-content,
.contact-hero .hero-content,
.volunteer-hero .hero-content,
.donate-hero .hero-content,
.blog-hero .hero-content,
.gallery-hero .hero-content,
.resources-hero .hero-content {
  max-width: 900px;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.about-hero .hero-content h1,
.services-hero .hero-content h1,
.contact-hero .hero-content h1,
.volunteer-hero .hero-content h1,
.donate-hero .hero-content h1,
.blog-hero .hero-content h1,
.gallery-hero .hero-content h1,
.resources-hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content p,
.services-hero .hero-content p,
.contact-hero .hero-content p,
.volunteer-hero .hero-content p,
.donate-hero .hero-content p,
.blog-hero .hero-content p,
.gallery-hero .hero-content p,
.resources-hero .hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .about-hero,
  .services-hero,
  .contact-hero,
  .volunteer-hero,
  .donate-hero,
  .blog-hero,
  .gallery-hero,
  .resources-hero {
    min-height: 80vh;
    background-attachment: scroll;
  }

  .about-hero .hero-content h1,
  .services-hero .hero-content h1,
  .contact-hero .hero-content h1,
  .volunteer-hero .hero-content h1,
  .donate-hero .hero-content h1,
  .blog-hero .hero-content h1,
  .gallery-hero .hero-content h1,
  .resources-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-hero .hero-content p,
  .services-hero .hero-content p,
  .contact-hero .hero-content p,
  .volunteer-hero .hero-content p,
  .donate-hero .hero-content p,
  .blog-hero .hero-content p,
  .gallery-hero .hero-content p,
  .resources-hero .hero-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about-hero .hero-content h1,
  .services-hero .hero-content h1,
  .contact-hero .hero-content h1,
  .volunteer-hero .hero-content h1,
  .donate-hero .hero-content h1,
  .blog-hero .hero-content h1,
  .gallery-hero .hero-content h1,
  .resources-hero .hero-content h1 {
    font-size: 2rem;
  }

  .about-hero .hero-content p,
  .services-hero .hero-content p,
  .contact-hero .hero-content p,
  .volunteer-hero .hero-content p,
  .donate-hero .hero-content p,
  .blog-hero .hero-content p,
  .gallery-hero .hero-content p,
  .resources-hero .hero-content p {
    font-size: 1.3rem;
  }
}

/* Hero Sections */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Home Page Sections */
.quick-intro {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  position: relative;
  overflow: visible;
}

.quick-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.intro-content {
  animation: slideInLeft 0.8s ease-out;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-card p,
.objectives-card li,
.mission-card p.intro-content p {
  color: #475569;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

.intro-image {
  animation: slideInRight 0.8s ease-out;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

/* Quick Intro - Responsive */
@media (max-width: 991px) {
  .quick-intro {
    padding: 4rem 0;
  }
  .quick-intro .row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .quick-intro .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .quick-intro .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  .quick-intro .intro-content h2 {
    font-size: 2rem;
  }
  .quick-intro .intro-image {
    order: -1;
  }
}

@media (max-width: 767px) {
  .quick-intro {
    padding: 3rem 0;
    overflow: visible;
  }
  .quick-intro .intro-content h2 {
    font-size: 1.75rem;
  }
  .quick-intro .intro-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .quick-intro {
    overflow: visible;
  }
}

/* Gender and Flood Resilience */
.gender-resilience {
  width: 100vw; /* force full viewport width */
  margin-left: calc(-50vw + 50%); /* breaks out of parent container */
  margin-right: calc(-50vw + 50%);
  padding: 4rem 0;
  background: #f0f9ff; /* just to see the full area */
}

.gender-resilience .container-fluid,
.gender-resilience .gender-resilience-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
  margin: 0 !important;
}
.gender-resilience-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.gender-resilience-content p {
  max-width: 100% !important; /* remove that 65ch limit from before */
}

/* Badge */
.gender-badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #0369a1;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.gender-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

/* Content Wrapper */
.gender-content-wrapper {
  padding-right: 2rem;
}

.gender-resilience-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gender-intro {
  font-size: 1.3rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Highlights Grid */
.gender-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gender-resilience-content p {
  font-size: 1.3rem;
  text-align: center;
}
.highlight-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: white;
  border-radius: 18px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.5),
    rgba(255, 255, 255, 0.5)
  );
  pointer-events: none;
}

.highlight-item:hover {
  border-left-color: #2563eb;
  box-shadow:
    0 12px 35px rgba(37, 99, 235, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateX(8px) translateY(-2px);
}

.highlight-item:nth-child(2):hover {
  border-left-color: #10b981;
  box-shadow:
    0 12px 35px rgba(16, 185, 129, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item:nth-child(3):hover {
  border-left-color: #f59e0b;
  box-shadow:
    0 12px 35px rgba(245, 158, 11, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
  font-size: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(16, 185, 129, 0.12)
  );
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.08) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18),
    rgba(16, 185, 129, 0.18)
  );
}

.highlight-item:nth-child(2) .highlight-icon {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.12),
    rgba(245, 158, 11, 0.12)
  );
}

.highlight-item:nth-child(2):hover .highlight-icon {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.18),
    rgba(245, 158, 11, 0.18)
  );
}

.highlight-item:nth-child(3) .highlight-icon {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(37, 99, 235, 0.12)
  );
}

.highlight-item:nth-child(3):hover .highlight-icon {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.18),
    rgba(37, 99, 235, 0.18)
  );
}

.highlight-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.highlight-text h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.highlight-text p {
  font-size: 0.975rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Visual Wrapper */
.gender-visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gender-accent-box {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.gender-accent-box::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #2563eb, #10b981, #2563eb);
  background-size: 200% 200%;
  animation: gradient 6s ease infinite;
  border-radius: 28px;
  z-index: 0;
  filter: blur(8px);
}

.accent-content {
  position: relative;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow:
    0 30px 60px rgba(37, 99, 235, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.06);
  z-index: 1;
  overflow: hidden;
}

.accent-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #10b981);
}

.accent-content h3 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.accent-content p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Commitment Stats */
.commitment-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-text {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 991px) {
  .gender-content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .gender-resilience-title {
    font-size: 2.3rem;
  }

  .gender-intro {
    font-size: 1.3rem;
  }

  .gender-visual-wrapper {
    justify-content: center;
  }

  .gender-accent-box {
    max-width: 380px;
  }
}

@media (max-width: 767px) {
  .gender-resilience {
    padding: 3.5rem 0;
  }

  .gender-resilience::before {
    width: 350px;
    height: 350px;
    right: 0%;
    top: -15%;
  }

  .gender-resilience::after {
    width: 250px;
    height: 250px;
    left: -5%;
    bottom: -10%;
  }

  .gender-resilience-title {
    font-size: 2rem;
  }

  .gender-intro {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }

  .highlight-item {
    padding: 1.5rem;
    gap: 1.2rem;
    border-left-width: 4px;
  }

  .highlight-item:hover {
    transform: translateX(6px) translateY(-1px);
  }

  .highlight-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }

  .highlight-text h4 {
    font-size: 1.3rem;
  }

  .highlight-text p {
    font-size: 0.95rem;
  }

  .gender-accent-box {
    max-width: 100%;
  }

  .accent-content {
    padding: 2.25rem;
  }

  .accent-content h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }

  .accent-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .commitment-stats {
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .gender-resilience {
    padding: 2.5rem 0;
  }

  .gender-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1rem;
  }

  .gender-resilience-title {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
  }

  .gender-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .gender-highlights {
    gap: 1rem;
  }

  .highlight-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
  }

  .highlight-item:hover {
    transform: translateX(4px) translateY(-1px);
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.25rem;
  }

  .highlight-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .highlight-text p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .accent-content {
    padding: 1.75rem;
  }

  .accent-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .accent-content p {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .commitment-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-text {
    font-size: 1.3rem;
  }
}

/* Impact Statistics */
.impact-statistics {
  padding: 6rem 0;
  background: #f0f9ff; /* just to see the full area */
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1rem;
  display: block;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Impact Statistics - Responsive */
@media (max-width: 991px) {
  .impact-statistics .row {
    gap: 1.5rem;
  }
  .impact-statistics .stat-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .impact-statistics {
    padding: 4rem 0;
  }
}

@media (max-width: 575px) {
  .impact-statistics .stat-card {
    padding: 1.5rem 1rem;
  }
  .impact-statistics .stat-number {
    font-size: 2.5rem;
  }
}

/* Approach Cards */
.our-approach {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.approach-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981, #34d399);
}

.approach-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.approach-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.approach-card p {
  color: #64748b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

.approach-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}

/* Our Approach - Responsive */
@media (max-width: 991px) {
  .our-approach {
    padding: 4rem 0;
  }
  .approach-card img {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .approach-card {
    padding: 1.5rem 1rem;
  }
  .approach-card img {
    height: 160px;
  }
}

/* Featured Programs */
.featured-programs {
  padding: 6rem 0;
  background: #f0f9ff; /* just to see the full area */
}

.program-card {
  background: #f0f9ff; /* just to see the full area */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-image {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 500px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 2rem;
}

.program-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.program-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #64748b;
}

.program-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.program-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
}

/* Featured Programs - Responsive */
@media (max-width: 991px) {
  .featured-programs {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .program-card {
    margin-bottom: 1rem;
  }
  .program-image {
    height: 500px;
    width: auto;
  }
  .program-content {
    padding: 1.5rem 1rem;
  }
}

/* Timeline Section */
.how-we-work {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  position: relative;
  width: 100%;
}

.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.timeline-content {
  position: relative;
  width: 45%;
  background: white;
  background: #f0f9ff; /* just to see the full area */
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.3rem;
}
.timeline-content p {
  font-size: 1.3rem;
}
.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

.timeline-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}

/* Timeline - Responsive */
@media (max-width: 991px) {
  .how-we-work {
    padding: 4rem 0;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .timeline {
    padding: 2rem 0;
  }

  .timeline::before {
    display: none;
  }
  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .timeline-content {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    box-sizing: border-box;
    margin: 0 auto;
    margin-left: 0px !important;
  }
  .timeline-number {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-content img {
    height: 160px;
  }
}

@media (max-width: 575px) {
  .timeline-item {
    padding-left: 0;
  }
  .timeline-number {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    left: 16px;
  }
}

/* Photo Gallery */
.photo-gallery {
  padding: 6rem 0;
  background: white;
}

.photo-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: scaleIn 0.6s ease-out;
  aspect-ratio: 1;
}

.photo-gallery .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Photo Gallery - Responsive */
@media (max-width: 991px) {
  .photo-gallery {
    padding: 4rem 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item img {
    height: 220px;
  }
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 3rem;
  color: #2563eb;
  opacity: 0.3;
  position: absolute;
}

.testimonial-content p::before {
  top: -1rem;
  left: -1rem;
}

.testimonial-content p::after {
  bottom: -2rem;
  right: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2563eb;
}

.author-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Testimonials - Responsive */
@media (max-width: 767px) {
  .testimonials {
    padding: 4rem 0;
  }
  .testimonials-slider {
    padding: 0 1rem;
  }
  .testimonial-item {
    padding: 2rem 1.5rem;
  }
  .testimonial-content p {
    font-size: 1.3rem;
  }
}

.partners {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  position: relative;
}

/* Modern Swiper-style Slider like GreenMaid Cleaners */
.partners-carousel {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-carousel .owl-stage-outer {
  padding: 2rem 0;
}

.partner-item {
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.partner-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .partner-logo {
    width: 220px;
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .partner-logo {
    width: 250px;
    height: 250px;
  }
}

.partner-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}

.partner-item:hover .partner-logo {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #2563eb;
}

.partner-item:hover .partner-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Modern Navigation Arrows */
.partners-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 2rem;
  box-sizing: border-box;
}

.partners-carousel .owl-prev,
.partners-carousel .owl-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  border: 2px solid rgba(37, 99, 235, 0.1);
}

.partners-carousel .owl-prev:hover,
.partners-carousel .owl-next:hover {
  background: #2563eb;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.partners-carousel .owl-prev:hover span,
.partners-carousel .owl-next:hover span {
  color: white;
}

.partners-carousel .owl-prev span,
.partners-carousel .owl-next span {
  font-size: 1.3rem;
  color: #2563eb;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Modern Dots */
.partners-carousel .owl-dots {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 0;
}

.partners-carousel .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.partners-carousel .owl-dot:hover {
  background: rgba(37, 99, 235, 0.4);
  transform: scale(1.2);
}

.partners-carousel .owl-dot.active {
  background: #2563eb;
  border-color: #2563eb;
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .partner-logo {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .partners-carousel {
    margin-top: 2rem;
  }

  .partner-logo {
    width: 300px;
    height: 300px;
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .partner-logo {
    width: 250px;
    height: 250px;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .partner-logo {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Circular on mobile */
    margin: 0 auto;
  }

  .partner-logo img {
    border-radius: 50%; /* Make image circular too */
    object-fit: cover;
  }

  /* Fix slider positioning on mobile */
  .partners-carousel {
    padding: 0 2rem; /* Add padding to prevent logo overlap */
    margin: 2rem -2rem 0 -2rem; /* Negative margins to maintain full width */
  }

  .owl-nav .owl-prev {
    margin-left: 1rem !important; /* Position arrows properly */
  }

  .owl-nav .owl-next {
    margin-right: 1rem !important; /* Position arrows properly */
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Keep circular on small mobile */
  }

  .partner-logo img {
    border-radius: 50%;
  }

  /* Further adjust slider for very small screens */
  .partners-carousel {
    padding: 0 1.5rem;
    margin: 2rem -1.5rem 0 -1.5rem;
  }

  .owl-nav .owl-prev {
    margin-left: 0.5rem !important;
  }

  .owl-nav .owl-next {
    margin-right: 0.5rem !important;
  }

  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/* Call to Action */
.call-to-action {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #2563eb, #10b981);
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.cta-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  background: white;
  color: #2563eb;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
}

.cta-buttons .cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .cta-button.secondary:hover {
  background: white;
  color: #2563eb;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #1e293b;
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Team Section */
.leadership {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  position: relative;
}

.team-grid {
  margin-top: 4rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #10b981, #f59e0b, #ef4444);
  background-size: 300% 100%;
  animation: gradient 4s ease infinite;
}

.team-member:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.member-photo {
  position: relative;
  overflow: hidden;
  width: min(180px, 70vw);
  aspect-ratio: 1 / 1;
  max-width: 180px;
  margin: 2rem auto 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.member-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-role {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
}

.member-bio {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  min-height: 80px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: linear-gradient(135deg, #2563eb, #10b981);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  border-color: #2563eb;
}

.social-link span {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-link:hover span {
  transform: scale(1.2);
}

/* Team Section Responsive */
@media (max-width: 768px) {
  .team-member {
    margin-bottom: 2rem;
  }

  .member-photo {
    width: min(160px, 60vw);
    max-width: 160px;
    margin-top: 1.5rem;
  }

  .member-info {
    padding: 1.5rem 1rem;
  }

  .member-info h3 {
    font-size: 1.3rem;
  }

  .member-bio {
    font-size: 0.8rem;
    min-height: 60px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .leadership {
    padding: 4rem 0;
  }

  .team-grid {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .member-photo {
    width: min(140px, 56vw) !important;
    max-width: 140px !important;
    height: min(140px, 56vw) !important;
    min-height: min(140px, 56vw) !important;
    margin-top: 1.25rem;
    border-radius: 50% !important;
    overflow: hidden !important;
  }

  .member-photo img {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .member-info {
    padding: 1rem 0.75rem;
  }

  .member-info h3 {
    font-size: 1.3rem;
  }

  .member-role {
    font-size: 0.875rem;
    padding: 0.2rem 0.8rem;
  }

  .member-bio {
    font-size: 1.3rem;
    min-height: 50px;
    line-height: 1.4;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: span 2;
  }

  .footer-section:last-child {
    grid-column: span 2;
  }

  /* Center all footer content on mobile */
  .footer-section {
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo h3 {
    text-align: center;
  }

  .footer-logo p {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section h4 {
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding-left: 0;
  }

  .footer-links li {
    text-align: center;
  }

  .footer-links a {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-optical-sizing: auto;
  }

  .contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .contact-details {
    text-align: center;
  }

  .contact-details p,
  .contact-details a {
    text-align: center;
  }

  .contact-details strong {
    text-align: center;
  }

  .footer-bottom-content {
    justify-content: center;
    text-align: center;
  }

  /* Fix any footer images */
  .footer img {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* Remove any weird footer images on mobile */
  .footer img:not(.logo img):not([alt*="logo"]) {
    display: none;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section:first-child,
  .footer-section:last-child {
    grid-column: span 1;
  }

  /* Continue centering on small mobile */
  .footer-section {
    text-align: center;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .contact-info {
    gap: 1rem;
  }

  .contact-item {
    gap: 0.75rem;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }

  .contact-details p {
    font-size: 0.8rem;
  }

  .contact-details strong {
    font-size: 0.875rem;
  }
}

/* Comprehensive Mobile Professional Styling */
@media (max-width: 768px) {
  /* Forms Mobile Styling */
  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.8;
    font-optical-sizing: auto;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.3rem;
    line-height: 1.8;
    font-optical-sizing: auto;
    transition: all 0.3s ease;
    background: white;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
  }

  .checkbox-group label {
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.8;
    font-optical-sizing: auto;
    color: #64748b;
  }

  .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
  }

  .btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  }

  /* Professional Section Spacing */
  section {
    padding: 0;
  }

  .section-header {
    background: #f0f9ff; /* just to see the full area */
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-header p {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.6;
  }

  /* Cards and Content Boxes */
  .card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
  }

  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .card p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    color: #64748b;
  }

  /* Lists and Navigation */
  ul,
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
  }

  th,
  td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
  }

  th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
  }

  /* Images and Media */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  /* Quotes and Testimonials */
  blockquote {
    border-left: 4px solid #2563eb;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
    font-style: italic;
  }

  /* Alerts and Messages */
  .alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .alert-success {
    background: #10b981;
    color: white;
  }

  .alert-error {
    background: #ef4444;
    color: white;
  }

  .alert-info {
    background: #2563eb;
    color: white;
  }
}

/* Form Responsive */
@media (max-width: 768px) {
  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 1.3rem;
    padding: 1rem;
  }

  textarea {
    min-height: 120px;
  }

  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 1rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    padding: 0.875rem;
    font-size: 1.3rem;
  }

  textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1.3rem;
  }
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    margin-bottom: 1.5rem;
  }

  .blog-card h3 {
    font-size: 1.3rem;
  }

  .blog-card p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .blog-card {
    padding: 1rem;
  }

  .blog-card h3 {
    font-size: 1.3rem;
  }

  .blog-card p {
    font-size: 0.8rem;
  }
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-categories {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .gallery-categories {
    justify-content: center;
  }

  .category-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Resources Responsive */
@media (max-width: 768px) {
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .resource-card {
    padding: 1.5rem;
  }

  .resource-card h3 {
    font-size: 1.3rem;
  }

  .resource-card p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .resource-card {
    padding: 1rem;
  }

  .resource-card h3 {
    font-size: 1.3rem;
  }

  .resource-card p {
    font-size: 0.8rem;
  }
}

/* Enhanced Mobile Menu Overlay */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(30, 41, 59, 0.98)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.1rem;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 5rem 1rem 1.5rem;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  }

  .nav-link.active {
    background: rgba(37, 99, 235, 0.2);
    color: #2563eb !important;
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile close handled by hamburger only - no duplicate X */

  /* Menu Header - TODFCO label removed */
  .nav-menu::after {
    content: none;
    display: none;
  }

  /* Body scroll lock */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile menu – phones only, compact to fit all items */
@media (max-width: 480px) {
  .nav-menu {
    gap: 0.05rem;
    padding: 4rem 0.5rem 1rem;
  }
  .nav-link {
    font-size: 0.875rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 360px) {
  .nav-menu {
    gap: 0.3rem;
    padding: 3.5rem 0.4rem 0.75rem;
  }
  .nav-link {
    font-size: 1.3rem;
    padding: 0.3rem 0.5rem;
  }
}

/* Responsive Design - Small Tablets and Large Phones */
@media (max-width: 576px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo img {
    height: 70px;
    width: 70px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .approach-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .approach-card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .program-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .program-card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    text-align: left !important;
    padding: 1rem;
  }

  .timeline-number {
    left: 20px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    margin-bottom: 1rem;
  }

  .testimonial-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-content {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .testimonial-author h4 {
    font-size: 1.3rem;
  }

  .testimonial-author p {
    font-size: 0.8rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partner-item {
    padding: 1rem;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    gap: 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}

/* Responsive Design - Small Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .logo img {
    height: 45px;
    width: 45px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .stat-number {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .stat-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .approach-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .approach-card p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .program-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .program-card p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    padding: 0.75rem;
  }

  .timeline-number {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .testimonial-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .testimonial-content {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .testimonial-author h4 {
    font-size: 1.3rem;
  }

  .testimonial-author p {
    font-size: 1.3rem;
  }

  .partner-item {
    padding: 0.75rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .cta-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1.3rem;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }

  /* Mobile menu adjustments for small screens */

  .nav-link {
    font-size: 1.3rem;
    padding: 0.875rem;
  }
}

/* Responsive Design - Extra Small Phones */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .section-header h2 {
    font-size: 1.375rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .approach-card h3,
  .program-card h3 {
    font-size: 1.3rem;
  }

  .approach-card p,
  .program-card p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 1.3rem;
  }

  .testimonial-content {
    font-size: 1.3rem;
  }

  .cta-content h2 {
    font-size: 1.375rem;
  }

  .cta-content p {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 1.3rem;
  }
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.8);
  transform: scale(1.1);
  border-color: rgba(239, 68, 68, 0.5);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-image-container {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.gallery-lightbox.active .lightbox-image-container img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.lightbox-loading.active {
  display: block;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lightbox-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease 0.2s;
}

.gallery-lightbox.active .lightbox-info {
  transform: translateY(0);
  opacity: 1;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.lightbox-info p {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.lightbox-info span {
  font-size: 0.875rem;
  color: #94a3b8;
}

.lightbox-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(37, 99, 235, 0.8);
  transform: scale(1.1);
  border-color: rgba(37, 99, 235, 0.5);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

.lightbox-counter {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-info {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }

  .lightbox-info h3 {
    font-size: 1.3rem;
  }

  .lightbox-info p {
    font-size: 0.875rem;
  }

  .lightbox-info span {
    font-size: 1.3rem;
  }

  .lightbox-navigation {
    padding: 0 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-counter {
    top: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .lightbox-image-container {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-close {
    width: 35px;
    height: 35px;
  }

  .lightbox-close svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-info {
    padding: 0.75rem;
  }

  .lightbox-info h3 {
    font-size: 1.3rem;
  }

  .lightbox-info p {
    font-size: 0.8rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 35px;
    height: 35px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 18px;
    height: 18px;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ===== Donate Page Styles ===== */
.donation-impact {
  padding: 5rem 0;
  background: #f8fafc;
}

.impact-cards .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.impact-cards .row > [class*="col-"] {
  flex: 1 1 200px;
  max-width: 280px;
  padding-left: 0;
  padding-right: 0;
}

.impact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 200px;
  max-width: 280px;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.impact-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
}

.impact-description h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.impact-description p {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.5;
}

.donation-options {
  padding: 5rem 0;
  background: white;
}

.donation-methods .row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.donation-methods .row > [class*="col-"] {
  flex: 1 1;
  padding-left: 0;
  padding-right: 0;
}

.donation-method {
  height: 100%;
  background: #f8fafc;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.donation-method:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.method-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.donation-method h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.donation-method > p {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.method-details {
  text-align: left;
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
}

.payment-info {
  color: #475569;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.payment-info strong {
  color: #1e293b;
}

.online-donate-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.online-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.payment-note {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.recurring-donations {
  padding: 5rem 0;
  background: #f8fafc;
}

.recurring-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.recurring-info,
.recurring-form {
  flex: 1 1 400px;
}

.recurring-info h3,
.recurring-form h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.recurring-info ul,
.recurring-form ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.recurring-info li {
  margin-bottom: 0.5rem;
  color: #475569;
  line-height: 1.6;
}

.recurring-benefits {
  margin-top: 2rem;
}

.recurring-benefits h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.recurring-form {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.recurring-form .form-group {
  margin-bottom: 1.25rem;
}

.recurring-form .form-group label {
  display: block;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.recurring-form .form-group input,
.recurring-form .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
  background: white;
  transition: all 0.2s ease;
}

.recurring-form .form-group input:focus,
.recurring-form .form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.recurring-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.recurring-form .checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.recurring-form .cta-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.one-time-donation {
  padding: 5rem 0;
  background: white;
}

.donation-form-container {
  max-width: 720px;
  margin: 0 auto;
}

.donation-form {
  background: #f8fafc;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border: 1px solid #e2e8f0;
}

.donation-amounts {
  margin-bottom: 2.5rem;
}

.donation-amounts h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.amount-option {
  position: relative;
}

.amount-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.amount-option label {
  display: block;
  padding: 0.875rem 1rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #475569;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amount-option label:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.amount-option input:checked + label {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-weight: 600;
}

.custom-amount-input {
  margin-top: 1rem;
}

.custom-amount-input input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.3rem;
}

.custom-amount-input input:focus {
  outline: none;
  border-color: #2563eb;
}

.donation-details {
  margin-bottom: 2rem;
}

.donation-details .form-group {
  margin-bottom: 1.25rem;
}

.donation-details .form-group label {
  display: block;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.donation-details .form-group input,
.donation-details .form-group select,
.donation-details .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
  background: white;
  transition: all 0.2s ease;
}

.donation-details .form-group input:focus,
.donation-details .form-group select:focus,
.donation-details .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.donation-details .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.donation-details .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.donation-details .checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.donation-details .checkbox-group label {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #475569;
  margin-bottom: 0;
}

.donation-actions {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.donation-actions .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 10px;
}

.security-note {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
  margin-bottom: 0;
}

.corporate-giving {
  padding: 5rem 0;
  background: #f8fafc;
  display: flex;
}

.corporate-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 90%;
}

.corporate-info,
.corporate-contact {
  flex: 1 1 400px;
}

.corporate-info h3,
.corporate-contact h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.corporate-info h4,
.corporate-contact h4 {
  font-size: 1.6rem;
  color: #000 !important;
  margin: 1.5rem 0 0.75rem;
}

.corporate-info ul,
.corporate-contact ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.corporate-info li,
.corporate-contact li {
  margin-bottom: 0.5rem;
  color: #475569;
  line-height: 1.6;
}

.corporate-contact {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-info {
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.hero-donation {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: inline-block;
}

.donation-amount {
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .donation-impact,
  .donation-options,
  .recurring-donations,
  .one-time-donation,
  .corporate-giving {
    padding: 3.5rem 0;
  }

  .donation-form {
    padding: 1.75rem 1.5rem;
  }

  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .recurring-form {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .amount-options {
    grid-template-columns: 1fr;
  }

  .impact-card {
    max-width: 100%;
  }

  .donation-method {
    max-width: 100%;
  }
}

/* Print Styles */
@media print {
  .header,
  .hamburger,
  .whatsapp-float {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .cta-button {
    border: 1px solid #2563eb;
    background: white !important;
    color: #2563eb !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
.cta-button:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .cta-button {
    border: 2px solid currentColor;
  }

  .stat-card,
  .approach-card,
  .program-card {
    border: 2px solid #1e293b;
  }
}

/* Hero Slider - Swiper.js */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 480px;
  overflow: hidden;
  background: #0f172a;
  margin: 0;
  display: block;
}

/* Site Name Highlight under slider */
.site-name-highlight {
  background: linear-gradient(135deg, #0b1120, #020617);
  color: #e5f2ff;
  padding: 0.5rem 1rem;

  text-align: center;
}

.site-name-inner {
  max-width: 500px;
  margin: 0 auto;
}

.site-name-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.site-name-tagline {
  font-size: 1.3rem !important;
  margin-bottom: 35px !important;
  line-height: 1.6 !important;
  color: #06f8a7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-name-highlight {
    padding: 2rem 1.25rem;
  }

  .site-name-title {
    font-size: 1.65rem;
  }

  .site-name-tagline {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .site-name-highlight {
    padding: 1.75rem 1.25rem;
  }

  .site-name-title {
    font-size: 1.45rem;
  }

  .site-name-tagline {
    font-size: 0.95rem;
  }
}

/* ===== FEATURED VIDEO SECTION ===== */
.featured-video-section {
  background: linear-gradient(
    160deg,
    #0b1120 0%,
    #020617 60%,
    #0b1120 100%
  ) !important;
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.featured-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06f8a7, transparent);
  opacity: 0.6;
}

.featured-video-header {
  margin-bottom: 2.5rem;
}

.featured-video-header h2 {
  color: #ffffff !important;
}

.featured-video-header p,
.featured-video-section .section-header p {
  color: #ffffff !important;
}

.featured-video-wrapper {
  max-width: 90%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(6, 248, 167, 0.15);
  position: relative;
}

/* 16:9 responsive ratio */
.featured-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.featured-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .featured-video-section {
    padding: 4rem 0 3.5rem;
  }

  .featured-video-wrapper {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .featured-video-section {
    padding: 3rem 0 2.5rem;
  }

  .featured-video-wrapper {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===== HERO SLIDER ===== */
body {
  margin: 0;
}

section#home {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#home .swiper-container,
#home .swiper,
.swiper-container {
  text-align: center;
  margin-top: 0px !important;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
  transition: transform 6s ease;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px; /* push content below the fixed header */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 5;
  box-sizing: border-box;
}

.slide-content {
  color: #0f172a;
  padding: 0 8%;
  max-width: 750px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slide-content h1 {
  font-size: 3rem !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #fff;
}

.slide-content p {
  font-size: 1.5rem !important;
  margin-bottom: 35px !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
  max-width: 550px !important;
  color: #06f8a7;
  font-weight: 600;
}

.btn-slider {
  display: inline-block;
  background: #adff2f;
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid #adff2f;
  transition: all 0.3s ease;
}

.btn-slider:hover {
  background: transparent;
  color: #adff2f;
}

/* Prev / Next buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(173, 255, 47, 0.7);
  color: #000;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #adff2f;
  transform: scale(1.25);
}

/* Mobile */
@media (max-width: 768px) {
  #home {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  #home .swiper-container,
  #home .swiper,
  .swiper-container {
    margin-top: 0px;
  }

  .hero-slider {
    width: 100%;
    height: 100svh;
    min-height: 480px;
  }

  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .slide-content {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .slide-content h1 {
    font-size: 1.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }
  .slide-content p {
    font-size: 1.3rem !important;
    margin-bottom: 24px !important;
    max-width: 100% !important;
  }
  .slide-overlay {
    padding-top: 70px;
    align-items: center;
    justify-content: center;
  }
  .btn-slider {
    padding: 11px 28px;
    font-size: 1.3rem;
  }
  .slider-prev,
  .slider-next {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  #home {
    padding: 0 !important;
    margin: 0 !important;
  }

  #home .swiper-container,
  #home .swiper,
  .swiper-container {
    margin-top: 0;
  }

  .hero-slider {
    width: 100%;
    height: 100svh;
    min-height: 480px;
  }

  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .slide-content h1 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  .slide-content p {
    font-size: 1.3rem !important;
    margin-bottom: 20px !important;
  }
}

/* Services Preview */
.services-preview {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-preview h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-weight: 700;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* Service Page Images */
.climate-image,
.capacity-image,
.disaster-image,
.humanitarian-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.climate-image img,
.capacity-image img,
.disaster-image img,
.humanitarian-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.climate-image:hover img,
.capacity-image:hover img,
.disaster-image:hover img,
.humanitarian-image:hover img {
  transform: scale(1.05);
}

/* Service Page Content Sections */
.disaster-risk-reduction,
.flood-preparedness,
.climate-environment,
.capacity-building,
.humanitarian-response {
  padding: 3rem 0;
  background: #f8fafc;
}
.climate-environment p {
  font-size: 1.3rem !important;
}
.disaster-risk-reduction .row,
.flood-preparedness .row,
.climate-environment .row,
.capacity-building .row,
.humanitarian-response .row {
  align-items: center;
  row-gap: 2.5rem;
}
.section-header p {
  font-size: 1.4rem !important;
  line-height: 1.7;
}
.service-content {
  padding-right: 2rem;
  font-size: 1.3rem;
  line-height: 1.7;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

.risk-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.75rem 0 1rem;
}

.risk-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.risk-item h4 {
  color: #222 !important;
  font-size: 1.6rem;
}
.flood-cards {
  margin-top: 2.5rem;
}

.flood-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flood-card .card-icon span {
  font-size: 2rem;
}

.flood-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.emergency-response {
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center; /* center the text itself */
  padding: 3rem 1rem;
}

.emergency-response .response-content {
  width: 100%;
}
.response-content {
  color: #040405;
}

.response-content h3 {
  color: #101113;
  font-size: 1.4rem !important;
}

.response-content p {
  color: #0d0e0f;
  font-size: 1.3rem;
}

/* Humanitarian response final section */
.humanitarian-cards {
  margin-top: 2.5rem;
}

.humanitarian-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  text-align: left;
}

.humanitarian-card .card-icon span {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.humanitarian-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.humanitarian-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.98rem;
}

.recovery-approach {
  margin-top: 3rem;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center; /* center the text itself */
  box-flex-group: inherit;
}

.recovery-content {
  width: 100%;
}

.recovery-content h3 {
  margin-bottom: 1rem;
  color: #040405;
  font-size: 1.4rem !important;
}

.recovery-content p {
  color: #040405;
  line-height: 1.7;
  font-size: 1.3rem !important;
}

.capacity-grid {
  margin-top: 2.5rem;
}

.capacity-media {
  display: flex;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
  height: 100%;
  align-items: stretch;
}

.capacity-image {
  flex: 0 0 32%;
  border-radius: 16px;
  overflow: hidden;
}

.capacity-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.capacity-text h3 {
  margin-bottom: 0.75rem;
}

.capacity-text p {
  margin-bottom: 0;
}

.climate-content,
.capacity-content,
.disaster-content,
.humanitarian-content {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.climate-icons,
.capacity-icons,
.disaster-icons,
.humanitarian-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.climate-icons h4 {
  color: #222 !important
  ;
  font-size: 1.4rem;
}
.climate-item,
.capacity-item,
.disaster-item,
.humanitarian-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.climate-item:hover,
.capacity-item:hover,
.disaster-item:hover,
.humanitarian-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.climate-item span,
.capacity-item span,
.disaster-item span,
.humanitarian-item span {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.climate-item h4,
.capacity-item h4,
.disaster-item h4,
.humanitarian-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.climate-item p,
.capacity-item p,
.disaster-item p,
.humanitarian-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .service-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .service-image {
    max-width: 520px;
    margin: 0 auto;
  }

  .capacity-media {
    flex-direction: column;
  }

  .capacity-image img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .disaster-risk-reduction,
  .flood-preparedness,
  .climate-environment,
  .capacity-building,
  .humanitarian-response {
    padding: 3.5rem 0;
  }

  .risk-components {
    grid-template-columns: 1fr;
  }

  .response-content {
    padding: 2rem 1.5rem;
  }

  .capacity-media {
    gap: 1.25rem;
  }
}

/* Service Page Responsive */
@media (max-width: 768px) {
  .climate-image,
  .capacity-image,
  .disaster-image,
  .humanitarian-image {
    height: 300px;
    margin-bottom: 1.5rem;
  }

  .climate-content,
  .capacity-content,
  .disaster-content,
  .humanitarian-content {
    padding: 1.5rem;
  }

  .climate-icons,
  .capacity-icons,
  .disaster-icons,
  .humanitarian-icons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .climate-item,
  .capacity-item,
  .disaster-item,
  .humanitarian-item {
    padding: 1rem;
  }

  .climate-item span,
  .capacity-item span,
  .disaster-item span,
  .humanitarian-item span {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .climate-image,
  .capacity-image,
  .disaster-image,
  .humanitarian-image {
    height: 250px;
    margin-bottom: 1rem;
  }

  .climate-content,
  .capacity-content,
  .disaster-content,
  .humanitarian-content {
    padding: 1rem;
  }

  .climate-item span,
  .capacity-item span,
  .disaster-item span,
  .humanitarian-item span {
    font-size: 2rem;
  }
}
/* General Image Fixes for Mobile */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix for any unstyled images at page ends */
section img:not([class]):not([alt=""]),
div img:not([class]):not([alt=""]) {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

/* Mobile specific image fixes */
@media (max-width: 768px) {
  img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }

  section img:not([class]):not([alt=""]),
  div img:not([class]):not([alt=""]) {
    margin: 0.5rem 0;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  section img:not([class]):not([alt=""]),
  div img:not([class]):not([alt=""]) {
    border-radius: 4px;
    margin: 0.25rem 0;
  }
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-weight: 700;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 0 2rem;
  text-align: left;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-info p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.footer-contact h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.contact-icon {
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
}

.phone-link {
  color: #25d366;
}

.phone-link:hover {
  color: #128c7e;
  transform: translateY(-2px);
}

.email-link {
  color: #3b82f6;
}

.email-link:hover {
  color: #2563eb;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slide-text h1 {
    font-size: 2.5rem;
  }

  .slide-text p {
    font-size: 1.3rem;
  }

  .nav-container {
    padding: 1.5rem 2rem;
  }

  .slider-controls {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-info p {
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-items {
    align-items: center;
    justify-content: center;
  }

  .slide-text h1 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 0.95rem;
  }

  .slide-text {
    padding: 0 2rem;
    max-width: 100%;
  }

  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.98),
      rgba(30, 41, 59, 0.98)
    ) !important;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    gap: 0.1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    color: #ffffff !important;
  }

  .contact-items {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .contact-link {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .slide-text {
    padding: 4rem 2rem;
    max-width: 100%;
  }

  .slide-text h1 {
    font-size: 2.5rem;
  }

  .slide-text p {
    font-size: 1.3rem;
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
  }

  .slider-controls {
    padding: 0 1rem;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-preview h2 {
    font-size: 2.5rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .slide-text h1 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }

  .service-card {
    padding: 2rem;
  }
}

/* Premium Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
  animation: slideInFromLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-premium {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128c7e, #0b5a4e);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

/* Pulse animation for attention */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* Enhanced Professional Footer */
.footer {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: whitesmoke !important;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.75rem;
}

/* .footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #2563eb, #10b981);
} */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-logo h3 {
  color: #f5f5f5 !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-logo p {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.5;
}
.footer-description p {
  font-size: 1.3rem !important;
  line-height: 1.4;
  font-weight: 400;
  font-optical-sizing: auto;
  color: whitesmoke !important;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border-color: #2563eb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  font-optical-sizing: auto;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: -15px;
  color: #2563eb;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details {
  flex: 1;
}

.contact-details p,
.contact-details a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  font-optical-sizing: auto;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover {
  color: #2563eb;
}

.contact-details strong {
  color: white;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-bottom .copyright {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: var(--blue);
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: span 2;
  }

  .footer-section:last-child {
    grid-column: span 2;
  }

  .footer-bottom-content {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section:first-child,
  .footer-section:last-child {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section:first-child,
  .footer-section:last-child {
    grid-column: span 1;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Inner Pages: Typography, Spacing, Colors (non-index) ===== */

/* Unified typography & colors for body.inner-page */
body.inner-page .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.inner-page .section-header p {
  color: #64748b;
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

body.inner-page section p,
body.inner-page .member-bio,
body.inner-page .impact-description p,
body.inner-page .donation-method > p,
body.inner-page .service-content p,
body.inner-page .intro-content p,
body.inner-page .accordion-content p,
body.inner-page .accordion-content ul,
body.inner-page .risk-item p,
body.inner-page .flood-card p,
body.inner-page .benefit-card p,
body.inner-page .opportunity-card p,
body.inner-page .contact-card p,
body.inner-page .guide-card p,
body.inner-page .resource-card p {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #475569;
}

body.inner-page h3,
body.inner-page .member-info h3,
body.inner-page .impact-description h3,
body.inner-page .donation-method h3,
body.inner-page .contact-card h3,
body.inner-page .guide-card h3,
body.inner-page .resource-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
}

body.inner-page h4,
body.inner-page .risk-item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: whitesmoke;
}

body.inner-page .intro-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Consistent paragraph spacing */
body.inner-page section p,
body.inner-page .intro-content p,
body.inner-page .member-bio {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

body.inner-page section p:last-child,
body.inner-page .member-bio:last-of-type {
  margin-bottom: 0;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-optical-sizing: auto;
}

/* Consistent accent colors across inner pages */
body.inner-page .member-role,
body.inner-page .impact-amount {
  color: #2563eb;
}

body.inner-page section {
  padding: 5rem 0;
}

@media (max-width: 991px) {
  body.inner-page section {
    padding: 4rem 0;
  }
  body.inner-page .section-header h2 {
    font-size: 2rem;
  }
  body.inner-page .section-header p {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  body.inner-page section {
    padding: 3rem 0;
  }
  body.inner-page .section-header h2 {
    font-size: 1.75rem;
  }
  body.inner-page .section-header p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-optical-sizing: auto;
  }
  body.inner-page section p,
  body.inner-page .member-bio,
  body.inner-page .impact-description p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-optical-sizing: auto;
  }
}

@media (max-width: 480px) {
  body.inner-page .section-header h2 {
    font-size: 1.5rem;
  }
  body.inner-page .section-header p {
    font-size: 1.3rem;
  }
}

/* Hero content animation */
.about-hero .hero-content,
.services-hero .hero-content,
.contact-hero .hero-content,
.donate-hero .hero-content,
.volunteer-hero .hero-content,
.blog-hero .hero-content,
.gallery-hero .hero-content,
.resources-hero .hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Section headers - consistent spacing */
body.inner-page .section-header {
  margin-bottom: 2.5rem;
}

/* Gallery category tabs - responsive */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0;
}

.category-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background: white;
  font-weight: 600;
  font-size: 1.3rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.category-tab:hover,
.category-tab.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border-color: #2563eb;
}

/* Map container - responsive */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  min-height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact cards grid - responsive */
.contact-information .contact-cards .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.emergency-contacts .contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-information .contact-card,
.emergency-contacts .contact-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-information .contact-card:hover,
.emergency-contacts .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ===== Contact Page Styles ===== */
.contact-information {
  background: #f8fafc;
}

.contact-information .contact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-information .contact-card .card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.contact-information .contact-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-information .contact-card p {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.6;
}

.contact-information .contact-card p:last-child {
  margin-bottom: 0;
  font-size: 1.3rem;
  color: #64748b;
}

.contact-information .contact-card a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.contact-information .contact-card a:hover {
  text-decoration: underline;
}

/* Contact form section */
.contact-form-section {
  background: white;
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Additional contact options */
.additional-contact {
  background: #f8fafc;
}

.contact-options .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.contact-option {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex: 1 1 200px;
  max-width: 280px;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.contact-option .option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-option h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-option p {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.option-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.option-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
}

/* Emergency banner */
.emergency-banner {
  background: linear-gradient(135deg, #cacaca, #dadada);
  padding: 2rem;
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.emergency-icon {
  font-size: 3rem;
}

.emergency-text h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin: 0;
}

.emergency-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #dc2626;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.emergency-btn:hover {
  background: #fef2f2;
  transform: scale(1.05);
}

/* Google map section */
.google-map {
  background: white;
}

/* Contact page responsive */
@media (max-width: 991px) {
  .contact-information .contact-cards .row > [class*="col-"],
  .contact-options .row > [class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-option {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-information .contact-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
  }

  .emergency-text h3 {
    font-size: 1.3rem;
  }

  .emergency-btn {
    font-size: 1.3rem;
    padding: 0.875rem 1.5rem;
  }

  .map-container {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-information .contact-card {
    padding: 1.25rem 1rem;
  }

  .contact-information .contact-card .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-option {
    padding: 1.5rem 1rem;
  }

  .emergency-banner {
    padding: 1.5rem 1rem;
  }

  .emergency-btn {
    font-size: 1.3rem;
  }

  .map-container {
    min-height: 220px;
  }
}

/* ===== Resources Page Styles ===== */
.emergency-contacts {
  background: #f8fafc;
  padding: 5rem 0;
}

.emergency-contacts .contact-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.emergency-contacts .contact-card.urgent {
  border-left: 4px solid #dc2626;
  background: linear-gradient(135deg, #fef2f2 0%, white 100%);
}

.emergency-contacts .contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.emergency-contacts .contact-card.urgent .contact-icon {
  background: rgba(220, 38, 38, 0.15);
}

.emergency-contacts .contact-info h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.emergency-contacts .contact-number a {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}

.emergency-contacts .contact-number a:hover {
  text-decoration: underline;
}

.emergency-contacts .contact-info p {
  font-size: 1.3rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Disaster guides grid */
.disaster-guides {
  background: white;
  padding: 5rem 0;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.guide-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.guide-card .guide-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.guide-card p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.guide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.guide-features span {
  font-size: 0.8125rem;
  color: #64748b;
  background: white;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
}

.download-btn {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
}

/* Training materials */
.training-materials {
  background: #f8fafc;
  padding: 5rem 0;
}

.training-category h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.training-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.3s ease;
}

.training-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.training-item .item-icon {
  font-size: 2rem;
  min-width: 48px;
  text-align: center;
}

.training-item .item-content h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.training-item .item-content p {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.item-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.item-details span {
  font-size: 0.8125rem;
  color: #64748b;
}

.access-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.access-btn:hover {
  background: #2563eb;
  color: white;
}

/* Early warning section */
.early-warning {
  background: white;
  padding: 5rem 0;
}

.warning-system {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.warning-system:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.warning-system .system-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.warning-system h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.warning-system > p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.system-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.system-features li {
  font-size: 1.3rem;
  color: #64748b;
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.system-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.alert-signup {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.alert-signup input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.3rem;
}

.alert-signup button {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.system-info p,
.portal-link {
  font-size: 0.875rem;
  color: #64748b;
}

.portal-link {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
}

.portal-link:hover {
  text-decoration: underline;
}

/* Legal documents */
.legal-documents {
  background: #f8fafc;
  padding: 5rem 0;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.document-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.document-card .document-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.document-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.document-card p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.document-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}

.document-info span {
  font-size: 0.8125rem;
  color: #64748b;
}

/* FAQ section */
.faq-section {
  background: white;
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: #f8fafc;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: #f1f5f9;
}

.faq-item.active .faq-header {
  background: rgba(37, 99, 235, 0.05);
}

.faq-header h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-content p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
}

/* Resources page responsive */
@media (max-width: 991px) {
  .guides-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .documents-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .training-categories .row > [class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .emergency-contacts,
  .disaster-guides,
  .training-materials,
  .early-warning,
  .legal-documents,
  .faq-section {
    padding: 3rem 0;
  }

  .emergency-contacts .contacts-grid {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .guide-card {
    padding: 1.5rem;
  }

  .training-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .warning-systems .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    padding: 1.5rem;
  }

  .faq-header {
    padding: 1rem 1.25rem;
  }

  .faq-header h3 {
    font-size: 1.3rem;
  }

  .alert-signup {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .emergency-contacts .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .emergency-contacts .contact-icon {
    margin: 0 auto;
  }

  .guide-card {
    padding: 1.25rem;
  }

  .training-item {
    padding: 1.25rem;
  }

  .warning-system {
    padding: 1.5rem;
  }

  .document-card {
    padding: 1.25rem;
  }

  .faq-content p {
    padding: 0 1.25rem 1rem;
  }
}

/* Impact cards - mobile stacking */
@media (max-width: 767px) {
  .impact-cards .row > [class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .impact-card {
    max-width: 100%;
  }
}

/* Donation methods - mobile */
@media (max-width: 767px) {
  .donation-methods .row > [class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Touch-friendly tap targets (44px min) */
@media (pointer: coarse) {
  .category-tab,
  .cta-button,
  .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .about-hero .hero-content h1,
  .services-hero .hero-content h1,
  .contact-hero .hero-content h1,
  .donate-hero .hero-content h1,
  .volunteer-hero .hero-content h1,
  .blog-hero .hero-content h1,
  .gallery-hero .hero-content h1,
  .resources-hero .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.6 !important;
    font-weight: 600;
  }

  .category-tabs {
    gap: 0.5rem;
  }

  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* Flood, benefit & opportunity cards - consistent hover */
.flood-card,
.benefit-card,
.opportunity-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.flood-card:hover,
.benefit-card:hover,
.opportunity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive: flood/benefit cards on small screens */
@media (max-width: 767px) {
  .flood-cards .col-md-4,
  .volunteer-benefits .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

/* ===== Volunteer Page Styles ===== */
.why-volunteer {
  background: #f8fafc;
}

.why-volunteer .benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.why-volunteer .benefit-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.why-volunteer .benefit-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.why-volunteer .benefit-card p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Volunteer opportunities */
.volunteer-opportunities {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.opportunity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.opportunity-header h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin: 0;
}

.opportunity-type {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border-radius: 50px;
}

.opportunity-content {
  padding: 1.5rem;
}

.opportunity-content > p {
  color: #475569;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #334155;
  font-weight: 400;
  font-optical-sizing: auto;
}

.opportunity-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.3rem;
  line-height: 1.9;
  font-weight: 700;
  font-optical-sizing: auto;
  color: #222;
}

.opportunity-details span::before {
  margin-right: 0.35rem;
}

.time-commitment::before {
  content: "🕐";
}

.location::before {
  content: "📍";
}

.opportunity-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-tasks li {
  font-size: 1.3;
  color: #475569 !important;
  position: relative;
  line-height: 1.5 !important;
  margin-bottom: 0.75rem !important;
  font-weight: 400;
  font-optical-sizing: auto;
  list-style-type: circle;
  padding-left: 15px;
}

/* Volunteer requirements */
.volunteer-requirements {
  background: #f8fafc;
}

.requirements-content {
  gap: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.requirements-list {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.requirements-list h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #2563eb;
}

.requirements-list ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0.5rem;
  color: #334155;
  font-weight: 400;
  font-optical-sizing: auto;
}

.requirements-list li::before {
  content: "•";
  padding-right: 5px;
  color: #2563eb;
  font-weight: 700;
}

/* Volunteer stories */
.volunteer-stories {
  background: white;
}

.stories-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.story-item {
  flex: 1 1 300px;
  max-width: 380px;
}

.story-content {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid #2563eb;
}

.story-text h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.story-role {
  font-size: 0.875rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-quote {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.story-duration {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Volunteer form section */
.volunteer-form-section {
  background: #f8fafc;
}

.volunteer-form-section .volunteer-form {
  background: #cacaca;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Volunteer page responsive */
@media (max-width: 991px) {
  .volunteer-opportunities .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .story-item {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .why-volunteer .benefit-card {
    padding: 1.5rem 1.25rem;
  }

  .opportunity-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .opportunity-content {
    padding: 1.25rem;
  }

  .requirements-list {
    padding: 1.5rem;
  }

  .story-content {
    padding: 1.5rem;
  }

  .volunteer-form-section .volunteer-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-volunteer .benefit-card .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .opportunity-type {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
  }

  .requirements-list {
    padding: 1.25rem;
  }

  .story-content {
    padding: 1.25rem;
  }

  .volunteer-form-section .volunteer-form {
    padding: 1.25rem;
  }
}

/* ===== Gallery Page - International Standards ===== */
.main-gallery {
  padding: 5rem 0;
  background: #f8fafc;
}

.gallery-categories {
  padding: 2rem 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

/* Overlay content - consistent alignment */
.overlay-content {
  text-align: left;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
}

.overlay-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
}

.overlay-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-align: left;
}

.overlay-content .gallery-date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

/* Featured stories - gallery */
.featured-stories {
  padding: 5rem 0;
  background: white;
}

.story-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-slide .story-image {
  flex: 1 1 300px;
  min-width: 0;
}

.story-slide .story-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.story-slide .story-content {
  flex: 1 1 320px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-slide .story-content h3 {
  font-size: 1.375rem;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.story-slide .story-content p {
  color: #475569;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-meta span {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #222;
}

.story-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}

/* Video gallery */
.video-gallery {
  padding: 3rem 0;
  background: #f8fafc;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}

.video-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.video-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
}

.video-info {
  padding: 1.5rem;
  text-align: left;
}

.video-info h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.video-info p {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.video-meta span {
  color: #444;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
  font-optical-sizing: auto;
}

/* Impact stats - gallery */
.impact-stats {
  padding: 5rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.impact-stats .stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
}

.impact-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.impact-stats .stat-description {
  color: #64748b;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
  font-optical-sizing: auto;
}

/* Photo submission */
.photo-submission {
  padding: 5rem 0;
  background: #f8fafc;
}

.submission-info,
.submission-form {
  text-align: left;
}

.submission-info h3,
.submission-form h3 {
  font-size: 1.375rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.submission-info p,
.submission-form p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.submission-guidelines h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.submission-guidelines ul {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
}

.submission-guidelines li {
  color: #475569;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  font-optical-sizing: auto;
}

.submission-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Lightbox text alignment */
.lightbox-info {
  text-align: left;
}

.lightbox-info h3 {
  text-align: left;
}

.lightbox-info p {
  text-align: left;
  line-height: 1.6;
}

/* Gallery responsive */
@media (max-width: 767px) {
  .story-slide {
    flex-direction: column;
  }

  .story-slide .story-image img {
    height: 220px;
  }

  .story-slide .story-content {
    padding: 1.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-overlay {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .overlay-content {
    padding: 1rem;
  }

  .overlay-content h3 {
    font-size: 1.3rem;
  }

  .overlay-content p {
    font-size: 1.3rem;
  }

  .impact-stats .stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats .stat-item {
    padding: 1.5rem;
  }

  .impact-stats .stat-number {
    font-size: 2rem;
  }

  .submission-info .row,
  .submission-form .row {
    flex-direction: column;
  }
}

/* Reduced motion - respect user preference */
@media (prefers-reduced-motion: reduce) {
  .about-hero .hero-content,
  .services-hero .hero-content,
  .contact-hero .hero-content,
  .donate-hero .hero-content,
  .volunteer-hero .hero-content,
  .blog-hero .hero-content,
  .gallery-hero .hero-content,
  .resources-hero .hero-content {
    animation: none;
  }

  .flood-card:hover,
  .benefit-card:hover,
  .opportunity-card:hover,
  .contact-information .contact-card:hover,
  .emergency-contacts .contact-card:hover {
    transform: none;
  }
}

/* ============================================================
   INTERNATIONAL REDESIGN LAYER
   Upgrades visual quality across all pages without touching
   the hero slider. Loaded last so it takes precedence.
   ============================================================ */

/* ── Design tokens ── */
:root {
  --blue: #1d4ed8;
  --blue-lt: #3b82f6;
  --green: #059669;
  --green-lt: #10b981;
  --dark: #0f172a;
  --mid: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global body & typography refresh ── */
body {
  font-family: "Inter", "Cormorant Garamond", sans-serif;
  background: #ffffff;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.01em;
  color: var(--dark);
}

p,
li,
label,
input,
select,
textarea,
a {
  font-family: "Cormorant Garamond", serif;
}

/* ── Section spacing ── */
section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 2.5rem 0;
  }
}

/* ── Hero slider: NEVER has section padding ── */
section#home {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
section#home .hero-slider {
  width: 100% !important;
  height: 100svh !important;
  min-height: 480px !important;
  position: relative !important;
  overflow: hidden !important;
}
section#home .hero-slides {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}
section#home .hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
section#home .hero-slide img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  animation: none !important;
}
.section-header p {
  font-size: 1.3rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Featured video section: override global section-header resets ── */
.featured-video-section,
.featured-video-section * {
  -webkit-text-fill-color: unset !important;
}
.featured-video-section {
  background: linear-gradient(
    160deg,
    #0b1120 0%,
    #020617 60%,
    #0b1120 100%
  ) !important;
}
.featured-video-section .section-header h2,
.featured-video-header h2 {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
}
.featured-video-section .section-header p,
.featured-video-header p {
  color: #ffffff !important;
}

/* ── Header / nav polish ── */
.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.5rem 0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}
.nav-link::after {
  background: linear-gradient(90deg, var(--blue), var(--green));
  height: 2px;
}

/* Mobile nav overlay */
@media (max-width: 768px) {
  .nav-menu.active {
    background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 100%) !important;
    gap: 0.5rem;
  }
  .nav-menu.active .nav-link {
    font-size: 1.3rem;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .nav-menu.active .nav-link:hover,
  .nav-menu.active .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
  }
}

/* ── Inner-page hero banners ── */
.about-hero,
.services-hero,
.contact-hero,
.volunteer-hero,
.donate-hero,
.blog-hero,
.gallery-hero,
.resources-hero {
  min-height: 65vh;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.about-hero::after,
.services-hero::after,
.contact-hero::after,
.volunteer-hero::after,
.donate-hero::after,
.blog-hero::after,
.gallery-hero::after,
.resources-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 40, 0.55) 0%,
    rgba(10, 18, 40, 0.35) 60%,
    rgba(10, 18, 40, 0.6) 100%
  );
  pointer-events: none;
}
/* put content above the overlay */
.about-hero .hero-content,
.services-hero .hero-content,
.contact-hero .hero-content,
.volunteer-hero .hero-content,
.donate-hero .hero-content,
.blog-hero .hero-content,
.gallery-hero .hero-content,
.resources-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 820px;
  margin-top: 80px; /* clear fixed header */
}
.about-hero .hero-content h1,
.services-hero .hero-content h1,
.contact-hero .hero-content h1,
.volunteer-hero .hero-content h1,
.donate-hero .hero-content h1,
.blog-hero .hero-content h1,
.gallery-hero .hero-content h1,
.resources-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.25rem;
  -webkit-text-fill-color: #ffffff !important;
}
.about-hero .hero-content p,
.services-hero .hero-content p,
.contact-hero .hero-content p,
.volunteer-hero .hero-content p,
.donate-hero .hero-content p,
.blog-hero .hero-content p,
.gallery-hero .hero-content p,
.resources-hero .hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-hero,
  .services-hero,
  .contact-hero,
  .volunteer-hero,
  .donate-hero,
  .blog-hero,
  .gallery-hero,
  .resources-hero {
    min-height: 55vh;
  }
  .about-hero .hero-content,
  .services-hero .hero-content,
  .contact-hero .hero-content,
  .volunteer-hero .hero-content,
  .donate-hero .hero-content,
  .blog-hero .hero-content,
  .gallery-hero .hero-content,
  .resources-hero .hero-content {
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  .about-hero,
  .services-hero,
  .contact-hero,
  .volunteer-hero,
  .donate-hero,
  .blog-hero,
  .gallery-hero,
  .resources-hero {
    min-height: 50vh;
  }
  .about-hero .hero-content,
  .services-hero .hero-content,
  .contact-hero .hero-content,
  .volunteer-hero .hero-content,
  .donate-hero .hero-content,
  .blog-hero .hero-content,
  .gallery-hero .hero-content,
  .resources-hero .hero-content {
    margin-top: 60px;
  }
}

/* ── Cards: vision/mission/approach/program/stat ── */
.vision-card,
.mission-card,
.objectives-card,
.approach-card,
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.vision-card:hover,
.mission-card:hover,
.objectives-card:hover,
.approach-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.vision-card .card-icon,
.mission-card .card-icon,
.objectives-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}
.vision-card h3,
.mission-card h3,
.objectives-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-align: center;
}
.vision-card p,
.mission-card p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}
.objectives-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.8;
}
.objectives-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  position: relative;
}
.objectives-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* stat cards */
.stat-card::before {
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none !important;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* program cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.program-content {
  padding: 2rem 1.75rem;
}
.program-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.program-content p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* team member cards */
.team-member {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 2rem;
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.member-photo {
  overflow: hidden;
  width: min(180px, 70vw);
  aspect-ratio: 1 / 1;
  max-width: 180px;
  margin: 2rem auto 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.team-member:hover .member-photo img {
  transform: scale(1.06);
}
.member-info {
  padding: 1.5rem;
}
.member-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.member-role {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--blue) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem !important;
}
.member-bio {
  font-size: 1.3rem !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* ── Buttons ── */
.cta-button,
.btn-primary,
.option-btn,
.download-btn,
.access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.cta-button,
.cta-button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.28);
}
.cta-button:hover,
.cta-button.primary:hover {
  background: linear-gradient(135deg, #1a40b0, var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.38);
  color: #ffffff;
}
.cta-button.secondary {
  background: linear-gradient(135deg, var(--green), var(--green-lt));
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
}
.cta-button.secondary:hover {
  background: linear-gradient(135deg, #047857, var(--green));
  transform: translateY(-2px);
  color: #ffffff;
}
.cta-button.outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.cta-button.outline:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Call to action section ── */
.call-to-action {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    #0f3a85 50%,
    var(--green) 100%
  );
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
  padding: 7rem 0;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 1rem;
  font-weight: 800;
}
.cta-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-buttons .cta-button {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.cta-buttons .cta-button:hover {
  background: #ffffff;
  color: var(--blue);
  border-color: #ffffff;
}
.cta-buttons .cta-button.primary {
  background: #ffffff;
  color: var(--blue);
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-buttons .cta-button.primary:hover {
  background: #f0f7ff;
  color: var(--blue);
}

/* ── Quick intro ── */
.quick-intro {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  position: relative;
  overflow: visible;
}
.quick-intro::before {
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  height: 2px;
}
.intro-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.intro-content p {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.75;
}
.intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
  width: 100%;
}
.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.intro-image:hover img {
  transform: scale(1.04);
}

/* ── Accordion (governance) ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.active,
.accordion-item:hover {
  border-color: var(--blue-lt);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.1);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: #f8fafc;
  transition: background 0.3s;
}
.accordion-item.active .accordion-header,
.accordion-header:hover {
  background: #eff6ff;
}
.accordion-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mid);
  margin: 0;
}
.accordion-item.active .accordion-header h3 {
  color: var(--blue);
}
.accordion-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  transition: transform 0.3s;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-content {
  max-height: 600px;
}
.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* ── Testimonials ── */
.testimonial-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--green)) 1;
  transition: var(--transition);
}
.testimonial-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.testimonial-content p {
  font-size: 1.3rem !important;
  line-height: 1.75 !important;
  color: var(--mid) !important;
  font-style: italic;
}
.author-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.author-info p {
  font-size: 0.875rem !important;
  color: var(--blue) !important;
  margin: 0 !important;
}

/* ── Blog cards ── */
.blog-card,
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover,
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.post-image {
  height: 220px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .post-image img,
.post-card:hover .post-image img {
  transform: scale(1.06);
}
.post-content,
.blog-card-body {
  padding: 1.75rem;
}
.post-category,
.blog-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.post-title,
.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.post-excerpt,
.blog-card p {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
  margin-top: auto;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.read-more:hover {
  gap: 0.6rem;
  color: var(--blue);
}

/* ── Donate page ── */
.donation-method {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.donation-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 78, 216, 0.2);
}
.donation-method h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.donation-method p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.65;
}
.impact-amount {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Services page cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
  border-top: 3px solid var(--blue);
}
.service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.12),
    rgba(5, 150, 105, 0.12)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Contact form ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 0.45rem;
  display: block;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
  background: var(--white);
  outline: none;
}

/* ── Footer ── */
.footer {
  background: linear-gradient(160deg, #0b1224 0%, #0f172a 40%, #0a1f0d 100%);
  color: #e2e8f0;
  padding: 5rem 0 0;
}
.footer::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--green),
    transparent
  );
  height: 2px;
}
.footer-section h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}
.footer-logo h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.footer-description p {
  font-size: 1.3rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.7 !important;
}
.footer-links a {
  font-size: 1.3rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 6px;
}
.footer-links a::before {
  color: var(--green);
}
.social-link {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.contact-details p,
.contact-details a {
  font-size: 1.3rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
}
.contact-details a:hover {
  color: var(--green-lt) !important;
}
.contact-details strong {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom .copyright {
  font-size: 1.3rem !important;
  color: var(--blue-lt) !important;
  font-weight: 400 !important;
  text-align: center;
}

/* ── Gallery cards ── */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-overlay {
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.gallery-overlay:hover {
  opacity: 1;
}

/* ── Whatsapp float ── */
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* ── Partners logos ── */
.partner-logo img {
  filter: grayscale(60%) opacity(0.7);
  transition: filter 0.3s ease;
}
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 4px;
}

/* ── Responsive card grids ── */
@media (max-width: 768px) {
  .team-grid .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .team-grid .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .team-grid .row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 1.5rem;
  }
}

/* ── Highlight items (gender-resilience section) ── */
.highlight-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 5px solid transparent;
}
.highlight-item:hover {
  border-left-color: var(--blue) !important;
  box-shadow: var(--shadow-hover);
}

/* ── Site name highlight strip ── */
.site-name-highlight {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1929 100%);
  border-top: 2px solid rgba(29, 78, 216, 0.4);
}
.site-name-title {
  background: linear-gradient(135deg, #ffffff, #a5f3c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-name-tagline {
  color: var(--green-lt) !important;
}

/* ── End of international redesign layer ── */

/* =====================================================
   INDEX PAGE — Inline style replacements
   All inline styles migrated to named classes
   ===================================================== */

/* Animation delay helpers */
.anim-delay-1 {
  animation-delay: 0.1s;
}
.anim-delay-2 {
  animation-delay: 0.2s;
}
.anim-delay-3 {
  animation-delay: 0.3s;
}
.anim-delay-4 {
  animation-delay: 0.4s;
}

/* --- Bwaise Sensitization section --- */
.bwaise-sensitization {
  padding: 5rem 0;
  background: #f8fafc;
}

.bwaise-sensitization .row-mb {
  margin-bottom: 3rem;
}

.bwaise-section-h3 {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.intro-image-rounded img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.col-order-2 {
  order: 2;
}
.col-order-1 {
  order: 1;
}

.cta-button-inline {
  display: inline-block;
  margin-top: 1rem;
}

/* Conference photo strip grid */
.gallery-grid-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* --- Recent Outreach section --- */
.recent-outreach {
  padding: 5rem 0;
}

.outreach-text {
  color: #e2e8f0;
  line-height: 1.8;
}

.outreach-text p {
  color: #e2e8f0;
}

.outreach-text p.mt {
  margin-top: 1rem;
}

.outreach-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.outreach-stat {
  text-align: center;
}

.outreach-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #38bdf8;
}

.outreach-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
}

.outreach-cta {
  display: inline-block;
  margin-top: 2rem;
  background: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
}

.outreach-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.outreach-photo-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* --- Disaster Management Cycle section --- */
.disaster-cycle-section {
  padding: 5rem 0;
  background: #fff;
}

.section-header p.quote-italic {
  font-style: italic;
  color: #64748b;
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cycle-card {
  border-radius: 16px;
  padding: 2rem;
}

.cycle-card-mitigation {
  background: #f0f9ff;
  border-top: 4px solid #0ea5e9;
}
.cycle-card-preparedness {
  background: #f0fdf4;
  border-top: 4px solid #22c55e;
}
.cycle-card-response {
  background: #fefce8;
  border-top: 4px solid #eab308;
}
.cycle-card-recovery {
  background: #fdf4ff;
  border-top: 4px solid #a855f7;
}

.cycle-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cycle-badge {
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.cycle-badge-blue {
  background: #0ea5e9;
}
.cycle-badge-green {
  background: #22c55e;
}
.cycle-badge-yellow {
  background: #eab308;
}
.cycle-badge-purple {
  background: #a855f7;
}

.cycle-card h3 {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0;
}

.cycle-card .cycle-label {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cycle-card ul {
  padding-left: 1.25rem;
  margin: 0;
  line-height: 1.9;
}

.cycle-card-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1.25rem;
  height: 200px;
  object-fit: cover;
}

/* Challenges & Recommendations */
.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }
}

.challenges-card {
  border-radius: 16px;
  padding: 2rem;
}

.challenges-card-red {
  background: #fff5f5;
  border-left: 4px solid #ef4444;
}
.challenges-card-green {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
}

.challenges-card h3 {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.challenges-card-red h3 {
  color: #b91c1c;
}
.challenges-card-green h3 {
  color: #15803d;
}

.challenges-card ul {
  padding-left: 1.25rem;
  margin: 0;
  line-height: 2;
}

/* --- Community Engagement section --- */
.community-engagement-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.engagement-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.engagement-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.engagement-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
}

.engagement-card-caption h4 {
  color: #fff;
  margin: 0;
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 1.3rem;
}

.engagement-card-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  margin: 0.25rem 0 0;
  max-width: none;
}

.engagement-cta-box {
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.engagement-cta-box h3 {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.engagement-cta-box p {
  color: #222;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.engagement-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- Flood Assessment section --- */
.flood-assessment-section {
  padding: 5rem 0;
  background: #fff;
}

.assessment-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.assessment-photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.assessment-row {
  align-items: center;
  margin-bottom: 3rem;
}

.assessment-h3 {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.assessment-p-mt {
  margin-top: 1rem;
}

.assessment-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.assessment-stat {
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.assessment-stat-blue {
  background: #f0f9ff;
}
.assessment-stat-green {
  background: #f0fdf4;
}
.assessment-stat-yellow {
  background: #fefce8;
}

.assessment-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
}

.assessment-stat-blue .assessment-stat-number {
  color: #0ea5e9;
}
.assessment-stat-green .assessment-stat-number {
  color: #22c55e;
}
.assessment-stat-yellow .assessment-stat-number {
  color: #eab308;
}

.assessment-stat-label {
  font-size: 1.3rem;
  color: #64748b;
}

/* --- Testimonials (community voices) section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card-blue {
  border-top: 4px solid #0ea5e9;
}
.testimonial-card-green {
  border-top: 4px solid #22c55e;
}
.testimonial-card-yellow {
  border-top: 4px solid #f59e0b;
}
.testimonial-card-purple {
  border-top: 4px solid #8b5cf6;
}
.testimonial-card-red {
  border-top: 4px solid #ef4444;
}
.testimonial-card-cyan {
  border-top: 4px solid #06b6d4;
}

.testimonial-card-quote-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-card-quote-icon-blue {
  color: #0ea5e9;
}
.testimonial-card-quote-icon-green {
  color: #22c55e;
}
.testimonial-card-quote-icon-yellow {
  color: #f59e0b;
}
.testimonial-card-quote-icon-purple {
  color: #8b5cf6;
}
.testimonial-card-quote-icon-red {
  color: #ef4444;
}
.testimonial-card-quote-icon-cyan {
  color: #06b6d4;
}

.testimonial-card p {
  font-style: italic;
  color: #334155;
  line-height: 1.8;
  font-size: 1.3rem;
}

.testimonial-card-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card-author strong {
  color: #0f172a;
  display: block;
}

.testimonial-card-author p {
  color: #64748b;
  font-size: 1.3rem;
  margin: 0;
  font-style: normal;
}

.testimonials-cta {
  text-align: center;
}

/* ===== FEATURED VIDEO SECTION – FINAL OVERRIDE (must stay at end of file) ===== */
.featured-video-section {
  background: linear-gradient(
    160deg,
    #0b1120 0%,
    #020617 60%,
    #0b1120 100%
  ) !important;
}
.featured-video-section *,
.featured-video-section h2,
.featured-video-section p {
  -webkit-text-fill-color: unset !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
.featured-video-section .section-header h2,
.featured-video-header h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.featured-video-section .section-header p,
.featured-video-header p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Restore iframe and embed – background: none would break the video embed */
.featured-video-embed {
  background: #000 !important;
}
.featured-video-section::before {
  background: linear-gradient(
    90deg,
    transparent,
    #06f8a7,
    transparent
  ) !important;
}

/* ===== QUICK INTRO COLUMNS – FINAL OVERRIDE ===== */
@media (max-width: 991px) {
  .quick-intro .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
