@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



@layer base {
  :root {
    /* New Brand Colors (Converted to HSL) */
    --primary-color: 219 62% 34%;
    /* #21468c */
    --secondary-color: 190 78% 37%;
    /* #148da5 */
    --tertiary-color: 130 100% 25%;
    /* #008115 */

    /* Colors */
    --background: 0 0% 100%;
    --foreground: 219 62% 5%;
    --muted: 219 20% 95%;
    --muted-foreground: 219 10% 40%;
    --popover: 0 0% 99%;
    --popover-foreground: 219 62% 2%;
    --card: 0 0% 99%;
    --card-foreground: 219 62% 2%;
    --border: 219 15% 90%;
    --input: 219 15% 90%;
    --background-2: #f2f7ff;
    /* Adjusted to a faint blue tint */

    /* Primary Palette (Blue) */
    --blue-light: 219 62% 93%;
    --blue-light-hover: 219 62% 88%;
    --blue-light-active: 219 62% 80%;
    --blue-normal: var(--primary-color);
    --blue-normal-hover: 219 62% 30%;
    --blue-normal-active: 219 62% 25%;
    --blue-dark: 219 62% 20%;
    --blue-dark-hover: 219 62% 15%;
    --blue-dark-active: 219 62% 10%;

    /* Grey Palette */
    --grey-50: 219 11% 94%;
    --grey-100: 219 11% 87%;
    --grey-200: 219 10% 77%;
    --grey-300: 219 10% 58%;
    --grey-400: 219 10% 47%;
    --grey-500: 219 10% 38%;
    --grey-600: 219 10% 30%;
    --grey-700: 219 10% 27%;
    --grey-800: 219 10% 21%;
    --grey-900: 219 10% 19%;

    /* Status Colors */
    --success: 142 76% 36%;
    --success-foreground: 0 0% 100%;
    --warning: 38 92% 50%;
    --warning-foreground: 0 0% 100%;
    --info: 199 89% 48%;
    --info-foreground: 0 0% 100%;

    /* Shadcn/UI Functional Mapping */
    --primary: var(--primary-color);
    --primary-foreground: 0 0% 100%;
    --secondary: var(--secondary-color);
    --secondary-foreground: 0 0% 100%;
    --accent: var(--blue-light);
    --accent-foreground: var(--primary-color);
    --destructive: 9 92% 38%;
    --destructive-foreground: 0 0% 100%;
    --ring: var(--primary-color);

    /* Chart Palette updated for the new theme */
    --chart-1: 219 62% 34%;
    --chart-2: 190 78% 37%;
    --chart-3: 130 100% 25%;
    --chart-4: 219 40% 50%;
    --chart-5: 190 50% 60%;

    --radius: 0.5rem;

    /* Fonts */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;

    /* Responsive Font Sizes */
    --fs-1: clamp(2.3rem, 5vw, 4.2rem);
    --fs-2: clamp(1.8rem, 4vw, 3.2rem);
    --fs-3: clamp(1.5rem, 3.5vw, 2.3rem);
    --fs-4: clamp(1.3rem, 3vw, 1.8rem);
    --fs-5: clamp(1.2rem, 2.5vw, 1.5rem);
    --fs-6: clamp(1.1rem, 2vw, 1.4rem);
    --fs-7: clamp(1rem, 1.8vw, 1.3rem);
    --fs-8: clamp(0.9rem, 1.5vw, 1rem);
    --fs-9: clamp(0.65rem, 1.3vw, 0.9rem);
    --fs-p: clamp(1rem, 1.8vw, 1.125rem);

    /* Spacing */
    --spacing-1: 0.5rem;
    --spacing-2: 1rem;
    --spacing-3: 1.5rem;
    --spacing-4: 2rem;
    --spacing-5: 4rem;
    --spacing-6: 6rem;

    /* Transitions */
    --transition-default: all 0.2s ease-in-out;
    --transition-slow: all 0.4s ease-in-out;
    --transition-fast: all 0.1s ease-in-out;

    /* Z-Index */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
  }
}


* {
  border-color: var(--border);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  color: var(--foreground);
  /* background-color: var(--background); */
  background: linear-gradient(135deg, rgba(0, 121, 121, 0.25) 0%, white 100%);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: var(--transition-default);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  /* Standard practice: ensure headings have a defined weight */
  font-weight: 700;
}

h1 {
  font-size: var(--fs-1);
}

h2 {
  font-size: var(--fs-2);
}

h3 {
  font-size: var(--fs-3);
}

h4 {
  font-size: var(--fs-4);
}

h5 {
  font-size: var(--fs-5);
}

h6 {
  font-size: var(--fs-6);
}

p {
  font-size: var(--fs-7);
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-2);
  transition: var(--transition-default);
}

/* Form Elements */
input,
textarea,
select {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: var(--spacing-1);
  transition: var(--transition-default);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary));
}

/* Utility Classes */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

.gap-1 {
  gap: var(--spacing-1);
}

.gap-2 {
  gap: var(--spacing-2);
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-video {
  aspect-ratio: 16/9;
}

/* Spacing Utilities */
.mt-1 {
  margin-top: var(--spacing-2);
}

.mb-1 {
  margin-bottom: var(--spacing-2);
}

.m-1 {
  margin: var(--spacing-2);
}

.p-1 {
  padding: var(--spacing-2);
}

.p-md {
  padding: var(--spacing-3);
}

.p-sm {
  padding: var(--spacing-1);
}

.p-2 {
  padding: var(--spacing-4);
}

.pt-1 {
  padding-top: var(--spacing-2);
}

.pt-sm {
  padding-top: var(--spacing-1);
}

.pt-2 {
  padding-top: var(--spacing-4);
}

.pt-4 {
  padding-top: var(--spacing-5);
}

.pb-1 {
  padding-bottom: var(--spacing-2);
}

.pl-sm {
  padding-inline-start: var(--spacing-1);
}

.pl-md {
  padding-inline-start: var(--spacing-2);
}

.pb-sm {
  padding-bottom: var(--spacing-1);
}

.pb-2 {
  padding-bottom: var(--spacing-4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .no-print {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 var(--spacing-1);
  }
}

*::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

*::-webkit-scrollbar-thumb {
  background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 10px;
  border: 3px solid #ffffff;
}

*::-webkit-scrollbar-thumb:hover {
  background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--secondary)));
}


/* ========================================================================
    Button Styles
    ======================================================================== */

/* Base Button Style */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-default);
  border: 1px solid transparent;
  user-select: none;
  font-family: var(--font-body);
}

.button:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.button:active {
  transform: translateY(1px);
}

/* ========================================================================
    Button Variants
    ======================================================================== */

/* Primary Button */
.button-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.button-primary:hover {
  background-color: color-mix(in srgb, hsl(var(--primary)) 90%, black);
}

/* Secondary Button */
.button-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.button-secondary:hover {
  background-color: color-mix(in srgb, hsl(var(--secondary)) 80%, black);
}

