/*--------------------------------------------------------------
# CSS Variables - Premium Modern SaaS-Style NGO Theme
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors (Harmonious Modern Palette) */
  --primary: #0f172a;         /* Slate 900 */
  --primary-hover: #1e293b;   /* Slate 800 */
  --primary-light: #0284c7;   /* Sky 600 */
  --accent: #f43f5e;          /* Rose 500 */
  --accent-hover: #e11d48;    /* Rose 600 */
  --gold: #f59e0b;            /* Amber 500 */
  --gold-dark: #d97706;       /* Amber 600 */
  --gold-light: #fef3c7;      /* Amber 100 */

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;       /* Slate 50 */
  --light: #f1f5f9;           /* Slate 100 */
  --border: #e2e8f0;          /* Slate 200 */
  --muted: #64748b;           /* Slate 500 */
  --text: #0f172a;            /* Slate 900 */
  --text-light: #334155;      /* Slate 700 */

  /* Dark Tones (Footer & Headers) */
  --dark: #0f172a;            /* Slate 900 */
  --dark-2: #1e293b;          /* Slate 800 */
  --dark-3: #0f172a;

  /* Status Colors */
  --success: #10b981;         /* Emerald 500 */
  --success-dark: #059669;    /* Emerald 600 */
  --danger: #ef4444;          /* Red 500 */
  --info: #3b82f6;            /* Blue 500 */

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --grad-accent: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-hero: linear-gradient(135deg, #0f172a 0%, #0369a1 60%, #f43f5e 100%);
  --grad-footer: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.03), 0 1px 2px rgba(15,23,42,0.01);
  --shadow-md: 0 10px 15px -3px rgba(15,23,42,0.05), 0 4px 6px -4px rgba(15,23,42,0.02);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,0.08), 0 8px 10px -6px rgba(15,23,42,0.03);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,0.12);
  --shadow-accent: 0 10px 20px -3px rgba(244,63,94,0.25);
  --shadow-gold: 0 10px 20px -3px rgba(245,158,11,0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.625;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

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

/*--------------------------------------------------------------
# Utility Classes & Buttons
--------------------------------------------------------------*/
.text-primary-ngo  { color: var(--primary) !important; }
.text-accent       { color: var(--accent)  !important; }
.text-gold         { color: var(--gold)    !important; }
.bg-primary-ngo    { background: var(--primary) !important; }
.bg-accent         { background: var(--accent)  !important; }

.btn-ngo-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-ngo-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
  color: var(--white);
}

.btn-ngo-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
}
.btn-ngo-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244,63,94,0.4);
  color: var(--white);
}

.btn-ngo-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-ngo-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,158,11,0.4);
  color: var(--white);
}

.btn-ngo-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-ngo-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Bootstrap Overrides */
.btn-primary {
  background: var(--grad-primary);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-success:hover {
  background: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-full);
  padding: 10px 26px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Section Styles
--------------------------------------------------------------*/
.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  font-weight: 800;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: var(--grad-accent);
  border-radius: var(--radius-full);
}
.section-title p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-heading {
  background: var(--grad-primary);
  color: var(--white);
  padding: 16px 28px;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.section-heading::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

/* Page Hero Banner */
.page-hero {
  background: var(--grad-hero);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::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%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.page-hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  position: relative;
  text-shadow: 0 4px 16px rgba(0,0,0,.15);
  letter-spacing: -0.03em;
}
.page-hero p {
  color: rgba(255,255,255,.9);
  font-size: 1.25rem;
  position: relative;
  max-width: 650px;
  margin: 1rem auto 0;
  font-weight: 400;
}
.page-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  position: relative;
  margin-top: 1.5rem;
}
.page-hero .breadcrumb-item, 
.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.page-hero .breadcrumb-item.active { color: var(--gold); font-weight: 600; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }

/*--------------------------------------------------------------
# Generic Cards (SaaS Style)
--------------------------------------------------------------*/
.card-ngo {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-ngo:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(244,63,94,0.2);
}
.card-ngo img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: var(--transition);
}
.card-ngo:hover img {
  transform: scale(1.03);
}
.card-ngo .card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-ngo .card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: .75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card-ngo .card-text {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.6;
}

.card-custom {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card-custom:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(2,132,199,0.2);
}

/*--------------------------------------------------------------
# News Ticker
--------------------------------------------------------------*/
.news-ticker-bar {
  background: var(--primary);
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-label {
  background: var(--grad-accent);
  color: var(--white);
  padding: 0 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .75px;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  position: relative;
}
.ticker-label::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  border-left: 12px solid var(--accent-hover);
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  z-index: 10;
}

.ticker-scroll-area {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-move 40s linear infinite;
  height: 100%;
}
.news-ticker-bar:hover .ticker-content { animation-play-state: paused; }

