/* ============================================================
   KILKARI FOUNDATION — MAIN STYLESHEET
   Author: Kilkari Dev Team
   Version: 1.0
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
  --primary: #FF6B35;
  --primary-dark: #E8521A;
  --primary-light: #FF9F1C;
  --secondary: #9B5DE5;
  --secondary-dark: #6A0DAD;
  --accent: #2EC4B6;
  --accent-dark: #0077B6;
  --success: #06D6A0;
  --warning: #FFD166;
  --danger: #EF476F;
  --dark: #0D0D1A;
  --dark-2: #151528;
  --dark-3: #1E1E38;
  --body-bg: #FAFAFA;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-color: 0 8px 32px rgba(255, 107, 53, 0.25);
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF9F1C 100%);
  --gradient-secondary: linear-gradient(135deg, #9B5DE5 0%, #6A0DAD 100%);
  --gradient-accent: linear-gradient(135deg, #2EC4B6 0%, #0077B6 100%);
  --gradient-hero: linear-gradient(135deg, #0D0D1A 0%, #1E0533 50%, #0D1B3A 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* Language Switcher Styles */
.topbar-language {
  position: relative;
}

.topbar-language .dropdown-toggle {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white);
  padding: 0;
  font-weight: 500;
}

.topbar-language .dropdown-toggle::after {
  display: none;
}

.topbar-language .dropdown-menu {
  background: var(--white);
  border: none !important;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 140px;
  margin-top: 10px !important;
  z-index: 9999;
}

.topbar-language .dropdown-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px;
  transition: var(--transition);
}

.topbar-language .dropdown-item:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

/* Hide Google Translate Bar */
iframe.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  font-family: var(--font-body) !important;
}

.goog-te-gadget img {
  display: none !important;
}

.skiptranslate.goog-te-gadget > span {
  display: none !important;
}


/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
}

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

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

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

.section-padding {
  padding: 100px 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* ===== SELECTION ===== */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   REUSABLE UI ELEMENTS
   ============================================================ */

/* Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.2);
  margin-bottom: 16px;
}

/* Section Titles */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

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

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-color);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.4);
  color: var(--white);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-3px);
}