/* Tertiary Button */
.button-tertiary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.button-tertiary:hover {
  background-color: color-mix(in srgb, hsl(var(--secondary)) 80%, black);
}

/* Destructive Button */
.button-destructive {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

.button-destructive:hover {
  background-color: color-mix(in srgb, hsl(var(--destructive)) 90%, black);
}

/* Success Button */
.button-success {
  background-color: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

.button-success:hover {
  background-color: color-mix(in srgb, hsl(var(--success)) 90%, black);
}

/* Outline Button */
.button-outline {
  background-color: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--input));
  padding: var(--spacing-1);
}

.button-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Ghost Button (Subtle) */
.button-ghost {
  background-color: transparent;
  color: hsl(var(--primary));
}

.button-ghost:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

/* Link Button */
.button-link {
  background-color: transparent;
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button-link:hover {
  opacity: 0.8;
}

/* ========================================================================
    Button Sizing
    ======================================================================== */

.button-sm {
  height: 2.25rem;
  padding: 0 var(--spacing-2);
  font-size: var(--fs-9);
}

.button-md {
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: var(--fs-8);
}

.button-lg {
  height: 2.75rem;
  padding: 0 var(--spacing-4);
  font-size: var(--fs-5);
}

.button-xl {
  height: 3rem;
  padding: 0 2.5rem;
  font-size: var(--fs-4);
}

/* ========================================================================
    Button with Icon
    ======================================================================== */

.button-icon {
  margin-right: var(--spacing-1);
  width: 1.25rem;
  height: 1.25rem;
}

.button-icon.right {
  margin-right: 0;
  margin-left: var(--spacing-1);
}

.button-sm .button-icon {
  width: 1rem;
  height: 1rem;
}

.button-lg .button-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.button-xl .button-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.button-icon-only {
  padding: 0;
  width: 2.5rem;
}

.button-icon-only .button-icon {
  margin: 0;
}

.button-icon-only.button-sm {
  width: 2.25rem;
}

.button-icon-only.button-lg {
  width: 2.75rem;
}

.button-icon-only.button-xl {
  width: 3rem;
}

a {
  text-decoration: none;
}



/* Header Base */
header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: var(--z-index-fixed);
  transition: var(--transition-slow);
  display: flex;
  justify-content: center;
}

/* 1. Floating State */
.floating-header {
  top: 20px;
  padding: 0 5%;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2.5rem;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition-slow);
}

/* 2. Sticky State (applied via JS) */
.sticky-header {
  top: 0;
  padding: 0;
}

.sticky-header .header-container {
  max-width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 5%;
}

/* Logo */
.logo {
  max-width: 130px;
}

.logo img {
  width: 100%;
  height: auto;
  transition: var(--transition-default);
}

/* Navigation Desktop */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-default);
}

.nav-menu a:hover {
  color: hsl(var(--secondary-color));
}

/* Dropdown Icon Styling */
.submenu-icon {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .submenu-icon {
  transform: rotate(180deg);
}

/* Submenu Desktop */
.submenu {
  position: absolute;
  top: 70%;
  background: white;
  min-width: 180px;
  padding: 10px;
  border-radius: 12px;
  flex-direction: column !important;
  gap: 5px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-default);
}

.submenu li {
  width: 100%;
  padding: 4px 10px;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

/* Mobile Toggle Styles */
.menu-checkbox,
.hamburger-label {
  display: none;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .hamburger-label {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--primary-color));
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    display: none;
    /* Hidden by default */
    border-bottom: 1px solid hsl(var(--border));
  }

  .header-container {

    padding: 0.25rem 1.5rem;
  }

  .logo {
    max-width: 90px;
  }

  /* When checkbox is checked, show menu */
  .menu-checkbox:checked~.nav-menu {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none !important;
  }

  .nav-menu li {
    border-bottom: 0.5px solid hsl(var(--border));
    padding-block: 1rem;
    width: 100%;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Show submenu on mobile when parent is clicked/hovered */
  .dropdown:hover .submenu {
    display: flex !important;
  }
}

/* =====================================================================
           HERO BANNER SECTION
           ===================================================================== */
.banner_container {
  width: 85%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-2);
  transition: var(--transition-default);
}

.banner {
  position: relative;
  /* min-height: 100vh;
  min-height: 100dvh; */
  /* modern dynamic viewport height */
  background-image: url("../images/banners/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  /* Critical: Push content below the fixed floating header */
  padding-top: 200px;
  padding-bottom: var(--spacing-5);
}

/* Gradient overlay: heavy on the left for text, fading to clear on the right */
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      hsl(var(--primary) / 0.92) 0%,
      hsl(var(--primary) / 0.75) 35%,
      hsl(var(--primary) / 0.35) 60%,
      transparent 85%);
  z-index: 1;
}

/* Subtle texture overlay for premium feel */
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

/* Decorative glowing orb on the right */
.banner-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.25) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: white;
}

/* Badge */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(var(--warning)) 0%, hsl(38 85% 44%) 100%);
  color: hsl(var(--primary));
  /* Dark blue text on yellow */
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: var(--fs-9);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-out both;
  border: 1px solid hsl(0 0% 100% / 0.2);
}

.banner-badge i {
  font-size: 0.85em;
}

/* Typography */
.banner h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-1);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--spacing-2);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.9s ease-out 0.15s both;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.banner-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--warning)), hsl(var(--secondary)));
  border-radius: 2px;
  margin-bottom: var(--spacing-2);
  animation: scaleXIn 0.7s ease-out 0.3s both;
}

.banner p {
  font-family: var(--font-body);
  font-size: var(--fs-4);
  color: hsl(0 0% 100% / 0.92);
  margin-bottom: var(--spacing-3);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.9s ease-out 0.35s both;
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.5;
  max-width: 540px;
}

/* CTA Button */
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--tertiary)) 100%);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: var(--fs-7);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid hsl(0 0% 100% / 0.15);
  box-shadow: 0 10px 30px hsl(var(--secondary) / 0.35), 0 0 0 1px hsl(0 0% 100% / 0.1) inset;
  transition: var(--transition-default);
  animation: fadeInUp 0.9s ease-out 0.55s both;
  backdrop-filter: blur(4px);
}

.banner-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px hsl(var(--secondary) / 0.45), 0 0 0 1px hsl(0 0% 100% / 0.2) inset;
  filter: brightness(1.08);
}

.banner-cta:active {
  transform: translateY(-1px);
}

.banner-cta i {
  transition: transform 0.3s ease;
}

.banner-cta:hover i {
  transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid hsl(0 0% 100% / 0.25);
  background: hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: var(--transition-default);
  animation: fadeIn 1s ease-out 1.2s both, bounce 2.2s infinite 1.8s;
  cursor: pointer;
}

.scroll-indicator:hover {
  background: hsl(0 0% 100% / 0.2);
  border-color: white;
  transform: translateX(-50%) scale(1.1);
}

