/* ===== MODERN COLOR SYSTEM ===== */
:root {
  /* Primary Colors - Refined palette */
  --color-primary: #084118;        /* Deep Leaf Green */
  --color-primary-dark: #166534;   /* Darker forest tone */
  --color-primary-light: #22c55e;  /* Bright leaf green */
  --color-primary-pastel: #dcfce7; /* Soft pastel green */

  /* Secondary Colors - Sophisticated crimson */
  --color-secondary: #dc2626;
  --color-secondary-dark: #b91c1c;
  --color-secondary-light: #ef4444;
  --color-secondary-pastel: #fee2e2;
  
  /* Accent Colors - Warm amber */
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-accent-light: #fbbf24;
  --color-accent-pastel: #fef3c7;
  
  /* Neutral Colors - Modern grays */
  --color-dark: #1f2937;
  --color-gray-800: #374151;
  --color-gray-600: #4b5563;
  --color-gray-400: #9ca3af;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --color-white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(21, 128, 61, 0.9) 0%, rgba(22, 101, 52, 0.9) 100%);
  
  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  
  /* Spacing */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-gray-800);
  background-color: var(--color-primary);
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-gray-100);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--light {
  background: linear-gradient(135deg,  var(--color-primary)70%, #f9fafb 100%);
}

.section--dark {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--light h2 {
  color: var(--color-white);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

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

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
  color:var(--color-primary);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow);
}

.btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;  
  transition: opacity 0.5s ease;
}

.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;     
}


.whatsapp-float img {
  width: 30px;
  height: 30px;
}


/* ===== MODERN HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  z-index: 1000;
  transition: var(--transition);
  display: none;
}

.header.scrolled {
  box-shadow: var(--shadow);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: initial;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo__img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.nav-cta{
  display: none;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.logo__tagline {
  font-size: 0.75rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Modern Mobile Navigation */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  margin-left: 50px;
}

.nav__toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  background: var(--color-primary);
  border-radius: 3px;
  left: 5px;
  transition: var(--transition);
}

.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 18px; }
.nav__toggle span:nth-child(3) { top: 24px; }

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

.nav__toggle.active span:nth-child(1),
.nav__toggle.active span:nth-child(3) {
  background-color:  var(--color-secondary-dark); 
}


.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--color-dark);
  padding: 0.5rem 0;
  position: relative;
  font-size: 1rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.btn--primary {
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.nav__link.btn--primary:hover {
  background: var(--color-secondary-light);
  color: var(--color-accent-light);
}

.nav__link.btn--primary::after {
  display: none;
}

/* ===== MODERN HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out; /* Smooth fade */
  z-index: -2;
}

.hero__background.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  z-index: 0;
}

.hero__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Change from center to flex-end */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  margin-top: 5rem;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end; /* Change from center to flex-end */
  height: 100%;
  padding-bottom: 3rem; /* Add padding to align with buttons */
}

.hero__right {
  display: flex;
  align-items: flex-end; /* Change from center to flex-end */
  justify-content: center;
  height: 100%;
  padding-bottom: 3rem; /* Add padding to align with subtitle */
}

.hero__logo {
  width: 190px;
  margin-bottom: 0.5rem;
}

.hero__school-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.hero__school-text {
  display: flex;
  flex-direction: column;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin-left: 0;
}