/* Navbar Donate Button */
.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-color);
  color: var(--white) !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(13, 13, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.topbar-content {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
}

.topbar-contact,
.topbar-actions,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-link,
.topbar-login,
.topbar-social a {
  color: rgba(255, 255, 255, 0.88);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-link:hover,
.topbar-login:hover,
.topbar-social a:hover {
  color: var(--primary);
}

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.topbar-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.topbar-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

#mainNavbar {
  background: rgba(13, 13, 26, 0);
  backdrop-filter: blur(0px);
  top: 42px;
  padding: 18px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

#mainNavbar.scrolled {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 250px;
  height: 42px;
  /* background: var(--gradient-primary); */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

/* Toggler */
.toggler-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Footer Contact Info */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  align-items: flex-start;
}

.footer-contact-info li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-info li span {
  line-height: 1.5;
}

.footer-map iframe {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.footer-map iframe:hover {
  filter: grayscale(0) invert(0) opacity(1) !important;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Nav */
@media (max-width: 991px) {
  .site-topbar {
    display: none;
  }

  #mainNavbar {
    top: 0;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  #navMenu {
    background: rgba(13, 13, 26, 0.98);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav {
    gap: 4px !important;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* BG Shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(80px);
  animation: floatShapes 10s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -200px;
  right: -200px;
  animation-delay: -3s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 40%;
  animation-delay: -6s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: var(--warning);
  top: 20%;
  right: 30%;
  animation-delay: -9s;
}

@keyframes floatShapes {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 159, 28, 0.3);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--primary-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* ===== HERO STATS — Premium Glass Cards ===== */
.hero-stats-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero-stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 16px 22px 16px 16px;
  flex: 1 1 150px;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

/* Gradient Icon Box */
.hsc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.hero-stat-card:hover .hsc-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Text Body */
.hsc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.hsc-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.hsc-number .stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hsc-plus {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}

.hsc-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* Bottom glow accent */
.hsc-glow {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 40px;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hero-stat-card:hover .hsc-glow {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-stats-grid {
    gap: 10px;
  }

  .hero-stat-card {
    padding: 13px 16px 13px 13px;
    flex: 1 1 130px;
  }

  .hsc-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .hsc-number .stat-num {
    font-size: 1.4rem;
  }

  .hsc-plus {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .hero-stats-grid {
    flex-direction: column;
    gap: 10px;
  }

  .hero-stat-card {
    flex: 1 1 auto;
  }
}

/* ── Hero Stat Card — Color Variants ── */

/* Orange (Children Supported) */
.hsc-icon-orange {
  background: linear-gradient(135deg, #FF6B35, #FF9F1C);
}

.hsc-glow-orange {
  background: rgba(255, 107, 53, 0.18);
}

.hsc-orange:hover {
  border-color: rgba(255, 107, 53, 0.35);
}

/* Purple (Volunteers) */
.hsc-icon-purple {
  background: linear-gradient(135deg, #9B5DE5, #6A0DAD);
}

.hsc-glow-purple {
  background: rgba(155, 93, 229, 0.18);
}

.hsc-purple:hover {
  border-color: rgba(155, 93, 229, 0.35);
}

/* Teal (Years of Service) */
.hsc-icon-teal {
  background: linear-gradient(135deg, #2EC4B6, #0077B6);
}

.hsc-glow-teal {
  background: rgba(46, 196, 182, 0.18);
}

.hsc-teal:hover {
  border-color: rgba(46, 196, 182, 0.35);
}

/* Hero Images */
.hero-image-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  height: 400px;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-sm {
  position: absolute;
  width: 180px;
  height: 150px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-card {
  top: -30px;
  right: -40px;
}

.bottom-card {
  bottom: 30px;
  left: -40px;
}

.card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  text-align: center;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-award {
  top: 50%;
  right: -20px;
}

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

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-image-grid {
  position: relative;
  height: 480px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.about-img-1 {
  width: 58%;
  height: 65%;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 38%;
  height: 55%;
  top: 10%;
  right: 0;
}

.about-img-3 {
  width: 45%;
  height: 45%;
  bottom: 0;
  left: 15%;
}

.about-experience-box {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-color);
  animation: floatBadge 4s ease-in-out infinite;
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Features */
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(5deg);
}

.feature-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  position: relative;
  overflow: hidden;
}

.founder-desc {
  max-width: 640px;
}

.founder-impact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.founder-impact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.founder-impact-card:hover {
  transform: perspective(900px) rotateX(6deg) rotateY(-6deg) translateY(-6px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: var(--shadow-md);
}

.founder-impact-card:nth-child(even):hover {
  transform: perspective(900px) rotateX(6deg) rotateY(6deg) translateY(-6px);
}

.impact-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
  color: var(--text-dark);
}

.impact-label {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.founder-values-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.founder-value-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.founder-value-card:hover {
  transform: perspective(900px) rotateX(5deg) rotateY(-5deg) translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: var(--shadow-md);
}

.founder-value-card:nth-child(even):hover {
  transform: perspective(900px) rotateX(5deg) rotateY(5deg) translateY(-6px);
}

.founder-value-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--gradient-primary);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.founder-value-card:hover .founder-value-icon {
  transform: translateZ(20px) scale(1.06);
}

.founder-value-card h5 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
}

.founder-value-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.founder-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.founder-image-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(13, 13, 26, 0.82);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
}

.founder-image-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.founder-image-badge span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================================================
   CAUSES / DONATION CARDS SECTION
   ============================================================ */
.causes-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.causes-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}


.causes-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.causes-carousel {
  display: flex;
  gap: 20px;
  width: 100%;
  will-change: transform;
}

.cause-card {
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 33.333%;
  flex: 0 0 33.333%;
  padding: 15px;
}

.cause-card-active {
  transform: scale(1.08);
  z-index: 10;
}

.cause-card-active .cause-card-inner {
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cause-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.cause-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

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

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

.cause-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.cause-badge {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bg-orange { background: var(--gradient-primary); }
.bg-purple { background: var(--gradient-secondary); }
.bg-teal { background: var(--gradient-accent); }

.cause-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cause-card-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.cause-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Progress Section */
.cause-progress-wrapper {
  margin-top: auto;
  margin-bottom: 24px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.progress-info strong {
  color: var(--text-dark);
}

.cause-progress {
  height: 8px;
  background: #F3F4F6;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  border-radius: var(--radius-full);
}

.progress-orange { background: var(--gradient-primary); }
.progress-purple { background: var(--gradient-secondary); }
.progress-teal { background: var(--gradient-accent); }

.progress-goal {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cause-donate-btn {
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cause-card-inner:hover .cause-donate-btn {
  background: var(--primary);
  box-shadow: var(--shadow-color);
}

.cause-donate-btn:hover {
  transform: translateY(-2px);
}

  color: var(--white);
}

/* Responsive Causes */
@media (max-width: 1199px) {
  .cause-card {
    min-width: 33.333%;
    flex: 0 0 33.333%;
  }
}

@media (max-width: 991px) {
  .cause-card {
    min-width: 50%;
    flex: 0 0 50%;
  }

  .cause-card:hover,
  .cause-card:nth-child(even):hover {
    transform: translateY(-4px);
  }

  .cause-card-image {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .cause-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .cause-card:hover,
  .cause-card:nth-child(even):hover {
    transform: translateY(-3px);
  }

  .cause-card-image {
    height: 200px;
  }
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
  background: var(--body-bg);
  position: relative;
  overflow: hidden;
}

.programs-bg-decoration {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Program Cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid var(--border-color);
  border-bottom: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-slow);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.program-card:hover::before {
  opacity: 0.04;
}

.featured-card {
  background: linear-gradient(180deg, #1E0533 0%, #0D0D1A 100%);
  border-color: rgba(155, 93, 229, 0.4);
  border-bottom-color: var(--secondary);
}

.featured-card h4 {
  color: var(--white);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.featured-card .prog-features li {
  color: rgba(255, 255, 255, 0.7) !important;
}

.featured-card .prog-link {
  color: var(--primary-light) !important;
}

.featured-button {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
}

/* ── Swiper Custom Styles ── */
.testimonials-slider {
  padding: 40px 0 60px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: var(--radius-full);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 900;
}

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

@media (max-width: 768px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(40deg);
}

.prog-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px auto;
  /* Centered */
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

/* Program Icon Variants */
.prog-icon-orange {
  background: var(--gradient-primary);
}

.prog-icon-purple {
  background: var(--gradient-secondary);
}

.prog-icon-teal {
  background: var(--gradient-accent);
}

.prog-icon-pink {
  background: linear-gradient(135deg, #F72585, #B5179E);
}

.prog-icon-green {
  background: linear-gradient(135deg, #06D6A0, #118AB2);
}

.prog-icon-yellow {
  background: linear-gradient(135deg, #FFD166, #EF8C2A);
}

.program-card:hover .prog-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.program-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.prog-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items */
  padding: 0;
}

.prog-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  width: fit-content;
}

.prog-features li i {
  color: var(--success);
  font-size: 1rem;
}

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.prog-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0B2E 50%, #0D1B3A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: inline-block;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--white);
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
}

.gallery-item.hidden {
  display: none;
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(155, 93, 229, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  cursor: pointer;
}

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

.gallery-overlay i {
  font-size: 2rem;
}

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--danger);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--body-bg);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

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

.team-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  transform: translateY(100%);
  transition: var(--transition);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.team-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.team-info {
  padding: 20px;
}

.team-info h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--white);
}

.blog-card {
  perspective: 1000px;
  height: 100%;
}

.blog-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.blog-card-inner:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.blog-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.blog-card-inner:hover .blog-img-wrap img {
  transform: scale(1.1);
}


/* Blog Date Badge */
.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: var(--transition);
}

.blog-card-inner:hover .blog-date {
  background: var(--primary);
  color: var(--white);
}


.blog-date strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.blog-date span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Category Tag */
.blog-category-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.blog-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--primary);
}

.blog-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card-inner:hover h4 {
  color: var(--primary);
}


.blog-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-link i {
  color: var(--primary);
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary);
  gap: 12px;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F0F0FF 100%);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}


.featured-testimonial {
  background: linear-gradient(135deg, #1E0533, #0D0D1A);
  border-color: rgba(155, 93, 229, 0.3);
}

.featured-testimonial p,
.featured-testimonial .quote-icon {
  color: rgba(255, 255, 255, 0.8) !important;
}

.featured-testimonial .testimonial-author strong {
  color: var(--white);
}

.featured-testimonial .testimonial-author span {
  color: var(--primary-light);
}

.quote-icon {
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   DONATE SECTION
   ============================================================ */
.donate-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.donate-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.d-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.d-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.d-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -150px;
  left: -100px;
}

.donate-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 60px);
  position: relative;
}

.donate-icon-wrap {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(255, 107, 53, 0);
  }
}

.donate-card h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

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

.donate-card>.row>div>p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.donate-amounts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.amount-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-color);
}

.donate-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
}