.scroll-indicator i {
  font-size: var(--fs-6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleXIn {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-14px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* =====================================================================
           RESPONSIVE
           ===================================================================== */
@media (max-width: 768px) {
  .banner {
    padding-top: 120px;
    background-position: 65% center;
  }

  .banner::before {
    background: linear-gradient(160deg,
        hsl(var(--primary) / 0.94) 0%,
        hsl(var(--primary) / 0.8) 50%,
        hsl(var(--primary) / 0.5) 100%);
  }

  .banner h1 {
    font-size: var(--fs-2);
  }

  .banner p {
    font-size: var(--fs-5);
  }

  .banner-cta {
    padding: 0.85rem 1.75rem;
  }

  .header-inner {
    padding: 0.6rem var(--spacing-2);
  }

  .header-nav {
    display: none;
    /* Simplified for demo */
  }
}

@media (max-width: 480px) {
  .banner {
    padding-top: 110px;
    min-height: 55vh;
  }

  .banner-badge {
    font-size: 0.6rem;
    padding: 0.35rem 0.85rem;
  }

  .banner-divider {
    width: 50px;
  }
}

/* Basic Responsiveness */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    /* Add a hamburger menu logic here if needed */
  }

  .floating-header {
    padding: 0 1rem;
    top: 10px;
  }
}


/* Section Layout */
.about-section {
  padding: var(--spacing-5) 0;
  overflow: hidden;
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  /* Desktop default: image left, content right */
}

/* Image Styling & Animation */
.about_img {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.about_img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  /* Glassy shadow to match your header */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* Animation call */
  animation: floatImage 6s ease-in-out infinite;
  transition: var(--transition-slow);
}

.about_img img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

/* Content Styling */
.about_content {
  flex: 1.2;
}

.about_content h3 {
  margin-bottom: var(--spacing-2);
  color: hsl(var(--primary-color));
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
}

.about-icon {
  color: hsl(var(--secondary-color));
  font-size: 0.8em;
  /* Slightly smaller than text */
}

.about_content h3::before {
  content: "\f4be";
  /* fa-hand-holding-heart */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* required for solid icons */
  color: hsl(var(--secondary-color));
  font-size: 0.8em;
  line-height: 1;
}

.about_content p {
  margin-bottom: var(--spacing-2);
  color: hsl(var(--foreground));
  text-align: justify;
}

/* Floating Animation Keyframes */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive Logic */
@media (max-width: 992px) {
  .about-section .container {
    /* Reverses order: Content goes TOP, Image goes BOTTOM */
    flex-direction: column-reverse;
    text-align: center;
    gap: var(--spacing-3);
  }

  .about_content h3 {
    justify-content: center;
  }

  .about_content p {
    text-align: center;
  }

  .about_img img {
    max-width: 80%;
    /* Smaller on tablets/phones */
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: var(--spacing-3) 0;
  }

  .about_img img {
    max-width: 100%;
  }
}


/* Section Padding */
.insight_section {
  padding: var(--spacing-5) 0;
  background-color: #ffffff;
}
.insight_section h2{
  color: hsl(var(--primary-color));
  margin-bottom: var(--spacing-4);
}
/* Flex Wrapper */
.flex-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

/* Card Styling */
.card_insight {
  flex: 1 1 calc(33.333% - var(--spacing-3));
  min-width: 300px;
  background: hsl(var(--primary-color));
  /* Applying Primary Color */
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--spacing-3);
  border: none;
  /* Removed border as it clashes with dark bg */
  box-shadow: 0 10px 30px rgba(33, 70, 140, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

/* Card Hover Animation */
.card_insight:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(33, 70, 140, 0.4);
}

/* Image Container & Zoom Animation */
.card_img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: var(--spacing-2);
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card_insight:hover .card_img img {
  transform: scale(1.1);
}

/* Typography inside Cards */
.card_insight h6 {
  padding: 0 var(--spacing-3);
  margin-bottom: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  color: #7FC460;
}

.card_insight h6 {
  /* Using a lighter teal for better visibility on blue */
  color: hsl(190, 80%, 70%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 var(--spacing-3);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card_insight h4 {
  padding: 0 var(--spacing-3);
  margin-bottom: var(--spacing-2);
  line-height: 1.3;
  color: #ffffff;
  /* White text for headings */
}

/* .card_insight h4 {
  padding: 0 var(--spacing-3);
  margin-bottom: var(--spacing-2);
  line-height: 1.3;
  color: hsl(var(--primary-color));
} */

.card_insight p {
  padding: 0 var(--spacing-3);
  margin-bottom: var(--spacing-3);
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limit text height to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--fs-8);
}

/* Button Container */
.card_insight>div:last-child {
  padding: 0 var(--spacing-3);
  margin-top: auto;
  /* Pushes button to bottom if text lengths vary */
}

.card_insight .button-primary {
  background-color: #ffffff;
  /* White button */
  color: hsl(var(--primary-color));
  /* Blue text */
  border: 2px solid #ffffff;
}

.card_insight .button-primary:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateX(5px);
}

/* Image behavior remains the same */
.card_img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: var(--spacing-2);
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Button Styling (Assuming standard button classes) */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition-default);
}

.button-primary {
  background-color: hsl(var(--primary-color));
  color: white;
}

.button-primary:hover {
  background-color: hsl(var(--secondary-color));
  transform: translateX(5px);
}

/* Responsive Logic */
@media (max-width: 1024px) {
  .card_insight {
    flex: 1 1 calc(50% - var(--spacing-3));
    /* 2 columns on tablet */
  }
}

@media (max-width: 768px) {
  .card_insight {
    flex: 1 1 100%;
    /* 1 column on mobile */
  }

  .insight_section {
    padding: var(--spacing-3) 0;
  }
}


/* Section Padding */
.resources_section {
  padding: var(--spacing-5) 0;
  /* background-color: #fcfdfe;  */
}

/* Header Alignment */
.section_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-4);
}

.section_header h3 {
  font-size: var(--fs-3);
  color: hsl(var(--primary-color));
  font-weight: 800;
}

.view_all {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-size: var(--fs-8);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-default);
}

.view_all:hover {
  color: hsl(var(--secondary-color));
  gap: 12px;
  /* Smooth arrow movement */
}

/* Grid Layout */
.resources_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-3);
}

/* Card Styling (Entirely Clickable) */
.resource_card {
  text-decoration: none;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-default);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.resource_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.resource_img {
  width: 100%;
  aspect-ratio: 16 / 10;
  /* Maintains consistent card heights */
  overflow: hidden;
}

.resource_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource_card:hover .resource_img img {
  transform: scale(1.08);
}

/* Info Text Area */
.resource_info {
  padding: var(--spacing-2) var(--spacing-3);
  display: flex;
  align-items: center;
  min-height: 80px;
  /* Ensures text rows align */
}

.resource_info p {
  font-size: var(--fs-8);
  color: hsl(var(--foreground));
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .resources_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section_header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-1);
  }

  .resources_grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2);
  }

  .resource_info {
    min-height: auto;
    padding: var(--spacing-2);
  }
}




/* =====================================================================
           CONTACT PAGE LAYOUT STYLES
           ===================================================================== */
.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-5) var(--spacing-2);
}