.ticker-item {
  padding: 0 24px;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.ticker-item a {
  color: rgba(255,255,255,.9);
}
.ticker-item a:hover { color: var(--gold); }
.ticker-item i { color: var(--gold); font-size: 6px; }

@keyframes ticker-move {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 767px) {
  .news-ticker-bar { height: 40px; }
  .ticker-label { font-size: .8rem; padding: 0 16px; }
  .ticker-label::after { border-top-width: 20px; border-bottom-width: 20px; }
  .ticker-item { font-size: .85rem; padding: 0 16px; }
}

/*--------------------------------------------------------------
# Top Utility Bar
--------------------------------------------------------------*/
.top-utility-bar {
  background: #090d16;
  color: rgba(255,255,255,.7);
  padding: 10px 0;
  font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.top-utility-bar a {
  color: rgba(255,255,255,.7);
}
.top-utility-bar a:hover { color: var(--accent); }
.top-utility-bar .utility-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-utility-bar .utility-left .util-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-utility-bar .utility-left .util-item i {
  color: var(--accent);
}
.top-utility-bar .utility-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.util-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75) !important;
  font-size: .85rem;
  transition: var(--transition);
}
.util-social-link:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Brand Bar (Logo + Title + CTA)
--------------------------------------------------------------*/
.brand-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.brand-bar .logo-wrap img {
  max-height: 70px;
  width: auto;
  border-radius: 0;
}
.brand-bar .org-name {
  font-size: 2.1rem;
  color: var(--primary);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.brand-bar .org-tagline {
  font-size: .95rem;
  color: var(--muted);
  margin: 4px 0 0 0;
  font-weight: 500;
}
.brand-bar .brand-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .brand-bar .org-name { font-size: 1.5rem; }
  .brand-bar .org-tagline { font-size: .82rem; }
  .brand-bar .logo-wrap img { max-height: 55px; }
}

/*--------------------------------------------------------------
# Main Navigation Bar
--------------------------------------------------------------*/
.main-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.main-navbar.shadow-lg {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(15,23,42,0.06);
}

.main-navbar .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-navbar .nav-list > li {
  position: relative;
}
.main-navbar .nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.main-navbar .nav-list > li > a:hover,
.main-navbar .nav-list > li.has-dropdown:hover > a {
  color: var(--accent);
  background: var(--off-white);
}

.main-navbar .nav-list > li > a i {
  font-size: .85rem;
  opacity: 0.8;
}

/* Dropdown Menu Styles */
.dropdown-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s var(--ease);
  z-index: 1000;
}
.main-navbar .nav-list > li.has-dropdown:hover .dropdown-nav,
.navbar-right-section .has-dropdown:hover .dropdown-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-nav li a:hover {
  color: var(--accent);
  background: var(--off-white);
  transform: translateX(4px);
}
.dropdown-nav li a i {
  font-size: 1rem;
  color: var(--accent);
}

/* Right Section - Login Button */
.nav-login-btn {
  background: var(--light);
  color: var(--primary) !important;
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: .9rem;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.nav-login-btn:hover {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
}

/* Mobile Toggle */
.navbar-mobile-toggle {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: var(--primary);
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.navbar-mobile-toggle:hover {
  background: var(--border);
}

/* Mobile Navbar Brand */
.navbar-brand-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand-mobile img {
  height: 38px;
  width: auto;
  border-radius: 0;
}
.navbar-brand-mobile span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

/* Offcanvas Custom styling */
.offcanvas {
  background: var(--white);
  border-right: 1px solid var(--border);
}
.offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.offcanvas-title {
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.offcanvas-title img {
  height: 34px;
}
.offcanvas-close-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
}
.offcanvas-body {
  padding: 24px 16px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.mobile-nav-link:hover {
  background: var(--off-white);
  color: var(--accent);
}
.mobile-nav-link i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 22px;
}

#mobileMenu .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 4px;
}
#mobileMenu .accordion-button {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-sm);
}
#mobileMenu .accordion-button i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 22px;
}
#mobileMenu .accordion-button::after {
  margin-left: auto;
  font-size: .8rem;
  color: var(--muted);
}
#mobileMenu .accordion-button:not(.collapsed) {
  background: var(--off-white);
  color: var(--accent);
}
#mobileMenu .accordion-body {
  padding: 6px 12px 12px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--border);
  margin-left: 30px;
}

/*--------------------------------------------------------------
# Stat Counters Cards
--------------------------------------------------------------*/
.stat-counter-card {
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-counter-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,132,199,0.15);
  transform: translateY(-4px);
}
.stat-counter-card .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(2,132,199,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.8rem;
  transition: var(--transition);
}
.stat-counter-card:hover .stat-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
}
.stat-counter-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0 6px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-counter-card .stat-label {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,63,94,0.15);
}
.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 4rem;
  color: rgba(15,23,42,0.03);
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-name h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-author-name span {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Timeline / Story Styles
--------------------------------------------------------------*/
.story-timeline {
  position: relative;
  padding: 30px 0;
}
.story-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  margin-bottom: 50px;
  position: relative;
}
.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}
.timeline-badge {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 15px;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.timeline-panel {
  width: 45%;
  float: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.timeline-panel:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.timeline-item:nth-child(even) .timeline-panel {
  float: right;
}
.timeline-panel::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 26px;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--border);
  border-bottom: 10px solid transparent;
}
.timeline-panel::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 26px;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--white);
  border-bottom: 10px solid transparent;
}
.timeline-item:nth-child(even) .timeline-panel::before {
  left: -10px;
  right: auto;
  border-left: none;
  border-right: 10px solid var(--border);
}
.timeline-item:nth-child(even) .timeline-panel::after {
  left: -9px;
  right: auto;
  border-left: none;
  border-right: 10px solid var(--white);
}

@media (max-width: 768px) {
  .story-timeline::after { left: 24px; }
  .timeline-badge { left: 24px; margin-left: -18px; }
  .timeline-panel { width: calc(100% - 60px); float: right !important; }
  .timeline-panel::before { left: -10px; right: auto; border-left: none; border-right: 10px solid var(--border); }
  .timeline-panel::after { left: -9px; right: auto; border-left: none; border-right: 10px solid var(--white); }
}

/*--------------------------------------------------------------
# Forms (Premium Beautiful Inputs)
--------------------------------------------------------------*/
.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}
.form-field-title label {
  font-weight: 700;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: .95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background-color: var(--off-white);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  background-color: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.1);
  outline: none;
}
.form-control::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

/* Image uploader styling */
.image-uploader {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.image-uploader:hover {
  border-color: var(--accent);
  background: rgba(244,63,94,0.02);
}
.uploader-empty {
  text-align: center;
  color: var(--muted);
}
.uploader-empty i { font-size: 1.6rem; margin-bottom: 8px; color: var(--accent); }
.uploader-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.uploader-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.uploader-controls {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  z-index: 10;
}
.image-uploader:hover .uploader-controls { opacity: 1; }

/* Bank Details Styling */
.payment-info-section {
  background: #fdfefe;
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
}
.bank-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .bank-details-grid { grid-template-columns: 1fr; }
}
.bank-info-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bank-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.bank-detail-label { font-weight: 700; font-size: .85rem; color: var(--muted); }
.bank-detail-value { font-weight: 700; font-size: .95rem; color: var(--primary); }
.copy-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}
.copy-btn:hover { color: var(--accent); background: rgba(15,23,42,0.05); }

.qr-code-card {
  text-align: center;
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.qr-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 10px auto;
  box-shadow: var(--shadow-sm);
}
.qr-label { font-weight: 700; font-size: .9rem; color: var(--primary); }

/*--------------------------------------------------------------
# Modern Footer Section
--------------------------------------------------------------*/
.footer-section {
  background: var(--grad-footer);
  color: rgba(255,255,255,0.7);
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

/* Contact Strip */
.footer-contact-strip {
  background: var(--accent);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-strip .contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.footer-contact-strip .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.footer-contact-strip .contact-info h5 {
  color: var(--white);
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.footer-contact-strip .contact-info span {
  font-size: .88rem;
  opacity: 0.9;
}
.footer-contact-strip .contact-info a {
  color: var(--white);
}

.footer-main {
  padding: 80px 0 40px;
}
.footer-logo-wrap img {
  max-height: 65px;
  margin-bottom: 24px;
}
.footer-about-text {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.footer-widget-title {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 500;
}
.footer-links li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-links li a i { font-size: .75rem; }

.footer-contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: .95rem;
}
.footer-contact-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact-list li a { color: rgba(255,255,255,0.7); }
.footer-contact-list li a:hover { color: var(--accent); }

.footer-social-icons {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8) !important;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #090d16;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p {
  margin: 0;
  font-size: .9rem;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--accent); }

/*--------------------------------------------------------------
# Back to top & Page Loader
--------------------------------------------------------------*/
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .4s ease, visibility .4s ease;
}
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/*--------------------------------------------------------------
# Swiper overrides & extra styles
--------------------------------------------------------------*/
.hero-overlay-badge {
  display: inline-block;
  background: rgba(244,63,94,0.15);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid rgba(244,63,94,0.25);
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 24px !important;
  border-radius: 4px !important;
}
.swiper-button-prev, .swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1.25rem !important;
  font-weight: bold !important;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
}