/* Professional Banking CSS — Calicut City SCS Style for Vithura Service Co-operative Bank */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+Malayalam:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Rich Espresso & Gold — Vithura SCB Brown Theme */
    --primary: #4A2B0E;          /* Rich Velvet Coffee */
    --primary-dark: #190E08;     /* Obsidian Dark Espresso */
    --primary-deep: #0D0704;     /* Midnight Dark Background */
    --primary-light: #6E3F16;    /* Medium Roasted Coffee */
    --primary-soft: #8C5323;     /* Warm Amber Mocha */

    /* Gold Accents */
    --accent-gold: #D4952A;      /* Warm Antique Gold */
    --accent-gold-glow: rgba(212, 149, 42, 0.35);
    --accent-amber: #B07820;     /* Deep Copper Gold */
    --accent-emerald: #1a7a4a;   /* Success Green */
    --accent-light: #F8EFE3;     /* Soft Latte Cream */

    /* Warm Cream Backgrounds */
    --bg-cream: #FAF6F0;         /* Warm Cream Canvas */
    --bg-card: #FFFFFF;
    --bg-card-alt: #F5ECE0;      /* Soft Mocha Tint */
    --bg-glass-dark: rgba(25, 14, 8, 0.9);
    --bg-glass-light: rgba(255, 255, 255, 0.95);
    --bg-section: #F5EFE8;       /* Section Background */

    /* Typography */
    --text-main: #23140A;        /* Dark Espresso */
    --text-muted: #7A6254;       /* Muted Coffee */
    --white: #FFFFFF;

    /* Borders */
    --border-light: #E8DCD0;
    --border-coffee: #D6C2B0;
    --border-gold-glow: rgba(212, 149, 42, 0.3);
    --border-glass: rgba(74, 43, 14, 0.12);

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(25, 14, 8, 0.05);
    --shadow-md: 0 4px 18px rgba(25, 14, 8, 0.08);
    --shadow-lg: 0 10px 32px rgba(25, 14, 8, 0.13);
    --shadow-glow: 0 4px 20px rgba(212, 149, 42, 0.2);
    --shadow-glow-lg: 0 8px 32px rgba(212, 149, 42, 0.3);

    /* Transitions */
    --transition: all 0.28s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Malayalam', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Neobank Typography & Gradient Masks */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Noto Sans Malayalam', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold) 60%, #EAB308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Neobank Interactive Glowing Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(139, 26, 26, 0.25);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.35);
}

.btn-gold {
    background: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
}

.btn-gold:hover {
    background: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 43, 14, 0.25);
}

/* Top Announcement / Contact Bar */
.header-top-bar {
    background: var(--primary-dark);
    color: #FECACA;
    font-size: 0.82rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    font-weight: 500;
}

.top-bar-item:hover {
    color: var(--accent-gold);
}

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

.top-bar-socials a {
    color: var(--accent-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-bar-socials a:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

/* Header Identity Strip */
.header-identity-strip {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    padding: 0.55rem 0;
    border-bottom: 2px solid var(--accent-gold);
}

/* Main Header Nav Bar */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header-nav-bar {
    background: #FFFFFF;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 62px;
    width: 62px;
    object-fit: contain;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(58, 30, 8, 0.12);
    border: 2px solid var(--accent-gold);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.bank-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bank-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Admin Icon Button */
.admin-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.admin-icon-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 14px rgba(245, 176, 65, 0.55);
    transform: scale(1.1);
    text-decoration: none;
}

.admin-icon-btn i {
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-coffee);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--primary-dark);
}

/* Neobank Hero Section */
.hero-coffee {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 45%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-gold);
}