.hero__school-line {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: left;
  color: #ffffff;
  text-shadow: 
    2px 2px 0px #006400,
    -2px -2px 0px #006400,
    2px -2px 0px #006400,
    -2px 2px 0px #006400,
    4px 4px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

/* Ensure proper spacing between lines */
.hero__school-line:first-child {
  margin-bottom: 0.5rem; /* Adjust spacing as needed */
}

.hero__subtitle {
  font-size: 2rem;
  font-weight: bold;
  max-width: 450px;
  color: #ADFF2F;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.4);
}

.hero__cta {
  display: flex;
  gap: 2rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: fadeIn 1s ease-in, bounce 2s infinite 1s;
  opacity: 1;
  display: block;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.typing-animation {
  overflow: hidden;
  border-right: .15rem solid #16a34a; /* Cursor */
  white-space: nowrap;
  margin: 0 auto;
  animation: 
    typing 2.8s steps(40, end),
    blink-caret .75s step-end infinite,
    remove-cursor 0.1s 3.5s forwards; /* New animation to remove cursor */
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #16a34a; }
}

/* New keyframes to remove cursor */
@keyframes remove-cursor {
  to { border-color: transparent; }
}

.pages-sub {
  font-size: 1.3rem;
  color: var(--color-accent-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1);
}

.pages-title{
  font-size: 3rem;
  color: var(--color-gray-100);
}

/* Responsive */
@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 2rem;
    margin-bottom: 10rem;
    position: relative;
  }

  .hero__overlay {
    background: rgba(0,0,0,0.1);
  }

  .hero__school-line {
    font-size: 2.15rem;
  }

  .hero__right {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__left {
    padding: 0;
  }

  .hero__subtitle{
    font-size: 1.4rem !important;
    margin-bottom: 1.5rem;
    text-shadow: 
    0 1px 3px rgba(0,0,0,0.8),
    0 2px 6px rgba(0,0,0,0.5),
    0 0 15px rgba(0,0,0,0.3);
    position: absolute;
    bottom: -5rem; /* Adjust as needed */
    left: 50%; /* Change from 0 to 50% */
    transform: translateX(-50%); /* Center properly */
    margin-top: 2rem;
    padding: 0 1rem; /* Add padding */
    box-sizing: border-box; /* Include padding in width */
  }

  .hero__logo {
    width: 122px;
  }

  .hero__cta {
    gap: 0.5rem;
    margin-top: -0.5rem;
  }
  
  .hero__cta .btn {
    flex: 1;
    min-width: 0; /* Allow flex shrinking */
    white-space: nowrap; /* Prevent text wrapping */
    padding: 1rem 1.2rem; /* Slightly smaller padding */
    font-size: 1rem; /* Slightly smaller font */
  }

  .pages-sub {
  font-size: 1.13rem;
}

.pages-title{
  font-size: 2rem;
}
}


/* About Section */

.about-section {
  background: linear-gradient(135deg,  var(--color-primary)70%, #f9fafb 100%);
  padding: 5rem 0;
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image Styling */
.about__image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.about__image img:hover {
  transform: scale(1.02);
}

/* Title Styling with color accent underline */
.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-50);
  position: relative;
}
.about-title::after {
  content: "";
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #d32f2f, #fbc02d); /* green → red → yellow */
  position: absolute;
  left: 0;
  bottom: -12px;
  border-radius: 3px;
}

/* Text Styling */
.about-text {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--color-white);
  font-size: 1.05rem;
}

/* Button with school colors */
.btn--brand {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-accent);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  background: var(--color-primary);
  color: var(--color-white);
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hidden state */
.slide-in-left, .slide-in-right {
  opacity: 0;
  transform: translateX(0); /* reset for smoother fallback */
}