.page-header {
  text-align: center;
  margin-block-start: var(--spacing-6);
  margin-bottom: var(--spacing-4);
  animation: fadeIn 0.6s ease-out;
}

.page-header h1 {
  color: hsl(var(--primary));
  font-size: var(--fs-3);
  margin-bottom: var(--spacing-1);
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  margin: var(--spacing-1) auto 0;
  border-radius: 2px;
}

.page-header p {
  color: hsl(var(--muted-foreground));
  font-size: var(--fs-7);
  max-width: 500px;
  margin: 0 auto;
}

/* Main Card */
.contact-card {
  background: hsl(var(--card));
  border-radius: calc(var(--radius) * 3);
  box-shadow: 0 25px 80px rgba(33, 70, 140, 0.12), 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 380px 1fr;
  animation: fadeIn 0.8s ease-out;
  border: 1px solid hsl(var(--border));
}

/* Left Info Panel */
.contact-info-panel {
  background: linear-gradient(165deg, hsl(var(--primary)) 0%, hsl(var(--blue-dark)) 100%);
  color: hsl(var(--primary-foreground));
  padding: var(--spacing-4);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.25) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.panel-header {
  position: relative;
  margin-bottom: var(--spacing-3);
}

.panel-header h2 {
  color: white;
  font-size: var(--fs-4);
  margin-bottom: var(--spacing-1);
  font-weight: 700;
}

.panel-header p {
  color: hsl(0 0% 100% / 0.85);
  font-size: var(--fs-8);
  line-height: 1.6;
  font-weight: 400;
}

.info-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-2);
}

.icon-wrapper {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(0 0% 100% / 0.18);
  transition: var(--transition-default);
}

.info-item:hover .icon-wrapper {
  background: hsl(0 0% 100% / 0.2);
  transform: scale(1.05);
}

.icon-wrapper i {
  color: white;
  font-size: var(--fs-7);
}

.info-content {
  display: flex;
  flex-direction: column;
  padding-top: 0.2rem;
}

.info-content label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(0 0% 100% / 0.65);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.info-content a,
.info-content span {
  color: white;
  font-size: var(--fs-8);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  transition: var(--transition-fast);
}

.info-content a:hover {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-section {
  margin-top: auto;
  padding-top: var(--spacing-3);
  border-top: 1px solid hsl(0 0% 100% / 0.15);
  position: relative;
}

.social-section h4 {
  color: white;
  font-size: var(--fs-8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-2);
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: var(--spacing-1);
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition-default);
  border: 1px solid hsl(0 0% 100% / 0.18);
}

.social-icon:hover {
  background: hsl(0 0% 100% / 0.25);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon i {
  font-size: var(--fs-8);
}

/* Right Form Panel */
.contact-form-panel {
  padding: var(--spacing-4);
  background: hsl(var(--card));
  display: flex;
  flex-direction: column;
}

.form-header {
  margin-bottom: var(--spacing-3);
}

.form-header h2 {
  color: hsl(var(--primary));
  font-size: var(--fs-4);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-9);
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: capitalize;
}

.form-group label .required {
  color: hsl(var(--destructive));
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-8);
  color: hsl(var(--foreground));
  padding: 0.65rem var(--spacing-1);
  background: hsl(var(--background));
  border: 1px solid hsl(var(--input));
  border-radius: calc(var(--radius) * 1.2);
  transition: var(--transition-default);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: hsl(var(--muted-foreground) / 0.7);
  font-weight: 400;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Consent Box */
.consent-box {
  grid-column: 1 / -1;
  background: hsl(var(--blue-light));
  border-left: 3px solid hsl(var(--secondary));
  padding: var(--spacing-2);
  border-radius: 0 calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) 0;
  margin-top: var(--spacing-1);
}

.consent-box p {
  font-size: var(--fs-9);
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.consent-box a {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition-fast);
}

.consent-box a:hover {
  color: hsl(var(--secondary));
}

/* Submit Button Wrapper */
.submit-wrapper {
  grid-column: 1 / -1;
  margin-top: var(--spacing-1);
}

.submit-btn {
  width: 100%;
  border-radius: calc(var(--radius) * 3);
  font-weight: 600;
  font-size: var(--fs-7);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  background: linear-gradient(135deg, hsl(var(--warning)) 0%, hsl(38 85% 44%) 100%);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 18px hsl(var(--warning) / 0.35);
  transition: var(--transition-default);
  letter-spacing: 0.02em;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsl(var(--warning) / 0.45);
  filter: brightness(1.05);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  font-size: var(--fs-8);
  margin-left: var(--spacing-1);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .contact-info-panel {
    padding: var(--spacing-3);
  }

  .contact-form-panel {
    padding: var(--spacing-3);
  }
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding: var(--spacing-2) var(--spacing-1);
  }

  .page-header h1 {
    font-size: var(--fs-4);
  }
}

@media (max-width: 480px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: var(--spacing-2);
  }

  .info-item {
    gap: var(--spacing-1);
  }

  .icon-wrapper {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
  }
}


.hope img {
  width: 100%;
  height: auto;
  margin-block-end: -5px;
}



/* =====================================================================
           IMPACT SECTION STYLES
           ===================================================================== */
.impact-section {
  padding: var(--spacing-5) 0;
  background: linear-gradient(135deg, hsl(var(--blue-light) / 0.35) 0%, white 50%, hsl(var(--secondary) / 0.04) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.impact-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.impact-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--spacing-4);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* =====================================================================
           LEFT SIDE: IMAGE + TEXT
           ===================================================================== */
.impact-visual {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.impact-image-wrapper {
  position: relative;
  border-radius: calc(var(--radius) * 4);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(33, 70, 140, 0.18);
  transition: var(--transition-slow);
}

.impact-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(33, 70, 140, 0.22);
}

.impact-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.impact-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Floating 46 Years Badge */
.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) * 3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 35px rgba(20, 60, 130, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.experience-badge .years {
  font-size: var(--fs-1);
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.experience-badge .label {
  font-size: var(--fs-9);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.impact-text h2 {
  color: hsl(var(--primary));
  font-size: var(--fs-2);
  margin-bottom: var(--spacing-1);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.impact-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  margin-top: var(--spacing-1);
  border-radius: 2px;
}

.impact-text p {
  color: hsl(var(--grey-600));
  font-size: var(--fs-p);
  max-width: 95%;
}

/* =====================================================================
           RIGHT SIDE: STATS / COUNTERS
           ===================================================================== */
.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2);
}

.stat-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2.5);
  padding: var(--spacing-3) var(--spacing-2);
  text-align: center;
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(33, 70, 140, 0.04);
}