.hero-coffee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: rgba(255,255,255,0.03);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 176, 65, 0.45);
    padding: 0.5rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(245, 176, 65, 0.15);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--accent-light);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.92;
    font-weight: 400;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.35rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 176, 65, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.stat-box:hover::after {
    opacity: 1;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(245, 176, 65, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-top: 6px;
    display: block;
    opacity: 0.9;
}

/* Neobank Glass Cards & Modern Interactive Cards */
.coffee-card, .neobank-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.coffee-card:hover, .neobank-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.glass-panel-dark {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Working Hours Section */
.hours-section {
    padding: 4rem 0;
}

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

.hours-card {
    background: var(--bg-card);
    border: 2px solid var(--border-coffee);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hours-card.highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    border-color: var(--accent-gold);
}

.hours-card.highlight h3, 
.hours-card.highlight p,
.hours-card.highlight span {
    color: var(--white);
}

.hours-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.hours-card.highlight .hours-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.time-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(92, 54, 16, 0.08);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;

}

.hours-card.highlight .time-pill {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--bg-card-alt);
    border-radius: var(--radius-lg);
    margin: 3rem auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-soft);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Governing Body / Board Members Grid */
.governing-section {
    padding: 4.5rem 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.member-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.member-card.president-card,
.member-card.secretary-card {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-card-alt) 100%);
}

.member-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e2e8f0;
    position: relative;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: var(--transition);
}

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

.member-info {
    padding: 1.25rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-name-ml {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.member-name-en {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.member-role {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin: 0.75rem 0 0.5rem;
    align-self: center;
}

.member-card.president-card .member-role {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.member-phone {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.member-phone:hover {
    color: var(--accent-gold);
}

/* Marquee Bar */
.news-marquee-bar {
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    gap: 1rem;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.news-marquee-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;

}

.news-marquee-track-container {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.news-marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
}

.news-marquee-track:hover {
    animation-play-state: paused;
}

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

.news-marquee-item {
    color: var(--accent-light);
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-marquee-item:hover {
    color: var(--accent-gold);
}

/* Map Frame */
.map-frame {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--border-coffee);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Section Header Shared Component */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-card-alt), #EDE0D0);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1.5px solid rgba(74, 43, 14, 0.25);
    box-shadow: 0 2px 6px rgba(74,43,14,0.08);
}

.section-title {
    font-size: 2.15rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Footer Styling */
.main-footer {
    background: var(--primary-dark);
    color: var(--accent-light);
    padding: 4.5rem 0 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--accent-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Neobank UI Components & Micro-Interactions */
.live-pulse-dot {
    width: 9px;
    height: 9px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.neobank-badge-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.neobank-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.neobank-table th {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
    color: var(--accent-gold);
    padding: 1.1rem 1.25rem;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--accent-gold);
}

.neobank-table td {
    padding: 1.05rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.neobank-table tr:hover td {
    background: rgba(245, 176, 65, 0.06);
}

/* Glass Floating Chips */
.glass-chip {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 2px solid var(--primary-dark);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

@media (max-width: 768px) {
    .admin-login-btn {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .hero-stats-row {
        grid-template-columns: 1fr;
    }

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

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE DESIGN POLISH — Professional Alignment
   ═══════════════════════════════════════════════════ */

/* Consistent vertical section spacing */
.page-section {
    padding: 5rem 0;
}

.page-section-sm {
    padding: 3rem 0;
}

/* Section divider accent line */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ── Hero CTA Buttons — centered & better spaced ── */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

/* ── CM Message Banner — center-aligned text ── */
.cm-banner {
    text-align: left;
}

.cm-banner blockquote {
    font-size: 1rem;
    line-height: 1.75;
}

/* ── Financial Growth Table — center header ── */
.table-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.table-section-header h2 {
    font-size: 1.65rem;
    color: var(--primary-dark);
    margin: 0.5rem 0 0.25rem;
}

.table-section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ── Services Grid — centered section + card polish ── */
.services-section {
    padding: 4.5rem 0;
    background: var(--bg-section);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-light), #F0E4D0);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(74,43,14,0.12);
    border: 1.5px solid var(--border-coffee);
}

/* ── Leadership Section — tighter card hierarchy ── */
.leadership-section {
    padding: 5rem 0;
    text-align: center;
}

.member-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(25,14,8,0.06);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(25,14,8,0.13);
    border-color: var(--accent-gold);
}

/* ── Hours Section — better visual rhythm ── */
.hours-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-coffee);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hours-card:not(.highlight):hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.hours-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.hours-card.highlight h3 {
    color: var(--white);
}

/* ── Video Section — centered, more breathing room ── */
.video-section {
    padding: 3.5rem;
    background: linear-gradient(135deg, var(--bg-card-alt) 0%, #EDE6DC 100%);
    border-radius: var(--radius-xl);
    margin: 0;
    border: 1px solid var(--border-coffee);
    box-shadow: var(--shadow-md);
}

/* ── Stats row polish ── */
.stat-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-num {
    font-size: 1.95rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-top: 6px;
    display: block;
    line-height: 1.4;
}

/* ── Neobank table — cleaner td text ── */
.neobank-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-main);
}

.neobank-table tr:last-child td {
    border-bottom: none;
}

/* ── Global section background alternation ── */
.bg-alt {
    background: var(--bg-section);
}

/* ── Active nav link highlighted more clearly ── */
.nav-links a.active {
    color: var(--primary);
    font-weight: 800;
    border-bottom: 2.5px solid var(--primary);
    padding-bottom: 2px;
}

/* ── Responsive tuning ── */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

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

    .hero-cta-group {
        justify-content: flex-start;
    }

    .page-section {
        padding: 3.5rem 0;
    }

    .video-section {
        padding: 2rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}
/* ═══════════════════════════════════════
   HOMEPAGE REDESIGN — NEW CLASSES
═══════════════════════════════════════ */

/* Section backgrounds */
.pg-section        { padding: 5rem 0; }
.bg-light          { background: var(--bg-cream); }
.bg-cream          { background: var(--bg-section); }
.bg-dark-banner    { background: linear-gradient(135deg,#1a0a04,#2c1205); padding: 4rem 0; }
.bg-video          { background: linear-gradient(135deg,var(--primary-deep),var(--primary-dark)); padding: 5rem 0; }

/* Section header (all centered) */
.section-header { text-align:center; max-width:760px; margin:0 auto 3rem; }
.section-tag    { display:inline-block; background:var(--bg-card-alt); color:var(--primary); font-size:.72rem; font-weight:800; padding:.3rem 1rem; border-radius:var(--radius-full); text-transform:uppercase; letter-spacing:.1em; border:1.5px solid rgba(74,43,14,.25); margin-bottom:.9rem; }
.section-tag.dark { background:rgba(255,255,255,.12); color:var(--accent-gold); border-color:rgba(212,149,42,.4); }
.section-tag-light { display:inline-block; background:var(--accent-gold); color:var(--primary-dark); font-size:.72rem; font-weight:800; padding:.3rem 1rem; border-radius:var(--radius-full); text-transform:uppercase; letter-spacing:.1em; margin-bottom:1rem; }
.section-title  { font-size:2.1rem; font-weight:900; color:var(--primary-dark); margin-bottom:.5rem; letter-spacing:-.025em; line-height:1.2; }
.section-subtitle { font-size:1rem; color:var(--text-muted); max-width:580px; margin:.9rem auto 0; line-height:1.75; }
.section-divider { width:56px; height:4px; background:linear-gradient(90deg,var(--accent-gold),var(--accent-amber)); border-radius:2px; margin:.75rem auto 0; }
.section-cta    { text-align:center; margin-top:2.5rem; }

/* Hero */
.hero-title-gold   { color:var(--accent-gold); display:block; }
.hero-cta-row      { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:0; }
.btn-hero-outline  { display:inline-flex; align-items:center; gap:.6rem; padding:.85rem 1.85rem; font-weight:700; font-size:.95rem; border-radius:var(--radius-full); border:2px solid rgba(255,255,255,.4); color:var(--white); background:transparent; cursor:pointer; transition:var(--transition); }
.btn-hero-outline:hover { background:rgba(255,255,255,.12); border-color:var(--accent-gold); color:var(--accent-gold); }
.hero-poster-wrap  { display:flex; align-items:center; justify-content:center; }
.hero-poster-card  { background:rgba(255,255,255,.97); border:3px solid var(--accent-gold); border-radius:var(--radius-lg); padding:1.25rem; text-align:center; box-shadow:0 20px 60px rgba(0,0,0,.3); }
.hero-poster-img   { width:100%; height:auto; max-height:380px; object-fit:cover; border-radius:var(--radius-md); display:block; }
.hero-poster-caption { margin-top:.85rem; }
.hero-poster-caption strong { display:block; font-size:1rem; color:var(--primary-dark); font-weight:800; }
.hero-poster-caption span   { font-size:.82rem; color:var(--text-muted); }

/* CM Banner */
.cm-card         { display:grid; grid-template-columns:2fr 1fr; gap:2.5rem; align-items:center; }
.cm-heading      { font-size:1.75rem; font-weight:900; color:#fff; margin:.6rem 0 .3rem; letter-spacing:-.02em; }
.cm-meta         { font-size:.85rem; color:var(--accent-gold); font-weight:700; margin-bottom:.9rem; }
.cm-blockquote   { font-size:1rem; line-height:1.8; color:#fde8e8; border-left:4px solid var(--accent-gold); padding-left:1.1rem; margin:0 0 1rem; font-style:italic; }
.cm-author       { font-weight:700; color:#fff; font-size:1rem; }
.cm-badge-side   { display:flex; align-items:center; justify-content:center; }
.cm-emblem       { background:rgba(255,255,255,.08); border:2px solid var(--accent-gold); border-radius:var(--radius-lg); padding:2rem 1.5rem; text-align:center; }
.cm-emblem-icon  { font-size:3.5rem; color:var(--accent-gold); display:block; margin-bottom:.5rem; }
.cm-emblem-title { font-size:1.1rem; font-weight:900; color:#fff; margin:0; }
.cm-emblem-sub   { font-size:.82rem; color:var(--accent-light); margin-top:.25rem; }

/* Financial table */
.table-profit-badge { display:flex; align-items:center; justify-content:center; gap:.65rem; background:rgba(5,150,105,.1); border:1.5px solid rgba(5,150,105,.3); color:#059669; font-weight:700; font-size:.9rem; padding:.55rem 1.25rem; border-radius:var(--radius-full); width:fit-content; margin:0 auto; }
.col-latest     { color:var(--accent-gold) !important; }
.col-latest-val { font-weight:800; color:var(--primary); }
.row-label      { font-weight:700; color:var(--primary-dark); }
.profit-row     { background:rgba(245,176,65,.07); }
.profit-label   { font-weight:800; color:var(--primary-dark); }
.profit-val     { font-weight:700; color:#059669; }

/* Leadership */
.leadership-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:2rem; max-width:660px; margin:0 auto; }

/* Services */
.services-grid  { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.75rem; }
.service-card   { background:var(--bg-card); border:1.5px solid var(--border-light); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; gap:.6rem; transition:var(--transition); box-shadow:var(--shadow-sm); }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--accent-gold); }
.service-icon   { width:54px; height:54px; border-radius:14px; background:linear-gradient(135deg,var(--accent-light),#f0e4d0); color:var(--primary); display:flex; align-items:center; justify-content:center; font-size:1.6rem; border:1.5px solid var(--border-coffee); box-shadow:0 4px 12px rgba(74,43,14,.1); }
.service-title  { font-size:1.2rem; font-weight:800; color:var(--primary-dark); margin:.1rem 0; }
.service-desc   { font-size:.93rem; color:var(--text-muted); line-height:1.65; flex:1; }
.service-link   { display:inline-flex; align-items:center; gap:.4rem; font-size:.88rem; font-weight:700; color:var(--primary); margin-top:.5rem; }
.service-link:hover { color:var(--accent-gold); gap:.6rem; }

/* Hours */
.hours-badge         { display:inline-block; background:var(--accent-gold); color:var(--primary-dark); font-size:.72rem; font-weight:800; padding:.3rem .9rem; border-radius:var(--radius-full); text-transform:uppercase; letter-spacing:.07em; margin-bottom:.75rem; }
.hours-badge-outline { display:inline-block; background:var(--bg-card-alt); color:var(--primary); font-size:.72rem; font-weight:800; padding:.3rem .9rem; border-radius:var(--radius-full); text-transform:uppercase; letter-spacing:.07em; border:1.5px solid var(--border-coffee); margin-bottom:.75rem; }
.hours-card h3       { font-size:1.25rem; font-weight:800; margin:.25rem 0 .5rem; }
.hours-icon          { width:52px; height:52px; border-radius:50%; background:var(--accent-gold); color:var(--primary-dark); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1rem; }
.hours-icon.light    { background:var(--accent-light); color:var(--primary); }
.time-pill.light     { background:rgba(74,43,14,.07); color:var(--primary-dark); }
.hours-open-tag  { margin-top:.9rem; font-size:.84rem; color:#4ade80; font-weight:700; }
.hours-days-tag  { margin-top:.9rem; font-size:.84rem; color:var(--text-muted); font-weight:600; }
.hours-multi-time { display:flex; flex-direction:column; gap:.5rem; margin-top:.9rem; }

/* Responsive fixes */
@media (max-width:900px) {
  .cm-card { grid-template-columns:1fr; }
  .cm-badge-side { display:none; }
  .hero-cta-row { flex-direction:column; align-items:flex-start; }
  .leadership-cards { max-width:100%; }
  .pg-section { padding:3.5rem 0; }
  .section-title { font-size:1.75rem; }
}
@media (max-width:600px) {
  .services-grid { grid-template-columns:1fr; }
  .section-title { font-size:1.55rem; }
}

/* ══════════════════════════════════════════════════════════════
   ADVANCED ANIMATIONS & MODERN UI (PRAVASISIT.COM STYLE INSIDER)
══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

.heading-accent {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.4em;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 5.5s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 6s ease-in-out 2s infinite;
}

/* Shimmering Animated Text Gradients */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4952A 0%, #F5ECC4 50%, #B07820 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #34d399 0%, #a7f3d0 50%, #10b981 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
}

/* Morphing Background Blobs / Design Shapes */
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
}

.design-shape {
    position: absolute;
    border: 1.5px solid rgba(212, 149, 42, 0.2);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(212, 149, 42, 0.04) 100%);
    filter: blur(2px);
    z-index: 1;
    pointer-events: none;
    animation: morph 9s ease-in-out infinite;
}

/* Ultra Rounded Cards & Hover Lift */
.card-ultra-rounded {
    border-radius: 1.8rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 149, 42, 0.15);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
    .card-ultra-rounded { border-radius: 2.5rem; padding: 2.5rem; }
}
.card-ultra-rounded:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(6, 78, 59, 0.12);
    border-color: var(--accent-gold);
}

/* Glow Card Effect */
.glow-card {
    position: relative;
    z-index: 1;
}
.glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #10b981, #D4952A, #064E3B, #D4952A);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease, filter 0.4s ease;
    filter: blur(10px);
    animation: gradient-shift 6s linear infinite;
}
.glow-card:hover::before {
    opacity: 0.65;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-panel:hover {
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(15, 23, 42, 0.88);
    box-shadow: 0 12px 40px 0 rgba(16, 185, 129, 0.18);
}

/* Smooth Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #064E3B;
    border-radius: 12px;
    border: 2px solid #f8fafc;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4952A;
}

/* Continuous Marquee Banner */
@keyframes marquee-horizontal {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee-horizontal 28s linear infinite;
}
.animate-marquee:hover {
    animation-play-state: paused;
}