/* Active state triggers animation */
.slide-in-left.active {
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right.active {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}


/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image {
    order: -1; /* image goes above text */
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn--brand {
    margin-top: 1.5rem;
  }
}

/* vision and mission section  */

.vision-mission {
  padding: 80px 0;
  background: linear-gradient(135deg,  var(--color-primary)70%, #f9fafb 100%);
}

.vision-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vision-mission__card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.vision-mission__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #16a34a; /* Your brand color */
}

.vision-mission__card h2 {
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.vision-mission__card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-mission__grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission__card {
    padding: 30px 20px;
  }
}

/* ===== MODERN FEATURES SECTION ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.highlight {
  background: linear-gradient(90deg, #16a34a, #dc2626, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;  
}

.feature {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature:nth-child(1) { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.feature:nth-child(2) { background: linear-gradient(135deg, #fef9c3, #fef08a); }
.feature:nth-child(3) { background: linear-gradient(135deg, #9af0b4, #bbce10); }
.feature:nth-child(4) { background: linear-gradient(135deg, #dbeafe, #ce900c); }
.feature:nth-child(5) { background: linear-gradient(135deg, #d1fae5, #fecaca); }

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent-light);
  transition: width 0.5s ease, background 0.5s ease;
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.feature:hover::before {
  background: linear-gradient(90deg, #16a34a, #dc2626, #facc15, #16a34a);
  width: 120%;
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16a34a, #dc2626, #facc15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature__icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.feature:hover .feature__icon {
  transform: scale(1.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.feature__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: 700;
}

.feature__description {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.5;
}


/* ===== MODERN PROGRAMS SECTION ===== */

.programs-section {
  padding: 6rem 0;
  position: relative;
}

/* Optional: Add subtle pattern overlay */
section.programs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.programs-section .program {
  background: var(--color-accent-pastel); /* slightly transparent white for readability */
  color: #111;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.programs-section .program:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.program {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

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

.program__image {
  height: 250px;
  overflow: hidden;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  position: relative;
}

.program__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program:hover .program__image img {
  transform: scale(1.1);
}

.program__content {
  padding: 2rem;
}

.program__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.program__description {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.see-more-btn{
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-accent);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  background: var(--color-primary);
  color: var(--color-white);
}


/* ===== IMPACT SECTION ===== */
.impact-section {
  padding: 3rem 0;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  
  /* CSS-only background image */
  background-image: url('/assets/images/bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates the fixed effect */
  background-repeat: no-repeat;
}

/* Overlay for readability */
.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 134, 49, 0.1);
  z-index: 0;
}

.impact-section .container {
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.impact-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.impact-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.impact-item p {
  color: var(--color-gray-700);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .impact-section {
    padding: 2rem 0;
    min-height: 300px;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .impact-item {
    padding: 1rem;
  }
  
  .impact-icon {
    font-size: 2rem;
  }
  
  .impact-item h3 {
    font-size: 1rem;
  }
  
  .impact-item p {
    font-size: 0.85rem;
  }
}

/* Tablet Optimization */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MODERN NEWS SECTION ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.news-item {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 2px solid #16a34a;
}

.news-item__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-item__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.news-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-item:hover .news-item__image img {
  transform: scale(1.1);
}

.news-item:hover .news-item__title {
  color: #16a34a; /* bright brand accent on hover */
}

.news-item__content {
  padding: 2rem;
}

.news-item__date {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-item__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-item__excerpt {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.text-center .btn{
  background: var(--color-accent);
}

.text-center .btn:hover{
  color: var(--color-white);
  background: var(--color-primary);
}

/* ===== MODERN GALLERY SECTION ===== */
.section--gallery {
  background-image: url('/assets/images/bg2.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* subtle parallax */
  padding: 6rem 0;
  position: relative;
}

.section--gallery h2 {
  background: linear-gradient(90deg, #00ff88a1, #ffea00, #ca1515);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  margin-bottom: 4rem;
  font-size: 2.5rem;
}


.section--gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* dark overlay for readability */
  pointer-events: none;
  z-index: 0;
}

.section--gallery .container {
  position: relative; /* to stay above overlay */
  z-index: 1;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(22,163,74,0.85), rgba(220,38,38,0.7));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.gallery-item__title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.gallery-item__category {
  color: #facc15;
  font-size: 1rem;
  margin-top: 0.3rem;
  font-weight: 600;
}

/* virtual tour teaser  */

.section--virtual-tour {
  background: var(--color-primary-pastel);
  padding: 6rem 0;
  color: #fff;
}

.section--virtual-tour .about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
}

.vt__content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.vt__content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-primary)
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

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

/* ===== MODERN TESTIMONIALS SECTION ===== */
.section--testimonials {
  padding: 6rem 0;
}

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

.testimonial {
  text-align: center;
  padding: 2rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial__content {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--color-gray-800);
  position: relative;
}

.testimonial__content::before,
.testimonial__content::after {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  font-family: Georgia, serif;
}

.testimonial__content::before { top: -15px; left: -20px; }
.testimonial__content::after { bottom: -30px; right: -20px; }

.testimonial__author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.testimonial__role {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-top: 0.25rem;
}

.testimonial__video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #000;
  width: 100%;
  max-width: 280px; /* Default desktop size */
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9/16;
}

.testimonial__video video {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(22, 163, 74, 0.85); /* brand green with transparency */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.testimonial__video:hover .play-button {
  background: rgba(22, 163, 74, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Adjust text content spacing */
.testimonial__content {
  margin-top: 1.5rem;
}

/* Make sure slides have enough spacing */
.swiper-slide {
  height: auto;
  padding-bottom: 2rem;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: #16a34a; /* brand green */
}

/* Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  background: var(--color-primary-pastel);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #16a34a;
  color: white;
  transform: scale(1.1);
}

/* Position adjustments for mobile */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .testimonial__video {
    max-width: 320px; /* Larger on mobile */
  }

  .play-button {
    display: none;
  }
}

.testimonial__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* FAQ Container */
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Individual FAQ Item */
.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* Hover effect */
.faq-item:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

/* Question */
.faq-item__question {
  padding: 1.5rem 2rem;
  background-color: #16a34a;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  color: #fff;
  transition: background 0.3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; /* rounded top */
}

/* Plus/Minus Icon */
.faq-item__question span {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
  color: #fff;
}

/* Active state for plus/minus */
.faq-item.active .faq-item__question span {
  transform: rotate(45deg);
}

/* Answer */
.faq-item__answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  background-color: #fff; /* normal white */
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-gray-800);
}

/* Active answer */
.faq-item.active .faq-item__answer {
  padding: 1.5rem 2rem;
  max-height: 500px;
}

/* Optional: subtle border accent when open */
.faq-item.active {
  border-left: 5px solid #16a34a; /* brand green accent */
}

.home-cta{
  background-color: var(--color-white);
}


/* ===== MODERN CONTACT SECTION ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.contact-item__icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary-pastel);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.contact-item__content h4 {
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.contact-item__content p,
.contact-item__content a {
  color: var(--color-gray-600);
  font-size: 1.1rem;
}

.contact-form {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== MODERN FORM STYLES ===== */
.form__group {
  margin-bottom: 2rem;
  position: relative;
}

.form__label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1.1rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 1.1rem;
  background: var(--color-gray-50);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== MODERN FOOTER ===== */
.footer {
  background: #042b0f;
  color: var(--color-gray-200);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo .logo__img {
  height: 50px;
}

.footer__logo .logo__name {
  color: var(--color-white);
  font-size: 1.3rem;
}

.footer__logo .logo__tagline {
  color: var(--color-secondary);
}

.footer__title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-accent-light);
  border-radius: 2px;
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-gray-400);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer__link:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.footer__social-link:hover::before {
  left: 100%;
}

.footer__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
}

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

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-pastel); /* soft pastel green background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--color-secondary-light); /* red ring */
  border-top-color: var(--color-accent);          /* amber highlight */
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }
  
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .programs {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {

  h1, h2, h3 {
  font-size: 2rem;
}

 p {
  font-size: 1.2rem;
}

  .section {
    padding: 4rem 0;
  }

  .header {
      padding: 10px 0;
  }

  .logo__text{
    display: none;
  }

  .nav-cta{
    display: initial;
    border-color: var(--color-primary);
    color: var(--color-primary);
    padding: 6px 15px;
    border-radius: 0;
    font-size: 1rem;
    margin-right: -40px;
  }

  .nav-cta:hover {
    background-color: var(--color-primary);
    color: white;
    border: none;
  }

  .nav-btns {
    display: flex;
    margin-left: auto;
  }
  
  .nav__toggle {
    display: block;
  }
  
.nav__list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;

  /* Background gradient with your brand greens */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);

  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1.5rem;

  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--color-secondary-light);

  transition: var(--transition-slow);
  z-index: 1000;
}