/* Top gradient line on hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(33, 70, 140, 0.1);
  border-color: hsl(var(--primary) / 0.25);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--spacing-1);
  background: linear-gradient(135deg, hsl(var(--blue-light)) 0%, hsl(var(--secondary) / 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-size: var(--fs-5);
  transition: var(--transition-slow);
  border: 2px solid hsl(var(--blue-light-active));
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  border-color: transparent;
  box-shadow: 0 8px 20px hsl(var(--primary) / 0.25);
}

.stat-number {
  font-size: var(--fs-3);
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1.2;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  min-height: 1.2em;
}

.stat-label {
  font-size: var(--fs-9);
  color: hsl(var(--grey-600));
  line-height: 1.5;
  font-weight: 500;
}

/* =====================================================================
           ANIMATIONS
           ===================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card {
  animation: fadeIn 0.6s ease-out both;
}

.stat-card:nth-child(1) {
  animation-delay: 0.05s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.15s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(5) {
  animation-delay: 0.25s;
}

.stat-card:nth-child(6) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(7) {
  animation-delay: 0.35s;
}

.stat-card:nth-child(8) {
  animation-delay: 0.4s;
}

/* =====================================================================
           RESPONSIVE
           ===================================================================== */
@media (max-width: 960px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }

  /* Mobile: Stats on TOP, Image below */
  .impact-stats {
    order: 1;
  }

  .impact-visual {
    order: 2;
  }

  .impact-image-wrapper img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .impact-stats {
    grid-template-columns: 1fr;
    /* Single column stats on small screens */
  }

  .stat-number {
    font-size: var(--fs-4);
  }

  .impact-image-wrapper img {
    height: 260px;
  }

  .experience-badge {
    padding: 0.75rem 1rem;
    bottom: 16px;
    right: 16px;
  }

  .experience-badge .years {
    font-size: var(--fs-3);
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: var(--spacing-4) 0;
  }

  .stat-card {
    padding: var(--spacing-2);
  }
}




/* =====================================================================
           MODERN FOOTER STYLES
           ===================================================================== */
.footer {
  position: relative;
  background-image: url('assets/images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* subtle parallax */
  color: hsl(var(--primary-foreground));
  overflow: hidden;
  /* Rounded top corners to separate from content */
  /* border-radius: calc(var(--radius) * 6) calc(var(--radius) * 6) 0 0; */
  /* margin-top: var(--spacing-4); */
}

/* Dark gradient overlay for readability */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
      hsl(var(--primary) / 0.96) 0%,
      hsl(var(--blue-dark) / 0.95) 50%,
      hsl(var(--blue-dark-active) / 0.98) 100%);
  z-index: 1;
}

/* Decorative subtle pattern overlay */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, hsl(var(--secondary) / 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, hsl(var(--warning) / 0.04) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 3;
}

/* =====================================================================
           FOOTER TOP: NEWSLETTER CTA
           ===================================================================== */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
  padding: var(--spacing-4) 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
  flex-wrap: wrap;
}

.footer-cta-text h3 {
  font-size: var(--fs-4);
  margin-bottom: 0.3rem;
  color: white;
  font-weight: 700;
}

.footer-cta-text p {
  font-size: var(--fs-8);
  color: hsl(0 0% 100% / 0.75);
  margin: 0;
}

.footer-cta-form {
  display: flex;
  gap: 0;
  min-width: 320px;
  max-width: 100%;
}

.footer-cta-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-right: none;
  border-radius: 100px 0 0 100px;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-body);
  font-size: var(--fs-8);
  outline: none;
  transition: var(--transition-default);
}

.footer-cta-form input::placeholder {
  color: hsl(0 0% 100% / 0.5);
}

.footer-cta-form input:focus {
  background: hsl(0 0% 100% / 0.15);
  border-color: hsl(var(--secondary) / 0.5);
}

.footer-cta-form button {
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 0 100px 100px 0;
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--secondary-color)) 100%);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-8);
  cursor: pointer;
  transition: var(--transition-default);
  white-space: nowrap;
}

.footer-cta-form button:hover {
  filter: brightness(1.15);
  box-shadow: 0 4px 20px hsl(var(--secondary) / 0.4);
}

/* =====================================================================
           FOOTER MAIN GRID
           ===================================================================== */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: var(--spacing-4);
  padding: var(--spacing-5) 0 var(--spacing-4);
}

.footer-col h4 {
  color: white;
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: var(--spacing-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--secondary)), hsl(var(--warning)));
  margin-top: 0.6rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-col:hover h4::after {
  width: 50px;
}

/* Brand Column */
.footer-brand .footer-logo {
  margin-bottom: var(--spacing-2);
}

.footer-brand .footer-logo img {
  max-height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Makes dark logo white */
  transition: var(--transition-default);
}

.footer-brand .footer-logo:hover img {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px hsl(var(--secondary) / 0.5));
}

.footer-brand p {
  color: hsl(0 0% 100% / 0.7);
  font-size: var(--fs-8);
  line-height: 1.8;
  margin-bottom: var(--spacing-2);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(0 0% 100% / 0.8);
  font-size: var(--fs-9);
  transition: var(--transition-default);
}

.footer-contact-item:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 100% / 0.1);
  border-radius: 50%;
  font-size: 0.8rem;
  color: hsl(var(--secondary));
  border: 1px solid hsl(0 0% 100% / 0.1);
}

/* Navigation Links */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-list li a {
  color: hsl(0 0% 100% / 0.75);
  text-decoration: none;
  font-size: var(--fs-8);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-default);
  position: relative;
  padding-left: 0;
}

/* Animated underline */
.footer-links-list li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--secondary)), hsl(var(--warning)));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-links-list li a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-links-list li a:hover::before {
  width: 20px;
}

.footer-links-list li a i {
  font-size: 0.7rem;
  opacity: 0;
  transition: var(--transition-default);
  color: hsl(var(--secondary));
}

.footer-links-list li a:hover i {
  opacity: 1;
}

/* Social Column */
.footer-social-text {
  color: hsl(0 0% 100% / 0.7);
  font-size: var(--fs-9);
  line-height: 1.7;
  margin-bottom: var(--spacing-2);
}

.social-icons-row {
  display: flex;
  gap: var(--spacing-1);
  margin-bottom: var(--spacing-3);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 100% / 0.08);
  border: 1px solid hsl(0 0% 100% / 0.15);
  color: white;
  text-decoration: none;
  font-size: var(--fs-8);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--primary)) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon:hover i {
  transform: scale(1.1);
}

/* =====================================================================
           FOOTER DIVIDER
           ===================================================================== */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.2), transparent);
  margin: 0 auto;
  width: 80%;
}

/* =====================================================================
           FOOTER BOTTOM
           ===================================================================== */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-2) 0;
  /* flex-wrap: wrap; */
  gap: var(--spacing-1);
}

.footer-bottom p {
  color: hsl(0 0% 100% / 0.55);
  font-size: var(--fs-9);
  margin: 0;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-2);
}

.footer-legal a {
  color: hsl(0 0% 100% / 0.55);
  font-size: var(--fs-9);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-default);
}

.footer-legal a:hover {
  color: hsl(var(--secondary));
}

/* Back to top button */
.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
}

