/* ============================================================
   LORD BUDDHA FOUNDATION - PREMIUM CREATIVE FRONTEND
   A top-tier NGO/charity design system with immersive effects
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
    --lbf-blue: #0a1f3f;
    --lbf-blue-light: #1565c0;
    --lbf-blue-dark: #050e1f;
    --lbf-gold: #f0a500;
    --lbf-gold-light: #ffd54f;
    --lbf-gold-dark: #c68400;
    --lbf-gold-glow: rgba(240, 165, 0, 0.5);
    --lbf-cream: #faf8f5;
    --lbf-dark: #080c14;
    --lbf-gray: #64748b;
    --lbf-gray-light: #f1f5f9;
    --lbf-white: #ffffff;
    --lbf-text: #1e293b;
    --lbf-accent: #e53935;
    --lbf-green: #2ecc71;
    --lbf-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --lbf-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --lbf-shadow-gold: 0 10px 40px rgba(240, 165, 0, 0.35);
    --lbf-radius: 20px;
    --lbf-radius-sm: 12px;
    --lbf-trans: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --lbf-trans-fast: all 0.25s ease;
    --lbf-gradient-blue: linear-gradient(135deg, #0a1f3f 0%, #1565c0 100%);
    --lbf-gradient-gold: linear-gradient(135deg, #f0a500 0%, #ffd54f 50%, #f0a500 100%);
    --lbf-gradient-dark: linear-gradient(135deg, #050e1f 0%, #0a1f3f 50%, #080c14 100%);
    --lbf-gradient-hero: linear-gradient(135deg, #0a1f3f 0%, #1a237e 30%, #0d47a1 60%, #01579b 100%);
    --lbf-gradient-vibrant: linear-gradient(135deg, #f0a500, #e53935, #1565c0);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(45px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-35px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-45px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(45px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.82); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes bounceIn {
    0%   { opacity: 0; transform: scale(0.3); }
    50%  { transform: scale(1.08); }
    70%  { transform: scale(0.94); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes kenBurns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.2); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 6px var(--lbf-gold-glow); }
    50%      { box-shadow: 0 0 28px var(--lbf-gold-glow), 0 0 56px rgba(201, 168, 76, 0.18); }
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@keyframes ripple {
    0%   { transform: scale(0); opacity: 0.55; }
    100% { transform: scale(4); opacity: 0; }
}
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.25); }
    50%      { box-shadow: 0 0 22px rgba(201, 168, 76, 0.65), 0 0 44px rgba(201, 168, 76, 0.18); }
}
@keyframes typingCursor {
    0%, 100% { border-right-color: transparent; }
    50%      { border-right-color: var(--lbf-gold); }
}
@keyframes wave {
    0%   { transform: translateX(0) translateZ(0) scaleY(1); }
    50%  { transform: translateX(-25%) translateZ(0) scaleY(0.6); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes scrollDot {
    0%   { opacity: 1; top: 7px; }
    100% { opacity: 0; top: 24px; }
}
@keyframes shineSwipe {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%  { transform: translateY(-16px); }
    60%  { transform: translateY(-8px); }
}
@keyframes meshMove {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}
@keyframes progressShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    25%  { transform: translate(25px, -45px) rotate(90deg); opacity: 0.3; }
    50%  { transform: translate(-18px, -90px) rotate(180deg); opacity: 0.5; }
    75%  { transform: translate(35px, -55px) rotate(270deg); opacity: 0.2; }
}
@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: var(--lbf-blue-light);
    transition: var(--lbf-trans);
}
a:hover {
    color: var(--lbf-gold);
    text-decoration: none;
}

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

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

/* ---- Selection & Scrollbar ---- */
::selection {
    background: var(--lbf-gold);
    color: #fff;
}
::-moz-selection {
    background: var(--lbf-gold);
    color: #fff;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--lbf-cream);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--lbf-gold), var(--lbf-blue));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--lbf-gold-dark), var(--lbf-blue-dark));
}

/* ---- Focus accessibility ---- */
*:focus-visible {
    outline: 2px solid var(--lbf-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--lbf-radius);
}

.gradient-text {
    background: linear-gradient(135deg, var(--lbf-blue) 0%, var(--lbf-gold) 50%, var(--lbf-blue-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.glow {
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.5), 0 0 32px rgba(201, 168, 76, 0.2);
}

.shine {
    position: relative;
    overflow: hidden;
}
.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transition: none;
    animation: shineSwipe 3s ease-in-out infinite;
}

.text-center { text-align: center; }
.text-gold   { color: var(--lbf-gold); }
.text-blue   { color: var(--lbf-blue); }
.text-white  { color: #fff; }
.mb-0  { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* ---- Scroll-reveal helper ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
    padding: 100px 0;
    position: relative;
}
.section-light {
    background: var(--lbf-cream);
}
.section-dark {
    background: var(--lbf-gradient-dark);
    color: #fff;
}
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(240,165,0,0.12), rgba(229,57,53,0.08));
    color: #e53935;
    font-size: 12px;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(229,57,53,0.15);
}
.section-tag i {
    margin-right: 5px;
}

