/* CSS Variables - Vibrant Duocolor Design */
:root {
  /* Vibrant duocolor palette - easy on eyes */
  --primary-blue: #4A90E2;
  --secondary-teal: #50C9C3;
  --accent-coral: #FF6B6B;
  --accent-gold: #FFD93D;
  
  /* Duocolor gradients throughout */
  --primary-gradient: linear-gradient(135deg, #4A90E2 0%, #50C9C3 100%);
  --secondary-gradient: linear-gradient(135deg, #50C9C3 0%, #4A90E2 100%);
  --accent-gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  --success-gradient: linear-gradient(135deg, #50C9C3 0%, #4A90E2 100%);
  --hero-gradient: linear-gradient(135deg, #4A90E2 0%, #50C9C3 100%);
  --trust-gradient: linear-gradient(135deg, #4A90E2 0%, #50C9C3 100%);
  
  /* Text colors for readability */
  --text-dark: #2C3E50;
  --text-medium: #5A6C7D;
  --text-light: #7F8C8D;
  --text-muted: #95A5A6;
  
  /* Background colors */
  --bg-light: #F8FFFE;
  --bg-lighter: #FFFFFF;
  --white: #FFFFFF;
  
  /* Vibrant shadows */
  --shadow: 0 8px 32px rgba(74, 144, 226, 0.15);
  --shadow-hover: 0 16px 48px rgba(74, 144, 226, 0.25);
  --card-shadow: 0 4px 20px rgba(74, 144, 226, 0.12);
  --hover-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 0 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Header for Trust - Always Visible */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.15) !important;
  z-index: 1000 !important;
  transition: var(--transition);
  border-bottom: 2px solid rgba(21, 101, 192, 0.12) !important;
  min-height: 80px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Force header visibility - Override any conflicting styles */
header.header,
.header,
[class*="header"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
}

/* Ensure navbar is always visible */
.header .navbar,
header .navbar {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.18);
  border-bottom-color: rgba(21, 101, 192, 0.15);
}

.navbar {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  position: relative;
  z-index: 1001;
  visibility: visible !important;
  opacity: 1 !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo {
  height: 65px;
  width: auto;
  background: transparent;
  border-radius: 0;
  filter: brightness(1.1) contrast(1.2);
  transition: var(--transition);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none !important;
}

.logo:hover {
  filter: brightness(1.2) contrast(1.3);
}

.brand-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-shadow: 0 1px 2px rgba(0, 86, 166, 0.1);
}

.navbar-nav {
  display: flex !important;
  list-style: none;
  gap: 2rem;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}

.navbar-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-nav a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 0.75rem 1rem;
  display: block;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
}

.donate-btn {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.donate-btn:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(80, 201, 195, 0.4);
}

.donate-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: left 0.5s;
}

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section - Vibrant Duocolor Design */
.hero {
  min-height: 100vh;
  height: auto;
  padding: 120px 0 80px;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 213, 79, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 86, 166, 0.1) 0%, transparent 50%);
  background-size: 800px 800px, 600px 600px, 400px 400px;
  animation: backgroundMove 20s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
  animation: floatUpDown 8s ease-in-out infinite;
}

.floating-icon i {
  font-size: 1.6rem;
  color: var(--primary-blue);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
  word-spacing: 0.1em;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 600px;
  width: 100%;
}

.hero-stat {
  text-align: center;
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(21, 101, 192, 0.08);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hero-stat:hover::before {
  transform: scaleX(1);
}

.hero-stat:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.15);
  border-color: rgba(21, 101, 192, 0.15);
}

.hero-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.hero-stat .stat-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-blue);
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 500px;
  width: 100%;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  justify-content: center;
}

.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: left 0.5s ease;
}

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

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

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

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--secondary-gradient);
  box-shadow: 0 8px 32px rgba(80, 201, 195, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.1s ease;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  border: 2px solid rgba(21, 101, 192, 0.08);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.1);
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.05), transparent);
  transition: left 0.6s ease;
}

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

.badge:hover {
  background: var(--white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(21, 101, 192, 0.15);
  border-color: rgba(21, 101, 192, 0.12);
}

.badge i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.scroll-arrow i {
  color: var(--white);
  font-size: 1.2rem;
}

@keyframes backgroundMove {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  50% {
    background-position: 100% 100%, 0% 0%, 25% 75%;
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

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

/* Impact Section - Vibrant Duocolor */
.impact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F8FFFE 0%, #E8F8F7 100%);
  position: relative;
  overflow: hidden;
}

.impact-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A90E2' fill-opacity='0.03'%3E%3Cpath d='M30 30c0 8.3-6.7 15-15 15s-15-6.7-15-15 6.7-15 15-15 15 6.7 15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056A6' fill-opacity='0.03'%3E%3Cpath d='M40 40c0 8.8-7.2 16-16 16s-16-7.2-16-16 7.2-16 16-16 16 7.2 16 16z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: capitalize;
}

.section-header h2::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  opacity: 0.8;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-top: 1.5rem;
}

.impact-slider-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.impact-slider-track {
  display: flex;
  gap: 2rem;
  animation: slideLeft 20s linear infinite;
  width: calc(300px * 6 + 2rem * 5);
}

.impact-slider-track:hover {
  animation-play-state: paused;
}

.impact-stat-card {
  min-width: 300px;
  background: linear-gradient(145deg, var(--white) 0%, #FAFAFA 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(21, 101, 192, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(21, 101, 192, 0.02) 100%);
  pointer-events: none;
}

.impact-stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--hover-shadow);
  border-color: rgba(21, 101, 192, 0.15);
}

.impact-stat-card:hover::after {
  background: linear-gradient(135deg, transparent 0%, rgba(21, 101, 192, 0.05) 100%);
}

.impact-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  border-radius: 24px 24px 0 0;
}

.stat-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
  animation: gentlePulse 4s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
  color: var(--white);
  font-size: 2rem;
}

@keyframes gentlePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  }
}

.vector-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1;
  position: relative;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding-bottom: 0.5rem;
}

.stat-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
  opacity: 0.6;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 3 - 2rem * 2));
  }
}



.impact-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.impact-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

.impact-slide {
  display: none;
  background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 86, 166, 0.15);
  border: 1px solid rgba(0, 86, 166, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideIn 0.6s ease-in-out;
}

.impact-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-green) 50%, var(--accent-gold) 100%);
}

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

.impact-icon {
  margin-bottom: 2.5rem;
  position: relative;
}

.futuristic-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 16px rgba(0, 86, 166, 0.2));
  animation: float 4s ease-in-out infinite;
}

.impact-number {
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: none;
  position: relative;
}

.impact-label {
  font-size: 1.4rem;
  color: var(--text-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.slider-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004c95 100%);
  color: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 86, 166, 0.3);
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, #45a049 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.slider-dots {
  display: flex;
  gap: 1rem;
}

.slider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 86, 166, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  transform: scale(1.2);
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 86, 166, 0.4);
}

.slider-dot:hover {
  background: var(--primary-blue);
  transform: scale(1.1);
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-10px) rotate(2deg); 
  }
  50% { 
    transform: translateY(-20px) rotate(0deg); 
  }
  75% { 
    transform: translateY(-10px) rotate(-2deg); 
  }
}

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