.donate-form-wrap:hover {
  box-shadow: var(--shadow-lg);
}


.donate-form-wrap h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.donate-form-wrap h5 i {
  color: var(--danger);
}

.donate-input-wrap {
  position: relative;
  margin-bottom: 14px;
}

.donate-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0.8;
}

.rupee-symbol {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.donate-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--white);
}


.donate-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.donate-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  margin-bottom: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--body-bg);
  color: var(--text-dark);
}

.donate-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.font-awesome-select {
  font-family: 'Poppins', 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif;
  font-weight: 600;
}

.font-awesome-select option {
  font-weight: 600;
  padding: 10px;
}

.donate-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-bottom: 12px;
}

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

.donate-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
  margin: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--body-bg);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}


.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.c-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--body-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

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

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.contact-form-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}


.contact-form-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.form-group-custom label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.95rem;
  pointer-events: none;
}

.form-control-custom {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  background: var(--body-bg);
  color: var(--text-dark);
  resize: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
  background: var(--white);
}

textarea.form-control-custom {
  padding-top: 14px;
}

.input-icon-wrap:has(textarea) i {
  top: 18px;
  transform: none;
}

/* Form Success Message */
.form-success-msg {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(6, 214, 160, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 214, 160, 0.2);
  margin-top: 20px;
}