/* ============================================================
   SECTION TITLES  --  gradient text + decorative side lines
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0a1f3f 0%, #1565c0 35%, #f0a500 65%, #e53935 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.section-dark .section-title h2 {
    background: linear-gradient(135deg, #ffffff 0%, var(--lbf-gold-light) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

/* Decorative side lines */
.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    transform: translateY(-50%);
}
.section-title h2::before {
    right: calc(100% + 18px);
    background: linear-gradient(90deg, transparent, var(--lbf-gold));
}
.section-title h2::after {
    left: calc(100% + 18px);
    background: linear-gradient(90deg, var(--lbf-gold), transparent);
}

/* Subtitle fade in */
.section-title p {
    color: var(--lbf-gray);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.section-dark .section-title p {
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, #050e1f 0%, #0a1f3f 50%, #0d47a1 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--lbf-gold);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 18px;
    transition: var(--lbf-trans-fast);
}
.top-bar a:hover {
    color: var(--lbf-gold);
}
.top-bar i {
    margin-right: 6px;
    color: var(--lbf-gold);
}
.top-bar-social a {
    margin-right: 12px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    transition: var(--lbf-trans);
}
.top-bar-social a:hover {
    background: var(--lbf-gold);
    color: var(--lbf-blue-dark);
    transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION  --  glass on scroll + gold donate glow
   ============================================================ */
.navbar-main {
    background: var(--lbf-white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.45s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Glass effect when scrolled */
.navbar-main.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-logo img {
    height: 52px;
    transition: var(--lbf-trans);
}
.scrolled .navbar-logo img {
    height: 40px;
}
.navbar-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lbf-blue);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.navbar-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--lbf-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    transition: var(--lbf-trans);
}

/* Gold underline animation on hover/active */
.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lbf-gold);
    transition: all 0.35s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 65%;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: var(--lbf-gold);
}

/* Donate button with glow pulse */
.navbar-menu li a.nav-donate {
    background: linear-gradient(135deg, #e53935, #f0a500);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    animation: glowPulse 2.5s ease-in-out infinite;
    border: none;
    position: relative;
    overflow: hidden;
}
.navbar-menu li a.nav-donate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation: shineSwipe 2.5s ease-in-out infinite;
    bottom: auto;
    transform: none;
}
.navbar-menu li a.nav-donate:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px var(--lbf-gold-glow);
    color: #fff;
}

/* Mobile toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--lbf-blue);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--lbf-trans-fast);
}
.navbar-toggle:hover {
    background: var(--lbf-cream);
}

/* ============================================================
   HERO  --  full viewport, Ken Burns, glassmorphism, particles
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: var(--lbf-dark);
}

/* Slide with Ken Burns */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-out forwards;
}

/* Animated gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 14, 31, 0.92) 0%,
        rgba(10, 31, 63, 0.8) 30%,
        rgba(21, 101, 192, 0.6) 60%,
        rgba(1, 87, 155, 0.85) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 1;
}

/* Animated particle layer */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 8% 18%, rgba(201, 168, 76, 0.45) 50%, transparent 50%),
        radial-gradient(2px 2px at 28% 55%, rgba(255, 255, 255, 0.25) 50%, transparent 50%),
        radial-gradient(1px 1px at 48% 28%, rgba(201, 168, 76, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 68% 78%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 88% 38%, rgba(201, 168, 76, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 18% 88%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 58% 8%, rgba(201, 168, 76, 0.35) 50%, transparent 50%),
        radial-gradient(2px 2px at 78% 48%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 38% 68%, rgba(201, 168, 76, 0.3) 50%, transparent 50%);
    background-size: 200% 200%;
    animation: particleDrift 14s ease-in-out infinite;
}

/* Glassmorphism content box */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 55px 50px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 165, 0, 0.15);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(240,165,0,0.2), rgba(229,57,53,0.15));
    border: 1px solid rgba(240,165,0,0.4);
    border-radius: 25px;
    font-size: 13px;
    color: var(--lbf-gold-light);
    margin-bottom: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-badge i {
    margin-right: 6px;
}

/* Hero text with glow shadow + staggered entrance */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 0 35px rgba(201, 168, 76, 0.25), 0 4px 20px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-content h1 span {
    color: var(--lbf-gold);
    text-shadow: 0 0 45px rgba(201, 168, 76, 0.45);
}

.hero-content p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-btns {
    animation: fadeInUp 1s ease 1s both;
}

.btn-hero {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #f0a500, #e53935);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    margin: 0 10px 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--lbf-trans);
    box-shadow: 0 6px 28px var(--lbf-gold-glow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
}
.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shineSwipe 3s ease-in-out infinite;
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px var(--lbf-gold-glow);
    color: #fff;
}

.btn-hero-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    margin: 0 8px 10px;
    transition: var(--lbf-trans);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
}
.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
}

/* Animated scroll indicator at bottom */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2.5s ease-in-out infinite;
}
.scroll-indicator .scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}
.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    position: relative;
}
.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--lbf-gold);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

/* ============================================================
   STATS  --  dark mesh bg, circular ring, icon bounce, glow
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--lbf-blue-dark) 0%, var(--lbf-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated mesh pattern */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(44, 111, 170, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: meshMove 12s ease infinite;
}

/* Subtle grid overlay */
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 20px;
    position: relative;
}