.nav__list a {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s, transform 0.2s;
}

.nav__list a:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

  
  .nav__list.active {
    right: 0;
  }
  
  .nav__item {
    margin: 0;
    width: 100%;
  }
  
  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--color-accent-light);
  }
  
  .nav__link.btn--primary {
    margin-top: 1.5rem;
    justify-content: center;
    background: var(--color-secondary-light);
  }
  
  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__content h2, .section--light h2{
    font-size: 2rem;
  }


  .text-center {
    font-size: 2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature__title {
    font-size: 1.5rem;
  }

  .feature__description {
    font-size: 1rem;
  }

  .feature__icon {
    width: 70px;
    height: 70px;
  }

    .feature__icon svg{
    width: 40px;
    height: 40px;
  }

  .program__description {
    font-size: 1.1rem;
  }

  .news-item__title {
    font-size: 1.2rem;
  }

  .news-item__excerpt {
    font-size: 1rem;
  }

  .vt__content h2{
    font-size: 1.9rem;
  }

  .vt__content p{
    font-size: 1rem;
  }

  .faq-item{
    margin-bottom: 0.5rem;
  }

  .faq-item__question {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 2rem;
  }

  .full-post{
    font-size: 1rem;
    padding: 5px 15px;
  }

  .section--gallery h2{
    font-size: 30px;
  }

  .section--testimonials h2{
    font-size: 1.8rem;
  }

  .testimonial__content p{
    font-size: 1rem;
  }

  .final-cta{
    margin-top: 10px;
  }

  .footer-logo-text{
    display: initial;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__title {
    font-size: 1.2rem;
  }

  .footer__link {
    font-size: 1.2rem;
  }

  .footer__social-link {
  width: 40px;
  height: 40px;
}

}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .programs {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ICON SYSTEM ===== */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.icon-academic { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z'/%3E%3C/svg%3E"); }
.icon-globe { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }
.icon-individual { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E"); }
.icon-facilities { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z'/%3E%3C/svg%3E"); }