.back-to-top:hover {
  background: hsl(var(--secondary));
  border-color: hsl(var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 4px 15px hsl(var(--secondary) / 0.4);
}

/* =====================================================================
           ANIMATIONS
           ===================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-col {
  animation: fadeInUp 0.6s ease-out both;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

/* =====================================================================
           RESPONSIVE
           ===================================================================== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4) var(--spacing-3);
  }
}

@media (max-width: 768px) {
  .footer {
    border-radius: calc(var(--radius) * 3) calc(var(--radius) * 3) 0 0;
    background-attachment: scroll;
    /* Disable parallax on mobile */
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-2);
  }

  .footer-cta-form {
    width: 100%;
    min-width: unset;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--spacing-4) 0;
  }

  .footer-col h4::after {
    margin: 0.6rem auto 0;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-links-list li a {
    justify-content: center;
  }

  .social-icons-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-1);
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cta-form {
    flex-direction: column;
  }

  .footer-cta-form input {
    border-radius: 100px;
    border-right: 1px solid hsl(0 0% 100% / 0.2);
    margin-bottom: 0.5rem;
  }

  .footer-cta-form button {
    border-radius: 100px;
  }
}



/* =====================================================================
           SECTION 1 — PAGE BANNER
           ===================================================================== */
.about-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(154deg, hsl(219deg 62% 34% / 25%) 0%, hsl(var(--blue-dark)) 100%);
  padding-top: 120px;
  /* clears floating header */
  padding-bottom: var(--spacing-4);
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, hsl(var(--secondary) / 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, hsl(var(--warning) / 0.1) 0%, transparent 40%);
  z-index: 1;
}

.about-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: white;
}

.about-banner .banner-content {
  max-width: 100%;
}

.banner-content h1 {
  font-size: var(--fs-1);
  font-weight: 800;
  margin-bottom: var(--spacing-1);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out both;
}

.banner-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--warning)), hsl(var(--secondary)));
  border-radius: 2px;
  margin: 0 auto var(--spacing-1);
  animation: scaleXIn 0.7s ease-out 0.2s both;
}

.banner-content p {
  color: hsl(0 0% 100% / 0.85);
  font-size: var(--fs-5);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

/* =====================================================================
           AESTHETIC IMAGE FRAMES
           ===================================================================== */
.image-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(33, 70, 140, 0.18);
  transition: var(--transition-slow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-frame:hover {
  transform: translateY(-4px);
}

/* Decorative gradient offset border */
.image-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--warning)) 100%);
  border-radius: 2.3rem;
  z-index: -1;
  opacity: 0.35;
  transition: var(--transition-slow);
}

.image-frame:hover::before {
  inset: -6px;
  opacity: 0.6;
}

/* Corner decoration */
.image-frame::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--secondary) / 0.25), transparent);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.frame-left::after {
  top: -20px;
  left: -20px;
}

.frame-right::after {
  bottom: -20px;
  right: -20px;
  background: linear-gradient(315deg, hsl(var(--warning) / 0.2), transparent);
}

/* =====================================================================
           SECTION 2 — COMMITMENT
           ===================================================================== */
.commitment-section {
  padding: var(--spacing-5) 0;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--blue-light) / 0.3) 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-5);
  align-items: center;
}

.split-image {
  height: 420px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.split-content h2 {
  font-size: var(--fs-3);
  color: hsl(var(--primary));
  margin-bottom: var(--spacing-2);
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  position: relative;
  padding-bottom: var(--spacing-1);
}

.split-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--secondary)), hsl(var(--warning)));
  border-radius: 2px;
}

.section-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, hsl(var(--blue-light)) 0%, hsl(var(--secondary) / 0.15) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-size: var(--fs-6);
  border: 2px solid hsl(var(--blue-light-active));
}

/* =====================================================================
           SECTION 3 — JOURNEY
           ===================================================================== */
.journey-section {
  padding: var(--spacing-5) 0;
  background: hsl(var(--background));
  position: relative;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--border)), transparent);
}

.full-width-text {
  margin-top: var(--spacing-4);
  padding: var(--spacing-3);
  background: linear-gradient(135deg, hsl(var(--blue-light) / 0.5) 0%, hsl(var(--secondary) / 0.05) 100%);
  border-radius: calc(var(--radius) * 3);
  border: 1px solid hsl(var(--border));
}

.full-width-text p {
  color: hsl(var(--grey-700));
  margin: 0;
  font-size: var(--fs-p);
}

.highlights-grid {
  margin-top: var(--spacing-3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-1);
  padding: var(--spacing-2);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2);
  transition: var(--transition-default);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(33, 70, 140, 0.08);
  border-color: hsl(var(--primary) / 0.2);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-7);
  color: white;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  margin-top: 2px;
}

.highlight-text {
  font-size: var(--fs-8);
  font-weight: 600;
  color: hsl(var(--grey-800));
  line-height: 1.5;
}

/* =====================================================================
           SECTION 4 — QUOTE
           ===================================================================== */
.quote-section {
  padding: var(--spacing-5) 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--blue-dark)) 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: var(--spacing-3);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
  color: hsl(0 0% 100% / 0.06);
  pointer-events: none;
  z-index: 1;
}

.quote-section::after {
  content: '\201D';
  position: absolute;
  bottom: -80px;
  right: var(--spacing-3);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
  color: hsl(0 0% 100% / 0.06);
  pointer-events: none;
  z-index: 1;
}

.quote-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-3);
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: var(--fs-2);
  font-weight: 800;
  color: white;
  line-height: 1.4;
  text-wrap: balance;
  font-style: italic;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  border: none;
  background: none;
  padding: 0;
}

.quote-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--warning)), hsl(var(--secondary)));
  border-radius: 2px;
  margin: var(--spacing-2) auto;
}

.quote-author {
  color: hsl(0 0% 100% / 0.8);
  font-size: var(--fs-7);
  font-weight: 600;
  margin-top: var(--spacing-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================================================================
           SECTION 5 — TRUSTEES
           ===================================================================== */
.trustees-section {
  padding: var(--spacing-5) 0;
  background: linear-gradient(180deg, hsl(var(--blue-light) / 0.2) 0%, white 100%);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4);
}

.section-header h2 {
  font-size: var(--fs-3);
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-1);
  position: relative;
  margin-bottom: var(--spacing-1);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--secondary)), hsl(var(--warning)));
  margin: var(--spacing-1) auto 0;
  border-radius: 2px;
}

.section-header p {
  color: hsl(var(--muted-foreground));
  font-size: var(--fs-p);
  max-width: 600px;
  margin: 0 auto;
}

.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-3);
}

.trustee-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-slow);
  box-shadow: 0 10px 40px rgba(33, 70, 140, 0.06);
  position: relative;
}

.trustee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(33, 70, 140, 0.14);
  border-color: hsl(var(--primary) / 0.15);
}

.trustee-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trustee-card:hover .trustee-image img {
  transform: scale(1.05);
}

.trustee-avatar-placeholder {
  width: 100px;
  height: 100px;
  background: hsl(0 0% 100% / 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--fs-3);
  font-weight: 700;
  border: 3px solid hsl(0 0% 100% / 0.3);
}