/* Circular progress ring background */
.stat-icon-ring {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid rgba(240, 165, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    transition: var(--lbf-trans);
    background: rgba(240,165,0,0.06);
}
.stat-icon-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 168, 76, 0.15);
    animation: rotate360 14s linear infinite;
}
.stat-icon-ring i {
    font-size: 32px;
    color: var(--lbf-gold);
    animation: iconBounce 3.5s ease infinite;
}
.stat-item:nth-child(2) .stat-icon-ring i { animation-delay: 0.3s; }
.stat-item:nth-child(3) .stat-icon-ring i { animation-delay: 0.6s; }
.stat-item:nth-child(4) .stat-icon-ring i { animation-delay: 0.9s; }

.stat-item:hover .stat-icon-ring {
    border-color: var(--lbf-gold);
    box-shadow: 0 0 35px var(--lbf-gold-glow);
    transform: scale(1.12);
}

/* Number glow effect */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 0 22px rgba(201, 168, 76, 0.35), 0 2px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================================
   ABOUT / HOME  --  image with gold offset border, badge
   ============================================================ */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-home-img {
    position: relative;
    border-radius: var(--lbf-radius);
    overflow: visible;
}
.about-home-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--lbf-radius);
    box-shadow: var(--lbf-shadow-lg);
    transition: var(--lbf-trans);
}
.about-home-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--lbf-gold);
    border-radius: var(--lbf-radius);
    z-index: -1;
    transition: var(--lbf-trans);
}
.about-home-img:hover::after {
    top: 12px;
    left: 12px;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #e53935, #f0a500);
    color: #fff;
    padding: 22px;
    border-radius: var(--lbf-radius);
    text-align: center;
    box-shadow: 0 10px 35px rgba(229,57,53,0.4);
    animation: float 4s ease-in-out infinite;
}
.about-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}
.about-badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-home-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--lbf-blue);
    margin-bottom: 22px;
}
.about-home-text p {
    color: var(--lbf-gray);
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lbf-text);
    font-weight: 500;
}
.about-feature i {
    color: var(--lbf-gold);
    font-size: 16px;
}

/* ============================================================
   FOCUS / PROGRAM CARDS  --  bottom line draw, icon morph
   ============================================================ */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.focus-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: var(--lbf-radius);
    text-align: center;
    box-shadow: var(--lbf-shadow);
    transition: var(--lbf-trans);
    position: relative;
    overflow: hidden;
}
.focus-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-blue-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}
.focus-card:hover::before {
    transform: scaleX(1);
}
.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lbf-shadow-lg);
}

.focus-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240,165,0,0.12), rgba(21,101,192,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--lbf-trans);
}
.focus-icon i {
    font-size: 30px;
    color: var(--lbf-gold);
    transition: var(--lbf-trans);
}
.focus-card:hover .focus-icon {
    background: linear-gradient(135deg, #e53935, #f0a500);
    transform: scale(1.15) rotate(5deg);
}
.focus-card:hover .focus-icon i {
    color: #fff;
}
.focus-card h4 {
    font-size: 19px;
    color: var(--lbf-blue);
    margin-bottom: 10px;
    font-weight: 600;
}
.focus-card p {
    font-size: 14px;
    color: var(--lbf-gray);
    line-height: 1.65;
}

/* ============================================================
   CARDS  --  3D tilt, gradient border, image zoom + overlay
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--lbf-white);
    border-radius: var(--lbf-radius);
    overflow: hidden;
    box-shadow: var(--lbf-shadow);
    transition: var(--lbf-trans);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Gradient border on hover via pseudo-element */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--lbf-radius);
    padding: 2px;
    background: transparent;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: var(--lbf-trans);
    pointer-events: none;
    z-index: 2;
}
.card:hover::before {
    background: linear-gradient(135deg, var(--lbf-gold), var(--lbf-blue-light), var(--lbf-gold));
}

/* 3D tilt + colored shadow */
.card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 20px 55px rgba(26, 58, 92, 0.16), 0 6px 20px rgba(201, 168, 76, 0.08);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}
.card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.card:hover .card-img {
    transform: scale(1.1);
}

.card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lbf-blue), var(--lbf-blue-light));
    color: rgba(255, 255, 255, 0.3);
}
.card-img-placeholder i {
    font-size: 42px;
}

/* Overlay with zoom icon */
.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 25, 35, 0.75) 100%);
    opacity: 0;
    transition: var(--lbf-trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card:hover .card-img-overlay {
    opacity: 1;
}
.card-overlay-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lbf-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: translateY(22px) scale(0.8);
    transition: var(--lbf-trans);
}
.card:hover .card-overlay-btn {
    transform: translateY(0) scale(1);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 22px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    z-index: 3;
}
.card-badge-active    { background: linear-gradient(135deg, #28a745, #20c997); }
.card-badge-completed { background: linear-gradient(135deg, var(--lbf-blue), var(--lbf-blue-light)); }

/* Card body slide up reveal */
.card-body {
    padding: 26px;
    transition: var(--lbf-trans);
}
.card:hover .card-body {
    transform: translateY(-5px);
}
.card-body h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--lbf-blue);
    transition: var(--lbf-trans);
    font-family: 'Playfair Display', serif;
}
.card:hover .card-body h3 {
    color: var(--lbf-gold);
}
.card-body p {
    color: var(--lbf-gray);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 6px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--lbf-gray);
}
.card-meta i {
    color: var(--lbf-gold);
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 9px 24px;
    background: transparent;
    color: var(--lbf-blue);
    border: 2px solid var(--lbf-blue);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--lbf-trans);
    cursor: pointer;
}
.btn-card:hover {
    background: var(--lbf-gold);
    border-color: var(--lbf-gold);
    color: #fff;
    transform: translateX(5px);
}

.btn-main {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg, #0a1f3f, #1565c0);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--lbf-trans);
    box-shadow: 0 8px 25px rgba(21,101,192,0.3);
    cursor: pointer;
    border: none;
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 58, 92, 0.35);
    color: #fff;
}

/* ============================================================
   TEAM CARDS  --  gold ring, gradient underline, social slide
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--lbf-radius);
    padding: 38px 22px 28px;
    box-shadow: var(--lbf-shadow);
    transition: var(--lbf-trans);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Top gradient bar on hover */
.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-blue-light), var(--lbf-gold));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transform: scaleX(0);
    transition: transform 0.45s ease;
}
.team-card:hover::after {
    transform: scaleX(1);
}
.team-card:hover {
    box-shadow: var(--lbf-shadow-lg);
    transform: translateY(-8px);
}

/* Circular photo with animated gold ring */
.team-card-img-wrap {
    position: relative;
    width: 132px;
    height: 132px;
    margin: 0 auto 20px;
}
.team-card-img {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--lbf-gold-light);
    transition: var(--lbf-trans);
    position: relative;
    z-index: 1;
}
.team-ring {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 168, 76, 0.3);
    animation: rotate360 18s linear infinite;
}
.team-card:hover .team-card-img {
    border-color: var(--lbf-gold);
    box-shadow: 0 0 28px var(--lbf-gold-glow);
}

/* Name with gradient underline on hover */
.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--lbf-blue);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}
.team-card h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-blue-light));
    transition: width 0.4s ease;
}
.team-card:hover h4::after {
    width: 100%;
}

.team-designation {
    font-size: 13px;
    color: var(--lbf-gold);
    font-weight: 500;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social icons row slides up on hover */
.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(14px);
    transition: var(--lbf-trans);
}
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}
.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(26, 58, 92, 0.07);
    color: var(--lbf-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--lbf-trans);
}
.team-social a:hover {
    background: var(--lbf-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--lbf-shadow-gold);
}

/* ============================================================
   MISSION / VISION BOXES
   ============================================================ */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-box {
    padding: 42px;
    border-radius: var(--lbf-radius);
    background: #fff;
    box-shadow: var(--lbf-shadow);
    border-left: 5px solid var(--lbf-gold);
    transition: var(--lbf-trans);
    position: relative;
    overflow: hidden;
}
.mv-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--lbf-trans);
}
.mv-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--lbf-shadow-lg);
    border-left-color: var(--lbf-blue);
}
.mv-box:hover::before {
    width: 220px;
    height: 220px;
}
.mv-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--lbf-blue);
    margin-bottom: 16px;
}
.mv-box h3 i {
    color: var(--lbf-gold);
    margin-right: 10px;
}
.mv-box p {
    color: var(--lbf-gray);
    line-height: 1.85;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}
.founder-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--lbf-gold-light);
    box-shadow: var(--lbf-shadow-lg);
    transition: var(--lbf-trans);
}
.founder-img:hover {
    animation: borderGlow 2s ease-in-out infinite;
}
.founder-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--lbf-blue);
    margin-bottom: 5px;
}
.founder-text .founder-role {
    color: var(--lbf-gold);
    font-weight: 500;
    margin-bottom: 22px;
    display: block;
    font-size: 15px;
}
.founder-text blockquote {
    font-style: italic;
    color: var(--lbf-gray);
    line-height: 1.9;
    border-left: 4px solid var(--lbf-gold);
    padding-left: 25px;
    font-size: 15px;
    position: relative;
}
.founder-text blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    color: rgba(201, 168, 76, 0.18);
    position: absolute;
    top: -12px;
    left: 25px;
}

/* ============================================================
   GALLERY  --  masonry nth-child, overlay + zoom icon
   ============================================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.gallery-filters button {
    padding: 9px 26px;
    border: 2px solid var(--lbf-blue);
    background: transparent;
    color: var(--lbf-blue);
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--lbf-trans);
    font-family: 'Poppins', sans-serif;
}
.gallery-filters button.active,
.gallery-filters button:hover {
    background: var(--lbf-blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 58, 92, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--lbf-trans);
}

/* Masonry-like varied sizes */
.gallery-grid .gallery-item:nth-child(1)  { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-grid .gallery-item:nth-child(4)  { grid-column: span 2; }
.gallery-grid .gallery-item:nth-child(7)  { grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-item:hover img {
    transform: scale(1.14);
}

/* Overlay with title + zoom icon */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.72), rgba(201, 168, 76, 0.35));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--lbf-trans);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay i {
    font-size: 32px;
    color: #fff;
    transform: scale(0) rotate(-45deg);
    transition: var(--lbf-trans);
}
.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1) rotate(0);
}
.gallery-item-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.15s;
}
.gallery-item:hover .gallery-item-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   CTA BANNER  --  animated gradient, floating shapes, shine
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #e53935 0%, #f0a500 30%, #1565c0 60%, #0a1f3f 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Floating decorative shapes */
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.cta-shape-1 {
    width: 320px;
    height: 320px;
    top: -110px;
    right: -60px;
    animation: float 6s ease-in-out infinite;
}
.cta-shape-2 {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}
.cta-shape-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    animation: morphBlob 8s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.04);
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-banner p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-block;
    padding: 16px 44px;
    background: var(--lbf-blue);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--lbf-trans);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
}
.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shineSwipe 3s ease-in-out infinite;
}
.btn-cta:hover {
    background: var(--lbf-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   NEWS CARDS  --  timeline, date ribbon, slide in
   ============================================================ */
.news-timeline {
    position: relative;
    padding-left: 32px;
}
.news-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--lbf-gold), var(--lbf-blue-light), var(--lbf-gold));
}

.news-card {
    display: flex;
    gap: 22px;
    padding: 24px;
    background: #fff;
    border-radius: var(--lbf-radius);
    box-shadow: var(--lbf-shadow);
    margin-bottom: 22px;
    transition: var(--lbf-trans);
    position: relative;
    animation: fadeInRight 0.6s ease both;
}

/* Timeline dot */
.news-card::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--lbf-gold);
    border-radius: 50%;
    border: 3px solid var(--lbf-white);
    box-shadow: 0 0 0 3px var(--lbf-gold-glow);
    z-index: 1;
}
.news-card:hover {
    transform: translateX(10px);
    box-shadow: var(--lbf-shadow-lg);
}

/* Date badge ribbon */
.news-card-date {
    flex-shrink: 0;
    width: 68px;
    text-align: center;
    padding: 14px 8px;
    background: linear-gradient(135deg, var(--lbf-blue), var(--lbf-blue-light));
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(26, 58, 92, 0.25);
}
.news-card-date .day {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.news-card-date .month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.news-card-content h3 {
    font-size: 17px;
    color: var(--lbf-blue);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: var(--lbf-trans-fast);
}
.news-card:hover .news-card-content h3 {
    color: var(--lbf-gold);
}
.news-card-content p {
    font-size: 13px;
    color: var(--lbf-gray);
    line-height: 1.65;
}

/* ============================================================
   DONATE  --  progress shimmer, campaign badge, bank details
   ============================================================ */
.donate-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 40px;
}

.campaign-card {
    background: #fff;
    border-radius: var(--lbf-radius);
    overflow: hidden;
    box-shadow: var(--lbf-shadow);
    transition: var(--lbf-trans);
    position: relative;
}
.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-blue-light));
    transform: scaleX(0);
    transition: transform 0.45s ease;
    transform-origin: left;
}
.campaign-card:hover::before {
    transform: scaleX(1);
}
.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lbf-shadow-lg);
}

.campaign-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.campaign-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.campaign-card:hover .campaign-card-img img {
    transform: scale(1.08);
}

/* Urgency badge */
.campaign-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 16px;
    border-radius: 25px;
    z-index: 2;
    animation: pulse 2s ease infinite;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.4);
}

.campaign-card-body {
    padding: 24px;
}
.campaign-card-body h3 {
    font-size: 18px;
    color: var(--lbf-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.campaign-card-body p {
    font-size: 14px;
    color: var(--lbf-gray);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* Progress bar with animated shimmer */
.progress-bar-wrap {
    background: var(--lbf-gray-light);
    border-radius: 12px;
    height: 10px;
    margin: 14px 0;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-gold-light), var(--lbf-gold));
    background-size: 200% 100%;
    border-radius: 12px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    animation: progressShimmer 2s ease infinite;
}

.campaign-amounts {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--lbf-gray);
}
.campaign-amounts strong {
    color: var(--lbf-blue);
}

/* Bank details card */
.donate-bank {
    padding: 32px;
    background: #fff;
    border-radius: var(--lbf-radius);
    box-shadow: var(--lbf-shadow);
    border-left: 4px solid var(--lbf-gold);
    transition: var(--lbf-trans);
}
.donate-bank:hover {
    box-shadow: var(--lbf-shadow-lg);
    border-left-color: var(--lbf-blue);
}
.donate-bank h3 {
    font-size: 20px;
    color: var(--lbf-blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}
.donate-bank h3 i {
    color: var(--lbf-gold);
}
.donate-bank table {
    width: 100%;
    border-collapse: collapse;
}
.donate-bank td {
    padding: 11px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.donate-bank td:first-child {
    font-weight: 600;
    width: 40%;
    color: var(--lbf-blue);
}

/* ============================================================
   CONTACT  --  floating labels, icon rotation, map shadow
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Floating label inputs */
.contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--lbf-trans);
    background: #fafafa;
    color: var(--lbf-text);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--lbf-gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    background: #fff;
    transform: translateY(-2px);
}

.contact-form .form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 14px;
    color: var(--lbf-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}
.contact-form .form-group input:focus ~ label,
.contact-form .form-group input:not(:placeholder-shown) ~ label,
.contact-form .form-group textarea:focus ~ label,
.contact-form .form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 16px;
    font-size: 12px;
    color: var(--lbf-gold);
    font-weight: 500;
    background: #fff;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form button {
    padding: 16px 44px;
    background: var(--lbf-gradient-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lbf-trans);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shineSwipe 3s ease-in-out infinite;
}
.contact-form button:hover {
    background: linear-gradient(135deg, var(--lbf-gold), var(--lbf-gold-dark));
    transform: translateY(-2px);
    box-shadow: var(--lbf-shadow-gold);
}

/* Contact info cards with icon rotation on hover */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border-radius: var(--lbf-radius);
    box-shadow: var(--lbf-shadow);
    transition: var(--lbf-trans);
}
.contact-info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--lbf-shadow-lg);
}
.contact-info-card i {
    font-size: 26px;
    color: var(--lbf-gold);
    margin-top: 2px;
    flex-shrink: 0;
    transition: var(--lbf-trans);
}
.contact-info-card:hover i {
    transform: rotate(-15deg) scale(1.2);
    color: var(--lbf-blue);
}
.contact-info-card h4 {
    font-size: 16px;
    color: var(--lbf-blue);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}
.contact-info-card p {
    font-size: 14px;
    color: var(--lbf-gray);
    margin: 0;
    line-height: 1.6;
}

/* Map with rounded corners and shadow */
.contact-map {
    margin-top: 22px;
    border-radius: var(--lbf-radius);
    overflow: hidden;
    box-shadow: var(--lbf-shadow);
}
.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

/* ============================================================
   PAGE BANNER  --  diagonal gradient, animated particles, breadcrumb
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, #050e1f 0%, #0a1f3f 40%, #1565c0 100%);
    padding: 100px 0 70px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Particle dots */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 12% 22%, rgba(201, 168, 76, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 42% 62%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        radial-gradient(2px 2px at 72% 32%, rgba(201, 168, 76, 0.25) 50%, transparent 50%),
        radial-gradient(1px 1px at 82% 72%, rgba(255, 255, 255, 0.15) 50%, transparent 50%);
    background-size: 200% 200%;
    animation: particleDrift 16s ease-in-out infinite;
    pointer-events: none;
}

/* Bottom gradient line */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--lbf-gold), var(--lbf-blue-light), var(--lbf-gold));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    margin-bottom: 14px;
    position: relative;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease both;
}

/* Breadcrumb with separator arrows */
.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
    font-size: 14px;
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.page-banner .breadcrumb a {
    color: var(--lbf-gold-light);
}
.page-banner .breadcrumb a:hover {
    color: var(--lbf-gold);
}
.page-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PROGRAM DETAIL
   ============================================================ */
.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.program-detail-grid img {
    width: 100%;
    border-radius: var(--lbf-radius);
    box-shadow: var(--lbf-shadow-lg);
}
.program-detail-grid h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--lbf-blue);
    margin-bottom: 16px;
}
.program-detail-grid p {
    color: var(--lbf-gray);
    line-height: 1.85;
    margin-bottom: 20px;
}
.info-list {
    list-style: none;
    margin-bottom: 25px;
}
.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    font-size: 14px;
    align-items: center;
}
.info-list li strong {
    color: var(--lbf-blue);
    min-width: 140px;
}
.badge-status {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}
.badge-active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* ============================================================
   FOOTER  --  wave top, gradient dark bg, glowing social icons
   ============================================================ */
.footer {
    background: linear-gradient(180deg, #080c14 0%, #050810 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

/* Wave SVG top border shape */
.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 65px;
    background: var(--lbf-white);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.section-light + .cta-banner + .footer::before,
.section-light + .footer::before {
    background: var(--lbf-cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    position: relative;
}
.footer h4::after {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: var(--lbf-gold);
    margin-top: 10px;
    border-radius: 2px;
}

.footer p {
    font-size: 14px;
    line-height: 1.75;
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--lbf-trans);
}
.footer-links a::before {
    content: '\f105';
    font-family: FontAwesome;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--lbf-trans);
    color: var(--lbf-gold);
}
.footer-links a:hover {
    color: var(--lbf-gold);
    padding-left: 5px;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-contact i {
    color: var(--lbf-gold);
    margin-right: 8px;
    width: 18px;
}

/* Glowing social icons */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--lbf-trans);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a:hover {
    background: var(--lbf-gold);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 22px var(--lbf-gold-glow);
    border-color: var(--lbf-gold);
}

/* Newsletter */
.footer-newsletter .newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 14px;
}
.footer-newsletter input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 50px 0 0 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: var(--lbf-trans);
}
.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter input:focus {
    border-color: var(--lbf-gold);
    background: rgba(255, 255, 255, 0.1);
}
.footer-newsletter button {
    padding: 12px 22px;
    background: var(--lbf-gold);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--lbf-trans);
}
.footer-newsletter button:hover {
    background: var(--lbf-gold-dark);
}

.footer-bottom {
    margin-top: 40px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: var(--lbf-gold);
}

/* ============================================================
   LIGHTBOX / MODAL
   ============================================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-modal img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.4s ease;
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    transition: var(--lbf-trans);
}
.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--lbf-gold);
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-frontend {
    padding: 15px 22px;
    border-radius: var(--lbf-radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================================
   BACK TO TOP  --  circular gold, slide in from bottom
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e53935, #f0a500);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--lbf-trans);
    z-index: 999;
    box-shadow: 0 5px 22px var(--lbf-gold-glow);
    font-size: 17px;
    border: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--lbf-blue);
    box-shadow: 0 8px 28px rgba(26, 58, 92, 0.35);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--lbf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
.preloader-spinner {
    width: 52px;
    height: 52px;
    border: 3px solid var(--lbf-cream);
    border-top-color: var(--lbf-gold);
    border-radius: 50%;
    animation: rotate360 0.8s linear infinite;
}

/* ============================================================
   RESPONSIVE  --  mobile-first breakpoints
   ============================================================ */

/* 1024px - tablets landscape / small laptops */
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .about-home { grid-template-columns: 1fr; gap: 40px; }
    .founder-section { grid-template-columns: 1fr; text-align: center; }
    .founder-img { margin: 0 auto; }
    .founder-text blockquote::before { left: 50%; transform: translateX(-50%); }
    .focus-grid { grid-template-columns: repeat(2, 1fr); }
    .program-detail-grid { grid-template-columns: 1fr; }
}

/* 768px - tablets portrait */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
        padding: 16px;
        border-radius: 0 0 var(--lbf-radius) var(--lbf-radius);
    }
    .navbar-menu.active { display: flex; }
    .navbar-menu li a::after { display: none; }
    .navbar-toggle { display: block; }

    .hero { min-height: 85vh; }
    .hero-content h1 { font-size: 34px; }
    .hero-content { padding: 28px 22px; }

    .section { padding: 65px 0; }
    .section-title h2 { font-size: 30px; }
    .section-title h2::before,
    .section-title h2::after { display: none; }

    .page-banner h1 { font-size: 32px; }
    .page-banner { padding: 70px 0 50px; }

    .card-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-grid .gallery-item:nth-child(7) { grid-row: span 1; }

    .contact-grid { grid-template-columns: 1fr; }
    .donate-info { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .focus-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }

    .top-bar { display: none; }

    .news-card { flex-direction: column; }
    .news-timeline { padding-left: 0; }
    .news-timeline::before { display: none; }
    .news-card::before { display: none; }

    .cta-banner h2 { font-size: 28px; }
    .cta-banner { padding: 60px 0; }
}

/* 480px - small phones */
@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 15px; }
    .hero-content { padding: 24px 18px; margin: 0 10px; }

    .btn-hero,
    .btn-hero-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }

    .section { padding: 50px 0; }
    .section-title h2 { font-size: 26px; }

    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .stat-number { font-size: 36px; }
    .stat-icon-ring { width: 68px; height: 68px; }
    .stat-icon-ring i { font-size: 26px; }

    .about-img-badge { right: 10px; bottom: -10px; padding: 16px; }
    .about-badge-number { font-size: 28px; }

    .page-banner h1 { font-size: 26px; }
    .cta-banner h2 { font-size: 24px; }

    .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 15px; }

    .footer-newsletter .newsletter-form { flex-direction: column; }
    .footer-newsletter input { border-radius: 50px; margin-bottom: 8px; }
    .footer-newsletter button { border-radius: 50px; }
}

/* Large screens */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
    .hero-content h1 { font-size: 64px; }
    .section-title h2 { font-size: 48px; }
}

/* ============================================================
   FOCUS STRIP (homepage icon bar)
   ============================================================ */
.focus-strip{background:#fff;padding:40px 0;border-bottom:1px solid #eee;position:relative;z-index:5;box-shadow:0 5px 30px rgba(0,0,0,.06);}
.focus-strip-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:15px;text-align:center;}
.focus-strip-item{padding:20px 10px;border-radius:var(--lbf-radius);transition:var(--lbf-trans);cursor:default;}
.focus-strip-item:hover{background:var(--lbf-cream);transform:translateY(-5px);}
.focus-strip-icon{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,rgba(240,165,0,.1),rgba(21,101,192,.08));display:flex;align-items:center;justify-content:center;margin:0 auto 10px;transition:var(--lbf-trans);}
.focus-strip-icon i{font-size:22px;color:var(--lbf-gold);transition:var(--lbf-trans);}
.focus-strip-item:hover .focus-strip-icon{background:linear-gradient(135deg,#e53935,#f0a500);transform:scale(1.1) rotate(5deg);}
.focus-strip-item:hover .focus-strip-icon i{color:#fff;}
.focus-strip-item span{font-size:13px;font-weight:600;color:var(--lbf-text);letter-spacing:.3px;}
@media(max-width:768px){.focus-strip-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:480px){.focus-strip-grid{grid-template-columns:repeat(2,1fr);}}

/* ============================================================
   JOIN CTA (homepage section)
   ============================================================ */
.join-cta-section{padding:80px 0;background:linear-gradient(135deg,#050e1f 0%,#0a1f3f 40%,#1565c0 100%);position:relative;overflow:hidden;}
.join-cta-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'%3E%3Cg fill='%23f0a500' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}
.join-cta-box{display:grid;grid-template-columns:1.3fr 1fr;gap:50px;align-items:center;position:relative;z-index:1;}
.join-cta-content{color:#fff;}
.join-cta-content h2{font-family:'Playfair Display',serif;font-size:38px;margin-bottom:15px;}
.join-cta-content p{font-size:16px;opacity:.85;margin-bottom:25px;line-height:1.8;}
.join-cta-btns{display:flex;gap:12px;flex-wrap:wrap;}
.join-cta-cards{display:grid;grid-template-columns:1fr;gap:15px;}
.join-mini-card{background:rgba(255,255,255,.08);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.1);border-radius:var(--lbf-radius-sm);padding:22px;display:flex;align-items:center;gap:15px;transition:var(--lbf-trans);color:#fff;}
.join-mini-card:hover{background:rgba(255,255,255,.14);transform:translateX(8px);}
.join-mini-card i{font-size:24px;color:var(--lbf-gold);width:30px;text-align:center;flex-shrink:0;}
.join-mini-card h4{font-size:16px;margin-bottom:2px;}
.join-mini-card p{font-size:12px;opacity:.7;margin:0;}
@media(max-width:768px){.join-cta-box{grid-template-columns:1fr;}.join-cta-content h2{font-size:28px;}}

/* ============================================================
   JOIN US PAGE
   ============================================================ */
.join-ways-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;margin-bottom:50px;}
.join-way-card{background:#fff;padding:35px 25px;border-radius:var(--lbf-radius);text-align:center;box-shadow:var(--lbf-shadow);transition:var(--lbf-trans);position:relative;overflow:hidden;}
.join-way-card::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,#e53935,#f0a500);transform:scaleX(0);transition:transform .4s ease;}
.join-way-card:hover::after{transform:scaleX(1);}
.join-way-card:hover{transform:translateY(-8px);box-shadow:var(--lbf-shadow-lg);}
.join-way-icon{width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,rgba(240,165,0,.12),rgba(229,57,53,.08));display:flex;align-items:center;justify-content:center;margin:0 auto 15px;transition:var(--lbf-trans);}
.join-way-icon i{font-size:28px;color:#e53935;transition:var(--lbf-trans);}
.join-way-card:hover .join-way-icon{background:linear-gradient(135deg,#e53935,#f0a500);transform:scale(1.1);}
.join-way-card:hover .join-way-icon i{color:#fff;}
.join-way-card h3{font-size:18px;color:var(--lbf-blue);margin-bottom:8px;font-weight:600;}
.join-way-card p{font-size:13px;color:var(--lbf-gray);line-height:1.7;}
@media(max-width:1024px){.join-ways-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.join-ways-grid{grid-template-columns:1fr;}}

/* Join Quote */
.join-quote-section{background:linear-gradient(135deg,#050e1f,#0a1f3f,#1565c0);padding:60px 0;text-align:center;}
.join-quote-section blockquote{color:rgba(255,255,255,.9);font-family:'Playfair Display',serif;font-size:22px;font-style:italic;line-height:1.8;max-width:900px;margin:0 auto;position:relative;padding:0 30px;}
.join-quote-section blockquote i{color:var(--lbf-gold);font-size:20px;margin:0 8px;opacity:.6;}
@media(max-width:768px){.join-quote-section blockquote{font-size:17px;}}

/* Application Form */
.join-form-wrapper{max-width:900px;margin:0 auto;background:#fff;border-radius:var(--lbf-radius);padding:45px;box-shadow:var(--lbf-shadow-lg);position:relative;overflow:hidden;}
.join-form-wrapper::before{content:'';position:absolute;top:0;left:0;width:100%;height:5px;background:linear-gradient(90deg,#e53935,#f0a500,#1565c0,#0a1f3f);background-size:300% 100%;animation:gradientShift 4s ease infinite;}
.join-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.join-form-full{grid-column:1/-1;}
.join-form-group label{display:block;font-size:13px;font-weight:600;color:var(--lbf-blue);margin-bottom:6px;}
.join-form-group label i{margin-right:5px;color:var(--lbf-gold);}
.join-form-group label .req{color:#e53935;}
.join-form-group input,
.join-form-group select,
.join-form-group textarea{width:100%;padding:14px 16px;border:2px solid #e8e8e8;border-radius:10px;font-size:14px;font-family:'Poppins',sans-serif;transition:var(--lbf-trans);background:#fafafa;}
.join-form-group input:focus,
.join-form-group select:focus,
.join-form-group textarea:focus{border-color:var(--lbf-gold);background:#fff;box-shadow:0 0 0 4px rgba(240,165,0,.1);outline:none;transform:translateY(-1px);}
.join-form-group textarea{resize:vertical;}
.join-form-group input[type="file"]{padding:10px;cursor:pointer;}
.join-form-submit{text-align:center;margin-top:30px;}
.join-form-submit button{font-size:16px;padding:16px 50px;}
@media(max-width:768px){.join-form-grid{grid-template-columns:1fr;}.join-form-wrapper{padding:25px;}}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .navbar-main, .top-bar, .back-to-top, .footer-social,
    .scroll-indicator, .hero-particles, .hero-overlay { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
    .section { padding: 30px 0; }
    body.frontend { color: #000; background: #fff; }
}