@keyframes ripple {
  0% { 
    transform: scale(1); 
    opacity: 0.3; 
  }
  100% { 
    transform: scale(1.8); 
    opacity: 0; 
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Initiatives Section - Compact */
.initiatives-section {
  padding: 4rem 0;
}

.initiatives-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.initiatives-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.initiative-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  border-left: 4px solid var(--secondary-green);
}

.initiative-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 86, 166, 0.15);
}

.initiative-vector {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.2);
  flex-shrink: 0;
}

.init-icon {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.initiative-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.initiative-info p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.4;
  margin: 0;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #E8F8F7 0%, #F8FFFE 100%);
}

.community-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  position: relative;
}

.community-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

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

.community-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-teal);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
}

.community-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.community-icon {
  font-size: 3rem;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.community-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.community-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.community-link {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.community-link:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(80, 201, 195, 0.4);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--primary-gradient);
  color: var(--white);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 400%;
}

.testimonial-slide {
  width: 25%;
  flex-shrink: 0;
  opacity: 1;
}

.testimonial-slide.active {
  opacity: 1;
}

.quote-icon {
  font-size: 3rem;
  color: #FFD93D;
  margin-bottom: 1.5rem;
}

.testimonial-slide p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.carousel-arrow:hover {
  background: #FFD93D;
  color: var(--primary-blue);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: #FFD93D;
  transform: scale(1.2);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 2rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  background: transparent;
  border-radius: 0;
  filter: brightness(1.1) contrast(1.2) drop-shadow(0 2px 4px rgba(255,255,255,0.1));
  mix-blend-mode: screen;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-section a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-section p a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-section p a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.credentials span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.credentials i {
  color: #FFD93D;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--secondary-teal);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.developer-credit {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.developer-credit a {
  color: #FFD93D;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.developer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  margin: 3% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 50px rgba(0, 86, 166, 0.3);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 166, 0.1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  margin: 0 0 0.3rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-header p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.qr-section {
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.qr-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.2rem;
  text-align: center;
}

.qr-code {
  max-width: 160px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.25);
  border: 3px solid var(--white);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 86, 166, 0.35);
}

.qr-section p {
  font-size: 0.85rem;
  color: var(--text-medium);
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.bank-details {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bank-details h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.bank-info {
  background: rgba(0, 86, 166, 0.05);
  border-radius: 6px;
  padding: 0.6rem;
  border: 1px solid rgba(0, 86, 166, 0.1);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 86, 166, 0.1);
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-label {
  font-weight: 600;
  color: var(--text-medium);
  font-size: 0.75rem;
}

.bank-value {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.75rem;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bank-details table {
  width: 100%;
  border-collapse: collapse;
}

.bank-details td {
  padding: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.bank-details td:first-child {
  font-weight: 600;
  color: var(--text-medium);
}

.tax-notice {
  background: linear-gradient(135deg, var(--secondary-green) 0%, #45a049 100%);
  color: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
  grid-column: 1 / -1;
}

.tax-notice i {
  font-size: 1rem;
  opacity: 0.9;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
  grid-column: 1 / -1;
}

.amount-btn {
  background: rgba(0, 86, 166, 0.1);
  border: 2px solid rgba(0, 86, 166, 0.2);
  color: var(--primary-blue);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.amount-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.copy-btn {
  background: rgba(0, 86, 166, 0.1);
  border: 1px solid rgba(0, 86, 166, 0.3);
  color: var(--primary-blue);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.65rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 0.4rem;
}

.copy-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}



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

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

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

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-green);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 5px solid var(--secondary-green);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 86, 166, 0.25);
  transition: var(--transition);
}

.team-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.35);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-card .position {
  color: var(--secondary-green);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-card .bio {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
}

.team-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.team-contact p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.team-specialties span {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Founder Section */
.founder-section {
  margin-bottom: 4rem;
  text-align: center;
}

.founder-card {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 86, 166, 0.15);
  border: 2px solid var(--accent-gold);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.founder-card img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--accent-gold);
  box-shadow: 0 15px 50px rgba(0, 86, 166, 0.3);
  flex-shrink: 0;
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.founder-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.founder-title {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-bio {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.founder-contact {
  margin-bottom: 1.5rem;
}

.founder-contact p {
  margin: 0.5rem 0;
  color: var(--text-medium);
  font-weight: 500;
}

.founder-achievements {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.achievement {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.team-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.team-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-green);
  border-radius: 2px;
}

/* Enhanced Team Images */
.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 5px solid var(--secondary-green);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 86, 166, 0.25);
  transition: var(--transition);
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
}

.team-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.35);
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }
  
  .founder-card img {
    width: 200px;
    height: 200px;
  }
  
  .founder-content h3 {
    font-size: 1.5rem;
  }
}

/* Programs Page Styles */
.program-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, var(--secondary-green), #45a049);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.impact-badge {
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

/* New Programs Section Styles */
.programs-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.program-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.program-overlay i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.program-content {
  padding: 2rem;
}

.program-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.program-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.program-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.program-stats i {
  color: var(--secondary-green);
}

/* Contact Page Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-blue), #004c95);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--secondary-green), #45a049);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn--secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__body {
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
}

.contact-item:hover {
  background: var(--bg-light);
}

.contact-item i {
  color: var(--secondary-green);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-blue);
}

/* Laptop Optimization (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
    padding: 0 2rem;
  }
  
  .hero {
    padding: 120px 0 80px;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
  }
  
  .hero-stats {
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .hero-stat {
    padding: 1.8rem 2rem;
    min-width: 180px;
  }
  
  .hero-stat .stat-number {
    font-size: 2.5rem;
  }
  
  .navbar {
    padding: 1rem 2rem;
  }
  
  .navbar-nav {
    gap: 1.5rem;
  }
  
  .impact-stat-card {
    min-width: 280px;
    padding: 2.5rem 2rem;
  }
  
  .community-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .initiatives-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Large Desktop Optimization (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .hero-stats {
    gap: 4rem;
  }
  
  .hero-stat {
    padding: 2rem 2.5rem;
  }
  
  .community-grid,
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .initiatives-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-stat {
    padding: 1rem 1.5rem;
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stat .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-stat .stat-text {
    font-size: 0.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .badge {
    padding: 0.8rem 1.2rem;
    width: 100%;
    max-width: 280px;
  }
  
  .floating-icon {
    display: none;
  }
}

/* Enhanced Tablet Responsiveness */
@media (max-width: 768px) and (min-width: 481px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  
  .hero-stat {
    padding: 1.5rem 2rem;
    min-width: 180px;
  }
  
  .hero-stat .stat-number {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  
  .trust-badges {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .impact-stat-card {
    min-width: 280px;
    padding: 2.5rem 2rem;
  }
  
  .stat-icon {
    width: 80px;
    height: 80px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .initiatives-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Standard Mobile & Tablet Base */
@media (max-width: 768px) {
  /* Mobile navigation improvements */
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: -8px 0 32px rgba(21, 101, 192, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border-left: 3px solid var(--primary-blue);
  }
  
  .navbar-nav.mobile-open {
    right: 0;
  }
  
  .navbar-nav li {
    margin: 0.8rem 0;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .navbar-nav a {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    color: var(--text-dark);
  }
  
  .navbar-nav a:hover {
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary-blue);
    transform: translateX(8px);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(21, 101, 192, 0.05);
    margin-top: 0.5rem;
    border-radius: 8px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  
  .dropdown-menu a:hover {
    background: rgba(21, 101, 192, 0.1);
    transform: translateX(4px);
    color: var(--primary-blue);
  }
  
  .mobile-toggle {
    display: flex;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .mobile-toggle:hover {
    background: rgba(21, 101, 192, 0.1);
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-blue);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-blue);
  }
  
  .mobile-toggle span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-stat {
    padding: 1rem 1.5rem;
  }
  
  .hero-stat .stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon i {
    font-size: 1rem;
  }
  
  .impact-stat-card {
    min-width: 250px;
    padding: 2rem 1.5rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .initiatives-compact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .initiative-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .initiative-vector {
    width: 60px;
    height: 60px;
  }
  
  .init-icon {
    width: 30px;
    height: 30px;
  }
  
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .modal-content {
    max-width: 95%;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .qr-code {
    max-width: 160px;
  }
  
  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Enhanced Small Mobile Optimization */
@media (max-width: 480px) {
  /* Container adjustments */
  .container {
    padding: 0 1rem;
  }
  
  /* Header optimizations */
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    height: 45px;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .donate-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Hero section mobile optimization */
  .hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-stat {
    padding: 1rem 1.5rem;
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stat .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-stat .stat-text {
    font-size: 0.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .badge {
    padding: 0.8rem 1.2rem;
    width: 100%;
    max-width: 280px;
  }
  
  .floating-icon {
    display: none;
  }
  
  /* Impact section mobile */
  .impact-section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .impact-stat-card {
    min-width: 260px;
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
  }
  
  /* Community section mobile */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .community-card {
    padding: 2rem 1.5rem;
  }
  
  /* Modal mobile optimization */
  .modal-content {
    margin: 5% auto;
    max-width: 95%;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 1.2rem;
  }
  
  .modal-header h2 {
    font-size: 1.1rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .qr-code {
    max-width: 140px;
  }
  
  .bank-details h3 {
    font-size: 0.9rem;
  }
  
  .bank-row {
    padding: 0.4rem 0;
  }
  
  .bank-label,
  .bank-value {
    font-size: 0.7rem;
  }
  
  .copy-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
  }
  
  .tax-notice {
    padding: 0.8rem;
    font-size: 0.75rem;
  }
  
  /* Initiatives section mobile */
  .initiatives-compact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .initiative-item {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .initiative-vector {
    width: 60px;
    height: 60px;
  }
  
  .init-icon {
    width: 30px;
    height: 30px;
  }
  
  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Enhanced Gallery Styles */
.gallery-main {
  padding-top: 80px;
}

.gallery-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.gallery-header {
  position: relative;
  z-index: 2;
}

.gallery-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-content {
  padding: 4rem 0;
  background: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-chip {
  background: var(--white);
  color: var(--text-medium);
  border: 2px solid #e0e0e0;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-chip:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

.filter-chip.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 86, 166, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 86, 166, 0.2);
}

.gallery-item__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 86, 166, 0.9), rgba(76, 175, 80, 0.9));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.overlay-content {
  text-align: center;
  padding: 2rem;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.overlay-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.category-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.cta-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 2fr 1fr;
  animation: lightboxZoom 0.3s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-image-container {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-info {
  padding: 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-info h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.lightbox-info p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lightbox-info .category-tag {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.fade-in-scale {
  animation: fadeInScale 0.6s ease-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-header h1 {
    font-size: 2.2rem;
  }
  
  .gallery-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .filter-chip {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .lightbox-content {
    grid-template-columns: 1fr;
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-info {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}



/* Interactive Vision Section */
.vision-interactive {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 100%);
  position: relative;
}

.vision-showcase {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

.vision-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.vision-core {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.3);
  animation: pulse 3s infinite;
}

.vision-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.vision-core h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vision-core p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.vision-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 86, 166, 0.2);
}

.vision-point {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  transform-origin: 40px 40px;
  transform: rotate(var(--angle)) translateY(-210px) rotate(calc(-1 * var(--angle)));
  cursor: pointer;
}

.point-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.2);
  transition: all 0.3s ease;
  border: 3px solid rgba(0, 86, 166, 0.1);
}

.vision-point:hover .point-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 86, 166, 0.4);
}

.point-popup {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.2);
  min-width: 150px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
}

.vision-point:hover .point-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.point-popup h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.point-popup p {
  font-size: 0.75rem;
  color: var(--text-medium);
  margin: 0;
}

/* Interactive Values Section */
.values-interactive {
  padding: 5rem 0;
  background: var(--white);
}

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

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 86, 166, 0.1);
  border: 1px solid rgba(0, 86, 166, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 86, 166, 0.2));
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.value-card > p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.value-details {
  background: rgba(0, 86, 166, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.value-card:hover .value-details {
  opacity: 1;
  max-height: 200px;
}

.value-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-details li {
  padding: 0.3rem 0;
  color: var(--text-medium);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.value-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
}

@media (max-width: 768px) {
  .vision-showcase {
    width: 350px;
    height: 350px;
  }
  
  .vision-core {
    width: 140px;
    height: 140px;
  }
  
  .vision-icon {
    font-size: 2rem;
  }
  
  .vision-point {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    transform-origin: 30px 30px;
    transform: rotate(var(--angle)) translateY(-145px) rotate(calc(-1 * var(--angle)));
  }
  
  .point-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 3rem 0;
}

/* Journey Section Styles */
.journey-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 100%);
  position: relative;
  overflow: hidden;
}

.view-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.toggle-btn {
  background: rgba(0, 86, 166, 0.1);
  border: 2px solid rgba(0, 86, 166, 0.2);
  color: var(--primary-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.toggle-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.journey-view {
  display: none;
  margin-top: 3rem;
}

.journey-view.active {
  display: block;
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 60px;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-dot:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 86, 166, 0.4);
}

.timeline-dot i {
  color: var(--white);
  font-size: 1.5rem;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 86, 166, 0.1);
  border: 1px solid rgba(0, 86, 166, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: var(--white);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: var(--white);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.timeline-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.timeline-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.timeline-stats span {
  background: rgba(0, 86, 166, 0.1);
  color: var(--primary-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Map Styles */

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230056A6' fill-opacity='0.03'%3E%3Cpath d='M50 50c0 13.8-11.2 25-25 25s-25-11.2-25-25 11.2-25 25-25 25 11.2 25 25z'/%3E%3C/g%3E%3C/svg%3E");
}

.journey-map {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 86, 166, 0.15);
}

.map-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.milestone {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.milestone-marker {
  width: 60px;
  height: 60px;
  position: relative;
  animation: pulse 2s infinite;
}

.milestone-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 86, 166, 0.3));
  transition: all 0.3s ease;
}

.milestone:hover .milestone-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 20px rgba(0, 86, 166, 0.4));
}

.milestone-popup {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
  border: 2px solid rgba(0, 86, 166, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
}

.milestone-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--white);
}

.milestone:hover .milestone-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.popup-year {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.milestone-popup h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.milestone-popup p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.popup-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.popup-stats span {
  background: rgba(0, 86, 166, 0.1);
  color: var(--primary-blue);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.geo-marker {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.geo-pin {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffb74d 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 213, 79, 0.4);
  animation: bounce 2s infinite;
}

.geo-pin i {
  transform: rotate(45deg);
  color: var(--white);
  font-size: 0.8rem;
}

.geo-label {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

@media (max-width: 768px) {
  .view-toggle {
    flex-direction: column;
    align-items: center;
  }
  
  .toggle-btn {
    width: 200px;
    text-align: center;
  }
  
  /* Timeline Mobile */
  .timeline-line {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  
  .timeline-dot i {
    font-size: 1.2rem;
  }
  
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
    text-align: left;
  }
  
  .timeline-content::before {
    left: -30px !important;
    right: auto !important;
    border-right-color: var(--white) !important;
    border-left-color: transparent !important;
  }
  
  /* Map Mobile */
  .journey-map {
    height: 400px;
  }
  
  .milestone-marker {
    width: 50px;
    height: 50px;
  }
  
  .milestone-popup {
    min-width: 180px;
    padding: 1rem;
    font-size: 0.85rem;
  }
  
  .geo-pin {
    width: 25px;
    height: 25px;
  }
  
  .geo-label {
    font-size: 0.65rem;
  }
}
/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="400"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="500"] { transition-delay: 0.5s; }
.animate-on-scroll[data-delay="600"] { transition-delay: 0.6s; }
.animate-on-scroll[data-delay="700"] { transition-delay: 0.7s; }
.animate-on-scroll[data-delay="800"] { transition-delay: 0.8s; }

/* Team Card Specialties */
.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.team-specialties span {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
/* Hover-based Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-green);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 86, 166, 0.15);
}

.team-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--secondary-green);
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card img[alt="Vaishnavi Tripathi"] {
  object-position: center top;
}

.founder-card img[alt="Samarjeet Tripathi"] {
  object-position: center top;
}

.team-image-wrapper:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 86, 166, 0.3);
}

.team-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 1.2rem;
  border-radius: 12px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.4);
}



.team-image-wrapper:hover .team-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.02);
}

.team-tooltip .bio {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-tooltip .team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-tooltip .team-specialties span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-card .position {
  color: var(--secondary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  .team-tooltip {
    width: 220px;
    padding: 1rem;
  }
}
/* Program Icon Styling */
.program-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 86, 166, 0.3);
  transition: all 0.3s ease;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.4);
}

.program-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

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

@media (max-width: 768px) {
  .program-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  
  .program-icon i {
    font-size: 2rem;
  }
}
/* Get Involved Creative Design */
.involvement-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f8 100%);
}

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

.involvement-card {
  height: 350px;
  perspective: 1000px;
  cursor: pointer;
}

.involvement-card .card-front,
.involvement-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.6s;
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.15);
}

.involvement-card .card-front {
  background: var(--white);
  border: 2px solid rgba(0, 86, 166, 0.1);
}

.involvement-card .card-back {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  transform: rotateY(180deg);
}

.involvement-card:hover .card-front {
  transform: rotateY(-180deg);
}

.involvement-card:hover .card-back {
  transform: rotateY(0deg);
}

.involvement-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.involvement-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.involvement-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.involvement-card p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.card-stats {
  background: rgba(0, 86, 166, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.card-back h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card-back ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-back li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.card-back li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.card-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: var(--white);
  color: var(--primary-blue);
}

/* Impact Stories */
.impact-stories {
  padding: 5rem 0;
  background: var(--white);
}

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

.story-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 86, 166, 0.1);
  border-left: 4px solid var(--secondary-green);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
}

.story-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.story-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.story-content p {
  color: var(--text-medium);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.story-type {
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Quick Action Section */
.quick-action {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
}

.action-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.action-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

/* Donation Impact Cards */
.donation-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 86, 166, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-green);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.2);
}

.impact-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.impact-icon i {
  font-size: 2rem;
  color: var(--white);
}

/* Volunteer Form */
.volunteer-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 86, 166, 0.15);
}

.volunteer-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.volunteer-details {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.volunteer-details span {
  background: rgba(0, 86, 166, 0.1);
  color: var(--primary-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (max-width: 768px) {
  .involvement-cards {
    grid-template-columns: 1fr;
  }
  
  .action-container {
    flex-direction: column;
    text-align: center;
  }
  
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .action-btn {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card {
    flex-direction: column;
    text-align: center;
  }
}
/* Quick Donate Section */
.quick-donate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.quick-donate-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 86, 166, 0.15);
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.donation-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
}

.step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
}

.step.active span {
    color: var(--primary-blue);
    font-weight: 600;
}

.amount-selector {
    margin-bottom: 2rem;
}

.preset-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, .amount-btn.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.custom-amount {
    position: relative;
}

.custom-amount input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.custom-amount .currency {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--primary-blue);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-btn {
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upi-btn {
    background: linear-gradient(135deg, var(--secondary-green), #45a049);
    color: white;
}

.bank-btn {
    background: linear-gradient(135deg, var(--primary-blue), #004494);
    color: white;
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-btn i {
    font-size: 1.5rem;
}

.payment-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-btn small {
    opacity: 0.9;
    font-size: 0.85rem;
}

.impact-preview {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.impact-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #e65100;
}

.impact-text i {
    color: var(--accent-gold);
}

/* Quick Volunteer Section */
.quick-volunteer-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 4rem 0;
}

.volunteer-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-action-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.quick-action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.quick-action-card p {
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.action-btn {
    background: linear-gradient(135deg, var(--primary-blue), #004494);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 166, 0.3);
}

/* Quick Form Styles */
.quick-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 86, 166, 0.1);
}

.quick-form .form-group input,
.quick-form .form-group select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-form .form-group input:focus,
.quick-form .form-group select:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.form-note {
    text-align: center;
    color: #6a6a6a;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .preset-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .volunteer-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quick-donate-container,
    .quick-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .preset-amounts {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Partnership Page Styles */
.partnership-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partnership-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.partnership-stats .hero-stat {
    text-align: center;
    color: white;
}

.partnership-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.partnership-network {
    position: relative;
    width: 300px;
    height: 300px;
}

.network-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: nodeFloat 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.central-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 213, 79, 0.3);
    border-color: var(--accent-gold);
}

.partner-node:nth-child(2) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.partner-node:nth-child(3) {
    bottom: 10%;
    right: 10%;
}

.partner-node:nth-child(4) {
    bottom: 10%;
    left: 10%;
}

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

/* Partnership Journey Timeline */
.partnership-journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    border-radius: 2px;
}

.timeline-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.8s ease forwards;
    animation-delay: calc(var(--step) * 0.3s);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.step-content p {
    color: #6a6a6a;
    font-size: 0.9rem;
}

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

/* Interactive Partnership Models */
.interactive-models-section {
    padding: 5rem 0;
    background: white;
}

.models-selector {
    max-width: 1200px;
    margin: 0 auto;
}

.model-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.model-tab {
    padding: 1rem 2rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-tab.active,
.model-tab:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
}

.model-content {
    position: relative;
    min-height: 400px;
}

.model-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.model-panel.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* CSR Infographic */
.csr-infographic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.csr-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        var(--primary-blue) 0deg 144deg,
        var(--secondary-green) 144deg 252deg,
        var(--accent-gold) 252deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateChart 2s ease-in-out;
}

.csr-circle::before {
    content: '';
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.csr-segment {
    position: absolute;
    font-weight: 600;
    color: var(--primary-blue);
    z-index: 2;
}

@keyframes rotateChart {
    from { transform: rotate(-90deg); }
    to { transform: rotate(0deg); }
}

/* Alliance Network */
.alliance-network {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.alliance-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: pulseNode 2s ease-in-out infinite;
}

.alliance-node.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #ffa726);
}

.alliance-node:not(.center) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle)));
}

@keyframes pulseNode {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Engagement Chart */
.engagement-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

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

.bar-label {
    min-width: 120px;
    font-weight: 500;
    color: var(--primary-blue);
}

.bar-fill {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.bar-fill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-green), var(--primary-blue));
    border-radius: 10px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
    animation-delay: 0.5s;
}

.engagement-bar[data-value="85"] .bar-fill::before { animation-name: fillBar85; }
.engagement-bar[data-value="92"] .bar-fill::before { animation-name: fillBar92; }
.engagement-bar[data-value="78"] .bar-fill::before { animation-name: fillBar78; }

@keyframes fillBar85 { to { width: 85%; } }
@keyframes fillBar92 { to { width: 92%; } }
@keyframes fillBar78 { to { width: 78%; } }

.bar-value {
    min-width: 40px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Model Details */
.model-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.model-details p {
    color: #6a6a6a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.model-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-item i {
    color: var(--secondary-green);
    font-size: 1.1rem;
}

.model-cta-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
}

/* Benefits Showcase */
.benefits-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.benefits-interactive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.benefit-front,
.benefit-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.6s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-front {
    background: white;
    transform: rotateY(0deg);
}

.benefit-back {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    transform: rotateY(180deg);
}

.benefit-card:hover .benefit-front {
    transform: rotateY(-180deg);
}

.benefit-card:hover .benefit-back {
    transform: rotateY(0deg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-top: 1rem;
}

.benefit-back h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-back ul {
    list-style: none;
    padding: 0;
}

.benefit-back li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-back li:last-child {
    border-bottom: none;
}

/* Partnership CTA Section */
.partnership-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), #004494);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Partnership Modal */
.partnership-modal {
    max-width: 600px;
    padding: 3rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.partnership-form .form-group input,
.partnership-form .form-group select,
.partnership-form .form-group textarea {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.partnership-form .form-group input:focus,
.partnership-form .form-group select:focus,
.partnership-form .form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.partnership-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .partnership-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .partnership-visual {
        display: none;
    }
    
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .model-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .model-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-interactive {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
    }
}
/* Journey Timeline and Map Styles */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.view-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.journey-view {
    display: none;
    margin-top: 3rem;
}

.journey-view.active {
    display: block;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-green));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 350px;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6a6a6a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
}

.timeline-stats span {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Map View Styles */
.journey-map {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-background {
    width: 100%;
    height: auto;
    display: block;
}

.milestone {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.milestone:hover {
    transform: scale(1.1);
}

.milestone-marker {
    width: 50px;
    height: 50px;
    position: relative;
}

.milestone-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.milestone:hover .milestone-icon {
    transform: scale(1.2);
}

.milestone-popup {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.milestone-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.milestone:hover .milestone-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.popup-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.milestone-popup h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.milestone-popup p {
    color: #6a6a6a;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-dot {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .milestone-popup {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        min-width: auto;
    }
    
    .milestone-popup::after {
        display: none;
    }
}
/* Fix Timeline Visibility */
.timeline-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-item.animate {
    animation: timelineSlideIn 0.8s ease forwards;
}

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

/* Ensure geo markers are visible */
.geo-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.geo-pin {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.geo-pin i {
    transform: rotate(45deg);
    color: white;
    font-size: 0.8rem;
}

.geo-label {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Enhanced milestone popup stats */
.popup-stats {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.popup-stats span {
    background: rgba(0, 86, 166, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 500;
}
/* Enhanced Team Section Styles */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founder-section {
    margin-bottom: 4rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    text-align: center;
}

.founder-image-wrapper img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 86, 166, 0.3);
}

.founder-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), #ffa726);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
}

.founder-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: #6a6a6a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-contact {
    margin-bottom: 1.5rem;
}

.founder-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.founder-achievements {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.achievement {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

.team-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    position: relative;
}

.team-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    border-radius: 2px;
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.team-image-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.1);
    border-color: var(--secondary-green);
}

.team-tooltip {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.team-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--primary-blue);
}

.team-card:hover .team-tooltip {
    bottom: 140%;
    opacity: 1;
    visibility: visible;
}

.team-tooltip .bio {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.team-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-specialties span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-card .position {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Animation for scroll reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .founder-image-wrapper img {
        width: 150px;
        height: 150px;
    }
    
    .founder-content h3 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-tooltip {
        width: 200px;
    }
    
    .founder-achievements {
        justify-content: center;
    }
}
/* About Page Team Cards */
.team-card .bio {
    color: #6a6a6a;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}
/* Fix Team Section Visibility */
.team-section .animate-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.founder-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.team-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure team section background is visible */
.team-section {
    background: white !important;
    padding: 4rem 0 !important;
}
/* Team Flip Cards */
.team-flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.team-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-flip-card:hover .team-flip-inner {
    transform: rotateY(180deg);
}

.team-flip-front, .team-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.team-flip-front {
    background: white;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.team-flip-back {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    transform: rotateY(180deg);
}

.team-flip-front img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--primary-blue);
    margin-bottom: 1rem;
}

.team-flip-front h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-flip-front .position {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-flip-back h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-flip-back .position {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.team-flip-back .bio {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.specialties span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}
/* Fix Team Flip Card Image Alignment */
.team-flip-front img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--primary-blue);
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Specific image alignment fixes */
.team-flip-card:nth-child(2) .team-flip-front img {
    object-position: center 20%;
}

.team-flip-card:nth-child(6) .team-flip-front img {
    object-position: center 30%;
}

/* Enhanced flip card styling */
.team-flip-card {
    height: 320px;
    margin-bottom: 2rem;
}

.team-flip-front {
    background: white;
    border: 2px solid #f0f0f0;
    padding: 2rem 1.5rem;
}

.team-flip-front h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-flip-front .position {
    color: var(--secondary-green);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
}

.team-flip-back {
    padding: 2rem 1.5rem;
    text-align: center;
}

.team-flip-back h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.team-flip-back .position {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.team-flip-back .bio {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.specialties {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.specialties span {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Fix Team Flip Cards - Complete Override */
.team-flip-card {
    background-color: transparent;
    width: 100%;
    height: 320px;
    perspective: 1000px !important;
    margin-bottom: 2rem;
}

.team-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s !important;
    transform-style: preserve-3d !important;
    cursor: pointer;
}

.team-flip-card:hover .team-flip-inner {
    transform: rotateY(180deg) !important;
}

.team-flip-front, .team-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
}

.team-flip-front {
    background: #ffffff !important;
    border: 2px solid #f0f0f0;
    z-index: 2;
}

.team-flip-back {
    background: linear-gradient(135deg, #0056A6, #4CAF50) !important;
    color: #ffffff !important;
    transform: rotateY(180deg) !important;
    opacity: 1 !important;
}

.team-flip-front img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #0056A6;
    margin-bottom: 1.5rem;
}

.team-flip-front h3 {
    font-size: 1.2rem;
    color: #0056A6 !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-flip-front .position {
    color: #4CAF50 !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.team-flip-back h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff !important;
}

.team-flip-back .position {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #ffffff !important;
    opacity: 0.95;
}

.team-flip-back .bio {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    opacity: 0.9;
}

.specialties span {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0.2rem;
}

/* Premium Gallery Card Styles */
.gallery-item.premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    height: 400px;
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.gallery-item.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.1) contrast(1.05);
}

.gallery-item.premium-card:hover .gallery-item__image {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.1);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), #FFE082);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-item.premium-card:hover .image-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.6);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

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

.overlay-content {
    color: white;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.expand-icon {
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-item.premium-card:hover .expand-icon {
    opacity: 1;
    transform: scale(1.2);
}

.overlay-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.overlay-content .description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-info i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.impact-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.impact-stats .stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Category-specific tag colors */
.category-tag.education {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 86, 166, 0.3);
}

.category-tag.health {
    background: linear-gradient(135deg, var(--secondary-green), #388E3C);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.category-tag.women {
    background: linear-gradient(135deg, #E91E63, #AD1457);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.category-tag.environment {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.category-tag.food {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Instagram-Style Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 935px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 335px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #8e8e8e;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    color: #262626;
}

.lightbox-image-container {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    pointer-events: all;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.instagram-sidebar {
    background: white;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #dbdbdb;
}

.instagram-header {
    padding: 16px;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.profile-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.profile-info span {
    font-size: 12px;
    color: #8e8e8e;
}

.instagram-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.post-description {
    margin-bottom: 16px;
}

.post-description h3 {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.post-description p {
    font-size: 14px;
    color: #262626;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.post-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8e8e8e;
}

.meta-item i {
    width: 12px;
    color: var(--primary-blue);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.hashtag {
    color: #00376b;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.hashtag:hover {
    text-decoration: underline;
}

.post-stats {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #efefef;
}

.stat-item {
    background: #f0f2f5;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #1c1e21;
}

.instagram-actions {
    padding: 12px 16px;
    border-top: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #262626;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.like-count {
    font-size: 12px;
    color: #8e8e8e;
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item.premium-card {
        height: 350px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        grid-template-columns: 1fr;
    }
    
    .instagram-sidebar {
        border-left: none;
        border-top: 1px solid #dbdbdb;
        max-height: 40vh;
    }
    
    .lightbox-image-container {
        min-height: 300px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border-radius: 50%;
    }
    
    .overlay-content .description {
        -webkit-line-clamp: 2;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .impact-stats {
        flex-wrap: wrap;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
.like-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.like-count {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.post-time {
    font-size: 10px;
    color: #8e8e8e;
    text-transform: uppercase;
}

.action-btn.liked {
    color: #ed4956;
    animation: likeAnimation 0.3s ease;
}

.action-btn.saved {
    color: #262626;
}

.action-btn.saved i {
    font-weight: 900;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.heart-float {
    position: absolute;
    color: #ed4956;
    font-size: 20px;
    pointer-events: none;
    animation: heartFloat 1s ease-out forwards;
}

@keyframes heartFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.5);
    }
}
/* Instagram Feed Styles */
.instagram-feed {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-header {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-pic-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.profile-details h3 {
    font-size: 1.5rem;
    color: #262626;
    margin-bottom: 0.5rem;
}

.profile-details p {
    color: #8e8e8e;
    margin-bottom: 1rem;
}

.follow-btn {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45, #ffdc80);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

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

.instagram-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-weight: 600;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.post-content {
    padding: 1.5rem;
}

.post-caption {
    color: #262626;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #efefef;
}

.post-date {
    color: #8e8e8e;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.view-on-instagram {
    color: #e1306c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-on-instagram:hover {
    color: #c13584;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .instagram-posts {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
.loading-posts {
    text-align: center;
    padding: 3rem;
    color: #8e8e8e;
    font-size: 1.1rem;
}

.loading-posts::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #8e8e8e;
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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

/* Blog Loading Animation */
.loading-blogs i {
    animation: spin 1s linear infinite;
}

/* Modern Contact Page Design */
.contact-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.contact-quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.quick-stat i {
    color: #FFD54F;
    font-size: 1.2rem;
}

.quick-stat span {
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.enhanced-contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 86, 166, 0.12);
    border: 1px solid rgba(0, 86, 166, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

.enhanced-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.enhanced-form .form-group {
    margin-bottom: 2rem;
}

.enhanced-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.enhanced-form .form-label i {
    color: var(--primary-blue);
    width: 18px;
    font-size: 1.1rem;
}

.enhanced-form .form-control {
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.enhanced-form .form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 86, 166, 0.1);
    transform: translateY(-2px);
}

.btn-enhanced {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(0, 86, 166, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 86, 166, 0.4);
}

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

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 86, 166, 0.1);
    border: 1px solid rgba(0, 86, 166, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 86, 166, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.card-header i {
    color: var(--primary-blue);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

/* Enhanced Stay Connected Section */
.stay-connected {
    background: linear-gradient(135deg, #0056A6 0%, #003d75 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stay-connected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.stay-connected h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.stay-connected .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.social-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #833AB4 0%, #E4405F 50%, #FCAF45 100%);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #000000 0%, #1DA1F2 100%);
}

.social-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000 0%, #FF6B6B 100%);
}

.social-card:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.social-card h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.social-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.follow-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.follow-btn:hover {
    background: white;
    color: #0056A6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
    border-color: white;
}

.follow-btn i {
    transition: transform 0.3s ease;
}

.follow-btn:hover i {
    transform: translateX(3px);
}

/* Enhanced Social Media Section */
.social-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.social-stats .stat-item {
    text-align: center;
}

.social-stats .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.social-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interactive-social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    background: var(--white);
}

.social-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.platform-header i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.facebook-platform .platform-header i {
    background: #1877f2;
}

.instagram-platform .platform-header i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.twitter-platform .platform-header i {
    background: #1da1f2;
}

.linkedin-platform .platform-header i {
    background: #0077b5;
}

.youtube-platform .platform-header i {
    background: #ff0000;
}

.platform-info {
    display: flex;
    flex-direction: column;
}

.platform-info strong {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.platform-info span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.facebook-btn {
    background: #1877f2;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-btn:hover {
    background: white;
    color: #1877f2;
    border-color: #1877f2;
    transform: scale(1.05);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instagram-btn:hover {
    background: white;
    color: #e6683c;
    border-color: #e6683c;
    transform: scale(1.05);
}

.twitter-btn {
    background: #1da1f2;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.twitter-btn:hover {
    background: white;
    color: #1da1f2;
    border-color: #1da1f2;
    transform: scale(1.05);
}

.linkedin-btn {
    background: #0077b5;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.linkedin-btn:hover {
    background: white;
    color: #0077b5;
    border-color: #0077b5;
    transform: scale(1.05);
}

.youtube-btn {
    background: #ff0000;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.youtube-btn:hover {
    background: white;
    color: #ff0000;
    border-color: #ff0000;
    transform: scale(1.05);
}

.social-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border-radius: 12px;
}

.social-cta p {
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-cta i {
    color: var(--accent-gold);
}

/* Map Section Styles */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 86, 166, 0.15);
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.location-markers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.marker-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 166, 0.1);
}

.marker-item:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.2);
}

.marker-item.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

.marker-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.marker-item.active i {
    color: var(--accent-gold);
}

.marker-info {
    display: flex;
    flex-direction: column;
}

.marker-info strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.marker-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .contact-quick-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .quick-stat {
        padding: 1rem 1.5rem;
        min-width: auto;
    }
    
    .quick-contact-section {
        padding: 4rem 0;
    }
    
    .quick-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .enhanced-contact-section {
        padding: 4rem 0;
    }
    
    .contact-form-container {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .enhanced-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .info-header h2 {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-header i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .social-platform {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .platform-header {
        justify-content: center;
    }
    
    .follow-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-main-grid {
        max-width: none;
        margin: 0 1rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
    }
    
    .location-markers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .marker-item {
        padding: 0.6rem 0.8rem;
    }
    
    .marker-info strong {
        font-size: 0.8rem;
    }
    
    .marker-info span {
        font-size: 0.7rem;
    }
}

.instagram-post img {
    transition: opacity 0.3s ease;
}

.instagram-post img[loading="lazy"] {
    opacity: 0;
}

.instagram-post img[loading="lazy"].loaded {
    opacity: 1;
}

/* Enhanced Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 166, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #8e8e8e;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-meta i {
    color: var(--primary-blue);
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: var(--secondary-green);
    transform: translateX(3px);
}

/* Enhanced Instagram Post Styles */
.instagram-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-weight: 600;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-caption {
    color: #262626;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex: 1;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #efefef;
    margin-top: auto;
}

.post-date {
    color: #8e8e8e;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.view-on-instagram {
    color: #e1306c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-on-instagram:hover {
    color: #c13584;
    transform: translateX(3px);
}
/* Blog Section Styles - Updated */
.blog-main {
    padding-top: 80px;
}

.blog-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.blog-header {
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.blog-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.loading-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #8e8e8e;
    font-size: 1.1rem;
}

.loading-blogs i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-cta {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Blog Error and No Posts States */
.no-posts,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-medium);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.no-posts i,
.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.no-posts h3,
.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-posts p,
.error-message p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.retry-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 166, 0.3);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-chip {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
}
/* Modern Contact Page Additional Styles */
.quick-contact-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.quick-contact-card p {
    color: #64748b;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.enhanced-contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.contact-form-container {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-header h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.enhanced-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.enhanced-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.enhanced-form .form-label i {
    color: #667eea;
    width: 16px;
    font-size: 1rem;
}

.enhanced-form .form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.enhanced-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-enhanced {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.info-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.info-header h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.info-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.card-header i {
    color: #667eea;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin: 0;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #f1f5f9;
}

.detail-item i {
    color: #667eea;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.detail-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-item strong {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

.detail-item span,
.detail-item a {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
}

.detail-item a:hover {
    color: #667eea;
    text-decoration: underline;
}

.regional-offices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.office-location {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.office-location i {
    color: #667eea;
    font-size: 0.9rem;
}

.office-location strong {
    font-size: 0.95rem;
    color: #1a202c;
    font-weight: 600;
}

.office-item span {
    font-size: 0.85rem;
    color: #64748b;
    margin-left: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.location-markers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.marker-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.marker-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.marker-item.active {
    background: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.marker-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.marker-item.active i {
    color: #FFD54F;
}

.marker-info {
    display: flex;
    flex-direction: column;
}

.marker-info strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.marker-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-quick-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .enhanced-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
    }
    
    .location-markers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .marker-item {
        padding: 0.6rem 0.8rem;
    }
}

/* Trust Website Specific Enhancements */

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0D47A1;
    --secondary-green: #1B5E20;
    --accent-gold: #E65100;
    --text-dark: #000000;
    --text-medium: #212121;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn-primary,
  .btn-outline,
  .donate-btn {
    border-width: 3px;
    font-weight: 700;
  }
}

/* Print Styles */
@media print {
  .header,
  .floating-icon,
  .hero-scroll-indicator,
  .mobile-toggle,
  .donate-btn,
  .btn,
  .modal {
    display: none !important;
  }
  
  .hero {
    background: white !important;
    color: black !important;
    padding: 2rem 0 !important;
    min-height: auto !important;
  }
  
  .hero h1,
  .hero-subtitle {
    color: black !important;
  }
  
  .impact-stat-card,
  .community-card,
  .initiative-item {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* Focus Indicators for Better Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

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

/* Error States */
.error {
  border-color: #D32F2F !important;
  background-color: #FFEBEE !important;
}

.error-message {
  color: #D32F2F;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-message::before {
  content: '⚠';
  font-weight: bold;
}

/* Success States */
.success {
  border-color: var(--secondary-green) !important;
  background-color: #E8F5E8 !important;
}

.success-message {
  color: var(--secondary-green);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-message::before {
  content: '✓';
  font-weight: bold;
}

/* Trust Indicators */
.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
  color: var(--secondary-green);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.trust-indicator i {
  color: var(--secondary-green);
}

/* Security Badge */
.security-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.security-badge i {
  font-size: 1rem;
}

/* Donation Progress Indicator */
.donation-progress {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(245, 124, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #FF9800 100%);
  border-radius: 6px;
  transition: width 1s ease;
}

.progress-text {
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

/* Testimonial Enhancements */
.testimonial-slide {
  position: relative;
}

.testimonial-slide::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 2rem;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced CTA Sections */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0 13.8-11.2 25-25 25s-25-11.2-25-25 11.2-25 25-25 25 11.2 25 25z'/%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

/* Performance Optimizations */
.hero-background,
.floating-elements {
  will-change: transform;
  transform: translateZ(0);
}

.impact-stat-card,
.community-card,
.initiative-item {
  will-change: transform;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-blue));
}

/* Selection Styling */
::selection {
  background: rgba(21, 101, 192, 0.2);
  color: var(--text-dark);
}

::-moz-selection {
  background: rgba(21, 101, 192, 0.2);
  color: var(--text-dark);
}

/* Final Mobile Optimizations */
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .impact-stat-card {
    min-width: 240px;
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .modal-content {
    max-width: 98%;
    margin: 2% auto;
  }
}

/* Ultra-wide Screen Optimization */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
  
  .hero h1 {
    font-size: 5.5rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 6rem;
  }
  
  .hero-stat {
    padding: 3rem 3.5rem;
  }
  
  .impact-stat-card {
    min-width: 350px;
    padding: 3.5rem 3rem;
  }
}
/* Enhanced Blog Page Styles */

/* Blog Search */
.blog-search {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(21, 101, 192, 0.1);
    transition: var(--transition);
}

.search-container:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    border-radius: 50px 0 0 50px;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.05);
}

/* Enhanced Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(21, 101, 192, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: rgba(21, 101, 192, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.blog-category.impact {
    background: linear-gradient(135deg, var(--secondary-green), #45a049);
}

.blog-category.programs {
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
}

.blog-category.events {
    background: linear-gradient(135deg, var(--accent-gold), #FF9800);
}

.blog-category.news {
    background: linear-gradient(135deg, #E91E63, #AD1457);
}

.blog-category.volunteer {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.blog-category.general {
    background: linear-gradient(135deg, #607D8B, #455A64);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.8rem 1.2rem;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 25px;
    align-self: flex-start;
}

.read-more:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(21, 101, 192, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    min-width: 250px;
}

.newsletter-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.blog-btn {
    background: linear-gradient(135deg, var(--accent-gold), #FF9800);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
    background: linear-gradient(135deg, #FF9800, var(--accent-gold));
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

#loadMoreBtn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

#loadMoreBtn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(21, 101, 192, 0.3);
}

/* Enhanced Filter Chips */
.filter-chip {
    background: var(--white);
    color: var(--text-medium);
    border: 2px solid rgba(21, 101, 192, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.filter-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-chip:hover::before {
    left: 100%;
}

.filter-chip:hover {
    background: rgba(21, 101, 192, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.2);
}

.filter-chip.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
    transform: translateY(-2px);
}

.filter-chip i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.filter-chip:hover i,
.filter-chip.active i {
    transform: scale(1.1);
}

/* No Posts State */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-medium);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 2px dashed rgba(21, 101, 192, 0.2);
}

.no-posts i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.6;
}

.no-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-posts p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Loading State Enhancement */
.loading-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.loading-blogs i {
    margin-right: 1rem;
    font-size: 1.5rem;
    animation: spin 1s linear infinite;
}

/* Blog Stats Enhancement */
.blog-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    min-width: 120px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Active Navigation Link */
.navbar-nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

/* Mobile Optimizations for Blog */
@media (max-width: 768px) {
    .blog-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-chip {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .blog-search {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .search-input {
        border-radius: 16px 16px 0 0;
        padding: 1rem;
    }
    
    .search-btn {
        border-radius: 0 0 16px 16px;
        padding: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .blog-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .newsletter-form input {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .blog-cta {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .filter-chip {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .read-more {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-item .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.8rem;
    }
}

/* Animation for blog cards on load */
@keyframes blogCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.blog-card.animate {
    animation: blogCardSlideIn 0.6s ease forwards;
}

/* Smooth transitions for all interactive elements */
.filter-chip,
.search-btn,
.blog-card,
.read-more,
.blog-btn,
.newsletter-form input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.filter-chip:focus,
.search-input:focus,
.search-btn:focus,
.read-more:focus,
.blog-btn:focus,
.newsletter-form input:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}
/* Blogger Redirect Styles */
.blogger-redirect {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 3rem 2rem;
}

.redirect-content {
    text-align: center;
    max-width: 600px;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(21, 101, 192, 0.1);
    position: relative;
    overflow: hidden;
}

.redirect-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green), var(--accent-gold));
}

.redirect-content .fab.fa-blogger-b {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: block;
}

.redirect-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.redirect-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.blog-redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
    margin-bottom: 3rem;
}

.blog-redirect-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.4);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-blue));
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(21, 101, 192, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(21, 101, 192, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(21, 101, 192, 0.1);
    transform: translateY(-3px);
}

.feature i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* Mobile optimization for blogger redirect */
@media (max-width: 768px) {
    .redirect-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .redirect-content .fab.fa-blogger-b {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .redirect-content h3 {
        font-size: 1.6rem;
    }
    
    .redirect-content p {
        font-size: 1rem;
    }
    
    .blog-redirect-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .blog-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blogger-redirect {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .redirect-content {
        padding: 2rem 1.5rem;
    }
    
    .redirect-content h3 {
        font-size: 1.4rem;
    }
    
    .blog-redirect-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Force Header Visibility on All Pages */
header.header,
.header,
nav.navbar,
.navbar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.15) !important;
  border-bottom: 2px solid rgba(21, 101, 192, 0.12) !important;
  min-height: 80px !important;
  transform: none !important;
}

/* Ensure body has proper top padding for fixed header */
body {
  padding-top: 80px !important;
}

/* Override any hiding styles */
.header[style*="display: none"],
.header[style*="visibility: hidden"],
.header[style*="opacity: 0"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure navbar brand and navigation are visible */
.navbar-brand,
.navbar-nav,
.donate-btn,
.mobile-toggle {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Make sure logo is always visible */
.logo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 65px !important;
  width: auto !important;
}

/* Brand text visibility */
.brand-text {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* CRITICAL: Header Fix - Highest Priority */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 80px !important;
}

.navbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 2rem !important;
  height: 80px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.logo {
  height: 50px !important;
  width: auto !important;
  display: block !important;
}

.brand-text {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #0056A6 !important;
}

.navbar-nav {
  display: flex !important;
  list-style: none !important;
  gap: 2rem !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-nav a {
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 5px !important;
  transition: all 0.3s ease !important;
}

.navbar-nav a:hover {
  background: #f0f0f0 !important;
  color: #0056A6 !important;
}

.donate-btn {
  background: linear-gradient(135deg, #0056A6, #4CAF50) !important;
  color: white !important;
  border: none !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.mobile-toggle {
  display: none !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
}

.mobile-toggle span {
  width: 25px !important;
  height: 3px !important;
  background: #333 !important;
  border-radius: 2px !important;
}

body {
  padding-top: 80px !important;
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex !important;
  }
  
  .navbar-nav.mobile-open {
    display: flex !important;
    position: fixed !important;
    top: 80px !important;
    right: 0 !important;
    width: 250px !important;
    height: calc(100vh - 80px) !important;
    background: white !important;
    flex-direction: column !important;
    padding: 2rem !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
  }
}
/* Laptop-Specific Optimizations */
.laptop-view {
  --transition: 0.2s ease;
}

.laptop-view .hero-stat:hover {
  transform: translateY(-5px) scale(1.02);
}

.laptop-view .impact-stat-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.laptop-view .community-card:hover {
  transform: translateY(-6px);
}

/* Smooth page transitions */
body {
  transition: opacity 0.3s ease;
}

/* Loading states */
.loading-page {
  opacity: 0.7;
  pointer-events: none;
}

/* Optimized grid layouts for laptops */
@media (min-width: 1024px) and (max-width: 1440px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .testimonial-carousel {
    max-width: 900px;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .modal-content {
    max-width: 600px;
  }
  
  .modal-body {
    padding: 2rem;
  }
}

/* Performance optimizations */
* {
  will-change: auto;
}

.hero-background,
.floating-elements,
.impact-stat-card,
.community-card {
  will-change: transform;
}

/* Ensure all interactive elements are accessible */
button, a, input, textarea, select {
  min-height: 44px;
  min-width: 44px;
}

button:focus, a:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}


/* Fix About Page Icons Visibility */
.stat-card .stat-icon {
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.timeline-dot {
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

.timeline-dot i {
    font-size: 1.5rem;
    color: #ffffff;
}

.community-icon {
    background: linear-gradient(135deg, #0056A6, #4CAF50);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
}

.community-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}


/* Fix Community Card Icons */
.community-card .community-icon {
    background: linear-gradient(135deg, #0056A6, #4CAF50) !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3) !important;
}

.community-card .community-icon i {
    font-size: 1.8rem !important;
    color: #ffffff !important;
}


/* Force Community Section Icons to Show */
.community-section .community-card .community-icon {
    background: linear-gradient(135deg, #0056A6, #4CAF50) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: 0 6px 20px rgba(0, 86, 166, 0.4) !important;
}

.community-section .community-card .community-icon i {
    font-size: 2rem !important;
    color: #ffffff !important;
    display: block !important;
}


/* Force Community Engagement Icons to Display */
#community .community-card .community-icon,
.community-section .community-card .community-icon {
    position: relative !important;
    z-index: 1 !important;
}

#community .community-card .community-icon i,
.community-section .community-card .community-icon i {
    position: relative !important;
    z-index: 2 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}


/* Force White Color on All Community Icons */
#community .community-card .community-icon i,
.community-section .community-card .community-icon i,
.community-icon i {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}