.trustee-body {
  padding: var(--spacing-3) var(--spacing-2);
}

.trustee-name {
  font-size: var(--fs-5);
  color: hsl(var(--primary));
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.trustee-role {
  font-size: var(--fs-9);
  color: hsl(var(--secondary));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.trustee-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-1);
  margin-top: var(--spacing-2);
}

.trustee-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--blue-light));
  color: hsl(var(--primary));
  font-size: var(--fs-8);
  text-decoration: none;
  transition: var(--transition-default);
  border: 1px solid hsl(var(--border));
}

.trustee-social a:hover {
  background: hsl(var(--primary));
  color: white;
  transform: translateY(-2px);
}

/* =====================================================================
           SECTION 6 — PARTNERS
           ===================================================================== */
.partners-section {
  padding: var(--spacing-5) 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, hsl(var(--blue-light) / 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.partner-slider-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.partner-track:hover {
  animation-play-state: paused;
}

.partner-slide {
  flex: 0 0 25%;
  padding: var(--spacing-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  width: 100%;
  height: 100px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2);
  box-shadow: 0 4px 20px rgba(33, 70, 140, 0.04);
  transition: var(--transition-default);
  font-weight: 700;
  color: hsl(var(--grey-400));
  font-size: var(--fs-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partner-logo:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 10px 30px rgba(33, 70, 140, 0.1);
  transform: scale(1.05);
  color: hsl(var(--primary));
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================================
           ANIMATIONS & UTILITIES
           ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleXIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* =====================================================================
           RESPONSIVE
           ===================================================================== */
@media (max-width: 1024px) {
  .trustees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-slide {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-3);
  }

  .split-image {
    height: 320px;
    order: 1;
  }

  .split-content {
    order: 2;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .trustees-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .partner-slide {
    flex: 0 0 50%;
  }

  .quote-card blockquote {
    font-size: var(--fs-4);
  }

  .about-banner {
    min-height: 40vh;
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .image-frame {
    border-radius: 1.2rem;
  }

  .image-frame::before {
    border-radius: 1.4rem;
  }

  .trustee-image {
    height: 240px;
  }

  .quote-section::before,
  .quote-section::after {
    font-size: 10rem;
  }
}










        /* =====================================================================
           BLOG HEADER / HERO IMAGE
           ===================================================================== */
        .blog-hero {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
            border-radius: 0 0 calc(var(--radius) * 4) calc(var(--radius) * 4);
            box-shadow: 0 20px 60px rgba(33, 70, 140, 0.12);
        }
        .blog-hero img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 6s ease;
        }
        .blog-hero:hover img { transform: scale(1.03); }

        .blog-hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, hsl(var(--primary) / 0.85) 0%, transparent 60%);
        }

        /* =====================================================================
           META BAR
           ===================================================================== */
        .meta-bar {
            display: flex; align-items: center; justify-content: center;
            gap: var(--spacing-3);
            padding: var(--spacing-2) 0;
            margin-top: calc(var(--spacing-3) * -1);
            position: relative; z-index: 2;
        }
        .meta-chip {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: hsl(var(--card));
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: var(--fs-9);
            font-weight: 600;
            color: hsl(var(--muted-foreground));
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid hsl(var(--border));
        }
        .meta-chip i { color: hsl(var(--primary)); font-size: 0.85em; }
        .meta-chip .category-tag {
            background: hsl(var(--primary));
            color: white;
            padding: 0.2rem 0.7rem;
            border-radius: 100px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* =====================================================================
           BLOG TITLE
           ===================================================================== */
        .blog-title-section {
            text-align: center;
            padding: var(--spacing-3) 0 var(--spacing-4);
            max-width: 800px;
            margin: 0 auto;
        }
        .blog-title-section h1 {
            color: hsl(var(--primary));
            line-height: 1.2;
            margin-bottom: var(--spacing-1);
            position: relative;
            display: inline-block;
        }
        .blog-title-section h1::after {
            content: ''; display: block; width: 60px; height: 4px;
            background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
            margin: var(--spacing-1) auto 0;
            border-radius: 2px;
        }

        /* =====================================================================
           MAIN LAYOUT: CONTENT + SIDEBAR
           ===================================================================== */
        .blog-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: var(--spacing-4);
            align-items: start;
            padding-bottom: var(--spacing-5);
        }

        /* Main Content Card */
        .content-card {
            background: hsl(var(--card));
            border-radius: calc(var(--radius) * 2);
            padding: var(--spacing-4);
            box-shadow: 0 10px 40px rgba(33, 70, 140, 0.06);
            border: 1px solid hsl(var(--border));
        }

        .article-content h2 {
            padding-bottom: 0.5rem;
            border-bottom: 2px solid hsl(var(--blue-light));
            display: inline-block;
        }
        .article-content blockquote {
            margin: var(--spacing-3) 0;
            padding: var(--spacing-2) var(--spacing-3);
            background: hsl(var(--blue-light));
            border-left: 4px solid hsl(var(--secondary));
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: hsl(var(--primary));
            font-weight: 500;
        }
        .article-content ul {
            margin: var(--spacing-2) 0 var(--spacing-3) var(--spacing-3);
            color: hsl(var(--grey-700));
        }
        .article-content ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
            list-style: none;
        }
        .article-content ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: hsl(var(--secondary));
            font-size: 0.85em;
        }

        /* Sidebar */
        .sidebar {
            display: flex; flex-direction: column; gap: var(--spacing-3);
            position: sticky; top: var(--spacing-2);
        }

        .sidebar-card {
            background: hsl(var(--card));
            border-radius: calc(var(--radius) * 2);
            padding: var(--spacing-3);
            box-shadow: 0 10px 40px rgba(33, 70, 140, 0.06);
            border: 1px solid hsl(var(--border));
        }
        .sidebar-title {
            font-size: var(--fs-6);
            color: hsl(var(--primary));
            margin-bottom: var(--spacing-2);
            padding-bottom: var(--spacing-1);
            border-bottom: 2px solid hsl(var(--blue-light));
            display: flex; align-items: center; gap: 0.5rem;
        }
        .sidebar-title i { color: hsl(var(--secondary)); }

        .recent-post {
            display: flex; gap: var(--spacing-1);
            padding: var(--spacing-1) 0;
            border-bottom: 1px solid hsl(var(--border));
            transition: var(--transition-default);
        }
        .recent-post:last-child { border-bottom: none; }
        .recent-post:hover {
            background: hsl(var(--blue-light) / 0.4);
            margin: 0 calc(var(--spacing-1) * -1);
            padding-left: var(--spacing-1);
            padding-right: var(--spacing-1);
            border-radius: var(--radius);
        }
        .recent-thumb {
            width: 60px; height: 60px; min-width: 60px;
            border-radius: var(--radius);
            background: linear-gradient(135deg, hsl(var(--blue-light)), hsl(var(--secondary) / 0.2));
            display: flex; align-items: center; justify-content: center;
            color: hsl(var(--primary));
            font-size: var(--fs-7);
            overflow: hidden;
        }
        .recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .recent-info h4 {
            font-size: var(--fs-8);
            color: hsl(var(--foreground));
            margin-bottom: 0.25rem;
            line-height: 1.4;
            font-weight: 600;
        }
        .recent-meta {
            font-size: var(--fs-9);
            color: hsl(var(--muted-foreground));
            display: flex; align-items: center; gap: 0.4rem;
        }

        /* =====================================================================
           COMMENTS SECTION
           ===================================================================== */
        .comments-section {
            margin-top: var(--spacing-4);
            padding-top: var(--spacing-4);
            border-top: 2px solid hsl(var(--blue-light));
        }
        .comments-section h3 {
            display: flex; align-items: center; gap: 0.5rem;
            margin-bottom: var(--spacing-3);
            color: hsl(var(--primary));
            font-size: var(--fs-4);
        }
        .comments-section h3 i { color: hsl(var(--secondary)); }

        .comment {
            display: flex; gap: var(--spacing-2);
            padding: var(--spacing-2);
            background: hsl(var(--muted));
            border-radius: calc(var(--radius) * 1.5);
            margin-bottom: var(--spacing-2);
            border: 1px solid hsl(var(--border));
        }
        .comment-avatar {
            width: 45px; height: 45px; min-width: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 700; font-size: var(--fs-8);
        }
        .comment-body h5 { font-size: var(--fs-8); margin-bottom: 0.2rem; color: hsl(var(--primary)); }
        .comment-body .comment-date {
            font-size: var(--fs-9); color: hsl(var(--muted-foreground)); margin-bottom: 0.4rem;
        }
        .comment-body p { font-size: var(--fs-8); margin: 0; color: hsl(var(--grey-700)); line-height: 1.6; }

        /* Comment Form */
        .comment-form {
            background: hsl(var(--blue-light) / 0.4);
            padding: var(--spacing-3);
            border-radius: calc(var(--radius) * 2);
            border: 1px solid hsl(var(--border));
            margin-top: var(--spacing-3);
        }
        .comment-form h4 {
            font-size: var(--fs-6);
            color: hsl(var(--primary));
            margin-bottom: var(--spacing-2);
        }
        .form-row {
            display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-2);
            margin-bottom: var(--spacing-2);
        }
        .form-group {
            display: flex; flex-direction: column; gap: 0.4rem;
        }
        .form-group label {
            font-size: var(--fs-9); font-weight: 600; color: hsl(var(--foreground));
        }
        .form-group label .required { color: hsl(var(--destructive)); margin-left: 2px; }

        /* =====================================================================
           RESPONSIVE
           ===================================================================== */
        @media (max-width: 960px) {
            .blog-layout { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .blog-hero { height: 300px; border-radius: 0 0 calc(var(--radius)*2) calc(var(--radius)*2); }
        }
        @media (max-width: 640px) {
            .meta-bar { flex-wrap: wrap; gap: var(--spacing-1); }
            .form-row { grid-template-columns: 1fr; }
            .content-card { padding: var(--spacing-2); }
            .blog-title-section h1 { font-size: var(--fs-3); }
        }


         /* =====================================================================
           STICKY SOCIAL SIDEBAR
           ===================================================================== */
        .sticky-social {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            /* gap: 10px; */
        }

        .social-item {
            display: flex;
            align-items: center;
            gap: 14px;
            width: 50px;
            height: 50px;
            padding: 0 16px;
            border-radius: 0 25px 25px 0; /* rounded on the right only */
            /* background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--blue-dark)) 100%); */
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: var(--fs-9);
            letter-spacing: 0.03em;
            text-transform: uppercase;
            overflow: hidden;
            white-space: nowrap;
            border: 1px solid hsl(0 0% 100% / 0.15);
            border-left: none;
            box-shadow: 4px 6px 20px rgba(33, 70, 140, 0.18);
            transition: var(--transition-slow);
            position: relative;
            cursor: pointer;
            /* Initial hidden state for stagger animation */
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* Staggered entrance */
        .social-item:nth-child(1) { animation-delay: 0.1s; }
        .social-item:nth-child(2) { animation-delay: 0.2s; }
        .social-item:nth-child(3) { animation-delay: 0.3s; }
        .social-item:nth-child(4) { animation-delay: 0.4s; }

        .social-item i {
            font-size: 1.15rem;
            min-width: 18px;
            text-align: center;
            transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 2;
        }

        .social-item span {
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.35s ease;
            position: relative;
            z-index: 2;
        }

        /* Hover: expand & translate outward */
        .social-item:hover {
            width: 155px;
            transform: translateX(10px); /* moves away from left edge */
            box-shadow: 8px 10px 30px rgba(0, 0, 0, 0.2);
            border-color: transparent;
        }

        .social-item:hover i {
            transform: rotate(360deg) scale(1.15);
        }

        .social-item:hover span {
            opacity: 1;
            transform: translateX(0);
        }

        /* Brand colors on hover */
        .social-item.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-item.facebook {
            background: #1877F2;
        }

        .social-item.linkedin {
            background: #0A66C2;
        }

        .social-item.youtube {
            background: #FF0000;
        }
        /* Brand colors on hover */
        .social-item.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-item.facebook:hover {
            background: #1877F2;
        }

        .social-item.linkedin:hover {
            background: #0A66C2;
        }

        .social-item.youtube:hover {
            background: #FF0000;
        }

        /* =====================================================================
           MOBILE: Convert to bottom bar
           ===================================================================== */
        @media (max-width: 768px) {
            .sticky-social {
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                transform: none;
                flex-direction: row;
                justify-content: center;
                gap: 0;
                padding: 8px 0;
                /* background: hsl(var(--primary-color) / 0.95); */
                backdrop-filter: blur(12px);
                border-top: 1px solid hsl(0 0% 100% / 0.1);
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
                animation: none;
            }

            .social-item {
                width: auto;
                height: 44px;
                flex: 1;
                justify-content: center;
                border-radius: 12px;
                margin: 0 4px;
                transform: none;
                opacity: 1;
                animation: none;
                background: transparent;
                box-shadow: none;
                border: 1px solid hsl(0 0% 100% / 0.1);
            }

            .social-item span { display: none; }

            .social-item:hover {
                width: auto;
                transform: scale(1.1) translateY(-4px);
                background: hsl(0 0% 100% / 0.15);
            }

            .social-item:hover i {
                transform: rotate(360deg) scale(1.2);
            }

            /* Keep brand hover tints on mobile too */
            .social-item.instagram{ background: linear-gradient(45deg, #f09433, #bc1888); }
            .social-item.facebook { background: #1877F2; }
            .social-item.linkedin { background: #0A66C2; }
            .social-item.youtube { background: #FF0000; }
            .social-item.instagram:hover { background: linear-gradient(45deg, #f09433, #bc1888); }
            .social-item.facebook:hover { background: #1877F2; }
            .social-item.linkedin:hover { background: #0A66C2; }
            .social-item.youtube:hover { background: #FF0000; }
        }

        /* =====================================================================
           KEYFRAMES
           ===================================================================== */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }