/* ============================================
   SCEAD Foundation India — Global Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2BBCC0;
  --primary-dark: #1FA3A6;
  --secondary: #F5A623;
  --secondary-dark: #D98E1B;
  --dark: #1A1A2E;
  --dark-text: #333333;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-600: #6c757d;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.section-header p {
  color: var(--gray-600);
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

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

.btn-teal {
  background: var(--primary);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,188,192,0.4);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #1a8f92);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(43,188,192,0.3);
}

.logo-text span:first-child {
  color: var(--primary);
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 800;
}
.logo-text span:last-child {
  color: var(--secondary);
  font-size: 0.62rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: -3px;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.nav-donate {
  background: var(--secondary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-donate::after { display: none !important; }
.nav-donate:hover {
  background: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,166,35,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.1); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 0 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span { color: var(--secondary); }

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  opacity: 0.92;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Section Padding ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }

/* ---------- About / Side-by-Side ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: var(--radius);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: transform var(--transition);
}

.about-card:hover { transform: translateX(6px); }

.about-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Impact Stats ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(43,188,192,0.08);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  color: var(--white);
  padding: 20px 10px;
}

.stat-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-number .suffix { font-size: 1.4rem; font-weight: 600; }

.stat-label {
  font-size: 0.88rem;
  opacity: 0.8;
  font-weight: 400;
}

/* ---------- Founder Quote ---------- */
.founder-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}

.founder-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary);
  box-shadow: 0 8px 30px rgba(43,188,192,0.2);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  position: relative;
  padding-left: 28px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 24px;
}

.founder-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -5px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  font-style: normal;
  line-height: 1;
}

.founder-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.founder-title {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Focus Areas / Work Themes ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.focus-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.focus-card-image {
  height: 220px;
  overflow: hidden;
}

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

.focus-card:hover .focus-card-image img { transform: scale(1.08); }

.focus-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.focus-card-body h3 {
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.focus-card-body h3 i { color: var(--secondary); }

.focus-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.focus-card-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.focus-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* Year Divider */
.year-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  margin-top: 10px;
}

.year-divider:first-child { margin-top: 0; }

.year-divider .year-label {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(43,188,192,0.3);
}

.year-divider .year-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
  border-radius: 2px;
}

.year-divider .year-count {
  font-size: 0.82rem;
  color: var(--gray-600);
  white-space: nowrap;
  font-weight: 500;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

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

.project-card:hover .project-card-image img { transform: scale(1.06); }

/* Date badge on project cards */
.project-card-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Diplomatic / special badge */
.project-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card-body {
  padding: 24px;
}

.project-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.4;
}

.project-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-card-body .btn-sm {
  color: var(--primary);
  font-weight: 600;
  padding: 0;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-card-body .btn-sm:hover { color: var(--primary-dark); gap: 10px; }

/* ---------- CTA Cards ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}

.cta-card:nth-child(1) { border-top-color: var(--secondary); }
.cta-card:nth-child(2) { border-top-color: var(--primary); }
.cta-card:nth-child(3) { border-top-color: #8B5CF6; }

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.cta-card:nth-child(1) .cta-icon { background: rgba(245,166,35,0.12); color: var(--secondary); }
.cta-card:nth-child(2) .cta-icon { background: rgba(43,188,192,0.12); color: var(--primary); }
.cta-card:nth-child(3) .cta-icon { background: rgba(139,92,246,0.12); color: #8B5CF6; }

.cta-card h3 { margin-bottom: 12px; }

.cta-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ---------- Partners ---------- */
.partners-track {
  display: flex;
  gap: 50px;
  animation: scroll-partners 30s linear infinite;
  align-items: center;
}

.partners-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.partner-item {
  flex-shrink: 0;
  padding: 18px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  white-space: nowrap;
  transition: all var(--transition);
}

.partner-item:hover {
  color: var(--primary);
  box-shadow: var(--shadow);
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-about .reg-info {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-top: 8px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 6px; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact i { color: var(--primary); margin-top: 4px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(43,188,192,0.4);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Inner Page Hero ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(43,188,192,0.06);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--secondary); }

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--dark-text);
}

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

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 1;
}

.timeline-item:nth-child(odd)::before { right: -8px; }
.timeline-item:nth-child(even)::before { left: -8px; }

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

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

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Info Cards (CSR, etc.) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43,188,192,0.1);
}

.info-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.info-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.info-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
  position: relative;
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item .overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-links.active { transform: translateY(0); }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image::after { display: none; }

  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo { margin: 0 auto; }

  .founder-content blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--secondary);
    padding-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .focus-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; padding-right: 20px; }
  .timeline-item::before { left: 12px !important; right: auto !important; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

  .container { padding: 0 16px; }
}

/* ---------- Trust Badges Strip ---------- */
.trust-strip {
  background: var(--dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge i {
  color: var(--secondary);
  font-size: 1rem;
}

.trust-badge strong {
  color: var(--white);
  font-size: 1rem;
}

/* ---------- Endorsement Logos ---------- */
.endorsement-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 16px 0;
  opacity: 0.6;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.endorsement-strip span {
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Load More Button ---------- */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}

.load-more-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,188,192,0.3);
}

/* ---------- Animations ---------- */
/* Start content visible — animations are progressive enhancement, not required */
[data-aos] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Only hide elements AFTER JS has initialized the observer (class added by scripts.js) */
.aos-ready [data-aos] {
  opacity: 0;
}

.aos-ready [data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

/* Donate floating btn on mobile */
.donate-float {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  animation: pulse-donate 2s infinite;
}

@media (max-width: 768px) {
  .donate-float { display: flex; align-items: center; gap: 8px; }
  .back-to-top { bottom: 80px; }
}

@keyframes pulse-donate {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,166,35,0.5); }
  50% { box-shadow: 0 6px 32px rgba(245,166,35,0.7); }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background: #1EBE57;
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 80px; left: 20px; width: 54px; height: 54px; font-size: 1.6rem; }
}