.form-success-msg i {
  font-size: 3rem;
  color: var(--success);
  display: block;
  margin-bottom: 16px;
}

.form-success-msg h5 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success-msg p {
  color: var(--text-muted);
  margin: 0;
}

.form-success-msg.visible {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
}

.footer-links a:hover {
  color: var(--primary);
  gap: 10px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter input:focus {
  border-color: var(--primary);
}

.footer-newsletter button {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-newsletter button:hover {
  transform: scale(1.05);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.f-badge i {
  color: var(--success);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-color);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- TABLET (max-width: 991px / lg) ---- */
@media (max-width: 991px) {
  .section-padding {
    padding: 72px 0;
  }

  .hero-image-col {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-img-sm {
    display: none;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-img-main {
    height: 320px;
  }

  .floating-badge {
    display: none;
  }

  .badge-award {
    display: none;
  }

  .about-image-grid {
    height: 380px;
  }

  .founder-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-impact-card:last-child {
    grid-column: 1 / -1;
  }

  .founder-image-wrap,
  .founder-image-wrap img {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.gallery-wide {
    grid-column: span 1;
  }

  .gallery-item.gallery-tall {
    grid-row: span 1;
  }

  .donate-card {
    padding: 36px 28px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px;
  }

  .stats-section {
    padding: 60px 0;
  }
}

/* ---- TABLET SMALL (max-width: 767px / md) ---- */
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-item .stat-num {
    font-size: 1.6rem;
  }

  .about-image-grid {
    height: 300px;
  }

  .founder-values-grid {
    grid-template-columns: 1fr;
  }

  .founder-impact-card:hover,
  .founder-impact-card:nth-child(even):hover,
  .founder-value-card:hover,
  .founder-value-card:nth-child(even):hover {
    transform: translateY(-3px);
  }

  .founder-image-wrap,
  .founder-image-wrap img {
    min-height: 320px;
  }

  .about-img-3 {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .team-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .donate-form-wrap {
    padding: 24px;
    margin-top: 20px;
  }

  .donate-amounts {
    gap: 8px;
  }

  .amount-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .footer-top {
    padding: 60px 0 40px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .contact-form-card h4,
  .contact-info-card h4 {
    font-size: 1.1rem;
  }

  .lightbox-nav {
    display: none;
  }
}

/* ---- MOBILE (max-width: 575px / sm) ---- */
@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }

  .brand-text {
    font-size: 0.78rem;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-icon {
    width: 160px;
    height: 36px;
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .hero-img-main {
    height: 260px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-divider {
    height: 30px;
  }

  .about-image-grid {
    height: 260px;
  }

  .about-img-2 {
    display: none;
  }

  .about-img-1 {
    width: 100%;
    height: 100%;
  }

  .founder-impact-grid {
    grid-template-columns: 1fr;
  }

  .founder-impact-card:last-child {
    grid-column: auto;
  }

  .impact-number {
    font-size: 1.6rem;
  }

  .impact-label {
    font-size: 0.68rem;
  }

  .founder-image-wrap,
  .founder-image-wrap img {
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.gallery-wide {
    grid-column: span 1;
  }

  .gallery-item.gallery-tall {
    grid-row: span 1;
  }

  .program-card {
    padding: 28px 22px;
  }

  .stat-card {
    padding: 20px 10px;
  }

  .donate-form-wrap {
    padding: 20px;
  }

  .donate-amounts {
    justify-content: center;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
    height: 44px;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .footer-bottom .row>div {
    margin-bottom: 6px;
  }
}

/* ---- LARGE DESKTOP (min-width: 1400px / xxl) ---- */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 4.2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-img-main {
    height: 460px;
  }
}

/* ============================================================
   24. FLOATING CONTACT ACTIONS (LEFT SIDE)
   ============================================================ */
.floating-actions-left {
  position: fixed;
  left: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.action-btn {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.action-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: pulse-whatsapp 2s infinite;
}

.btn-call {
  background: linear-gradient(135deg, #0077B6 0%, #023E8A 100%);
  animation: pulse-call 2s infinite;
  animation-delay: 1s;
}

.btn-label {
  position: absolute;
  left: 100%;
  margin-left: 15px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-label::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent var(--dark) transparent transparent;
}

.action-btn:hover .btn-label {
  opacity: 1;
  visibility: visible;
  left: 110%;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 119, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}

@media (max-width: 768px) {
  .floating-actions-left {
    left: 15px;
    bottom: 20px;
    gap: 10px;
  }
  
  .action-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .btn-label {
    display: none; /* Hide labels on mobile to save space */
  }
}

/* ============================================================
   25. FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--white);
}

.accordion-custom .accordion-item {
  background: var(--white);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  border: 1px solid var(--border-color) !important;
  transition: var(--transition);
}

.accordion-custom .accordion-button {
  padding: 24px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: transparent;
  box-shadow: none;
  transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.03);
}

.faq-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-light);
  opacity: 0.5;
}

.accordion-custom .accordion-button:not(.collapsed) .faq-num {
  opacity: 1;
}

.accordion-custom .accordion-body {
  padding: 0 30px 30px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: rgba(255, 107, 53, 0.03);
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A2E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item:hover {
  border-color: var(--primary) !important;
  box-shadow: var(--shadow-sm) !important;
}

/* FAQ Image Styles */
.faq-image-wrapper {
  padding: 20px;
}

.faq-image-tilt {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-image-tilt img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.faq-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateZ(50px); /* 3D effect */
  z-index: 2;
}

.faq-image-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}

.faq-image-badge span {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .faq-image-tilt img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .accordion-custom .accordion-button {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .faq-image-tilt img {
    height: 300px;
  }
}

/* ============================================================
   26. ACCREDITATIONS / COMPLIANCE SECTION
   ============================================================ */
.section-padding-sm {
  padding: 60px 0;
}

.compliance-section {
  background: var(--body-bg);
  border-bottom: 1px solid var(--border-color);
}

.compliance-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  height: 100%;
}

.compliance-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.comp-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  transform: translateZ(30px); /* 3D effect */
}

.compliance-card:hover .comp-icon {
  background: var(--primary);
  color: var(--white);
}

.comp-info h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.comp-info span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   27. BANK ACCOUNT SECTION
   ============================================================ */
.bank-section {
  background: #fdfdfd;
}

.bank-qr-card,
.bank-details-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.bank-qr-card:hover,
.bank-details-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.qr-img-wrap {
  width: 240px;
  margin: 0 auto;
  padding: 15px;
  background: var(--white);
  border: 4px solid var(--primary-light);
  border-radius: var(--radius-md);
  transform: translateZ(40px); /* 3D effect */
  box-shadow: var(--shadow-md);
}

.qr-img-wrap img {
  width: 100%;
}

.bank-details-inner h4,
.bank-qr-inner h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 12px;
}

.bank-details-inner h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.bank-info-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-color);
  transform: translateZ(20px);
}

.info-row .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.info-row .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.info-row .value.highlight {
  color: var(--primary);
  letter-spacing: 0.5px;
}

.bg-success-soft {
  background: rgba(46, 204, 113, 0.1);
}

/* ============================================================
   28. PROJECTS & ACTIVITIES SECTION
   ============================================================ */
.projects-section {
  background: var(--body-bg);
}

.nav-custom-tabs {
  border-bottom: none;
  gap: 15px;
}

.nav-custom-tabs .nav-link {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}

.nav-custom-tabs .nav-link:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.nav-custom-tabs .nav-link.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.project-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.date-badge {
  background: var(--dark);
  color: var(--white);
}

.project-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition);
}

.project-card:hover .project-content h4 {
  color: var(--primary);
}

.project-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition);
  align-self: flex-start;
}

.project-link:hover {
  gap: 12px;
  border-bottom-color: var(--primary);
}

.projects-slider, .activities-slider {
  padding-bottom: 40px; /* Space for pagination */
}

/* ============================================================
   29. JOIN OUR TEAM BANNER
   ============================================================ */
.join-team-banner {
  background: var(--gradient-primary);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 40px auto;
  max-width: 95%;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.join-team-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.1;
  pointer-events: none;
}

.join-banner-inner {
  position: relative;
  z-index: 2;
}

.join-now-btn {
  color: var(--primary) !important;
  background: var(--white);
  padding: 12px 35px;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.join-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: var(--dark);
}

.join-team-banner h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

/* ============================================================
   30. GALLERY TABS & SLIDERS
   ============================================================ */
.gallery-image-slider, .gallery-video-slider {
  padding-bottom: 50px;
}

.gallery-card {
  perspective: 1000px;
  height: 100%;
}

.gallery-img-wrap, .gallery-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--dark);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.gallery-img-wrap {
  height: 280px;
}

.gallery-video-wrap {
  height: 280px;
  /* aspect-ratio: 16/9; for videos */
}

.gallery-img-wrap:hover, .gallery-video-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-hover-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-img-wrap:hover .gallery-hover-tag {
  transform: translateY(0);
  opacity: 1;
}

.gallery-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
