/* AST-AAR Capital Investment - Main Stylesheet */

/* Enhanced Variables */
:root {
    /* Brand Colors */
    --primary-color: #0f172a;
    /* Deep Navy */
    --secondary-color: #ffffff;
    --accent-color: #2563eb;
    /* Institutional Blue */
    --text-color: #334155;
    /* Dark Slate */
    --light-bg: #f8fafc;
    /* Cool White */
    --dark-bg: #020617;
    /* Darker Navy */
    --border-color: #e2e8f0;

    /* Fonts */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;

    /* Modern Spacing Scale (4px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;

    /* Section Spacing (Tightened for Content Balance) */
    --section-gap: 3.5rem;
    /* Reduced from 5rem to avoid empty look */
    --section-gap-lg: 5rem;

    /* Shadows (Refined & Subtle) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    /* Much lighter */
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-2xl: none;
    /* Removed heavy shadow for institutional cleanness */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-subtle: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);

    /* Z-index */
    --z-base: 1;
    --z-floating: 1000;
    --z-overlay: 2000;
    --z-modal: 3000;

    /* Animation */
    --transition-speed: 0.3s;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Global Reset & Typography */
body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    /* Standard Gold Ratio for readability */
    background-color: #ffffff;
    /* Stark White background */
    overflow-x: hidden;
    font-size: 1.05rem;
    /* Slightly larger base */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Text Utility Classes (New) */
.max-w-readable {
    max-width: 750px !important;
    /* ~65-75 characters per line at 16px font */
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-balance {
    text-wrap: balance;
    /* Prevents orphaned words in headings */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--space-3);
    /* Reduced from space-6 to tighten heading-to-text gap */
    letter-spacing: -0.01em;
    line-height: 1.2;
    /* Tight line height for headings */
}

/* Fluid Typography Scale (Mobile -> Desktop) */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-family: var(--font-main);
    /* H5 often used for eyebrow tags, keep sans */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

h6 {
    font-size: 0.85rem;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

p {
    margin-bottom: 1.5rem;
    /* Consistent paragraph spacing */
    font-weight: 400;
    color: #4b5563;
    /* Softer gray */
}

.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    /* Larger lead */
    line-height: 1.6;
    color: #1e293b;
    /* Darker for readability */
    font-family: var(--font-main);
    font-weight: 300;
    margin-bottom: 2rem;
    /* Ensure leads have space, but not too much */
}

/* Display Headings for Hero */
.display-3 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
}

.display-4 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

/* Compact Institutional Layout */
.section-padding {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Enhanced Button System */
.btn {
    font-family: var(--font-main);
    /* Buttons stay Sans for legibility */
    font-weight: 500;
    border-radius: 4px;
    /* Sharper corners */
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    transition: all var(--transition-speed) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    /* Dark Navy */
    color: white;
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    border-radius: 4px;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: #f8fafc;
}

/* Enhanced Card System */
.card-custom {
    border: none;
    /* No borders */
    border-top: 1px solid var(--border-color);
    /* Just a top line */
    border-radius: 0;
    /* Square corners */
    background: transparent;
    /* No background */
    transition: all var(--transition-speed) var(--ease-out-expo);
    overflow: visible;
    height: 100%;
    position: relative;
    box-shadow: none;
    /* No shadow */
    padding-top: 1.5rem;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: var(--accent-color);
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.card-custom:hover::before {
    opacity: 1;
}

/* Premium Card Variants */
.card-premium {
    background: var(--gradient-subtle);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-accent);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.card-premium:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Sticky Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 0;
    transition: all var(--transition-speed) var(--ease-out-expo);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-floating);
}

.navbar-custom.scrolled {
    padding: 0.875rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: transform var(--transition-speed) var(--ease-out-expo);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-speed) var(--ease-out-expo);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-custom.scrolled .navbar-brand img {
    height: 46px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar-custom.scrolled .navbar-brand img {
        height: 36px;
    }
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-left: 2rem;
    position: relative;
    transition: all var(--transition-speed) var(--ease-out-expo);
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    padding: 0.5rem 0 !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-accent);
    transition: all var(--transition-speed) var(--ease-out-expo);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    left: 0;
}

/* ============================================
   HERO SECTION - FULLY RESPONSIVE
   ============================================ */

/* Hero Container */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Video Background Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video Element - Fully Responsive */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Ensure proper video coverage on all aspect ratios */
@supports (object-fit: cover) {
    .hero-video {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }
}

/* Dark Overlay - Subtle for readability without blocking visuals */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.65) 0%,
            rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 clamp(1rem, 5vw, 3rem);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Headline - Fluid Responsive Typography */
.hero-headline {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;

    /* Fluid typography: matches Institutional Stewardship heading */
    font-size: clamp(1.5rem, 3vw, 2rem);

    /* Text shadow for readability */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2);

    /* Prevent font loading shift */
    font-display: swap;
}

/* Responsive Breakpoints */

/* Extra Small Devices (320px - 374px) */
@media (max-width: 374px) {
    .hero-headline {
        font-size: clamp(1.5rem, 8vw, 1.75rem);
        line-height: 1.2;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* Small Devices (375px - 767px) */
@media (min-width: 375px) and (max-width: 767px) {
    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .hero-content {
        padding: 0 1.5rem;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline {
        font-size: clamp(2.25rem, 5vw, 3rem);
    }

    .hero-content {
        padding: 0 2rem;
    }
}

/* Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-headline {
        font-size: clamp(3rem, 4vw, 3.5rem);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .hero-headline {
        font-size: clamp(3.5rem, 3vw, 4rem);
    }
}

.btn-custom {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-custom:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary-custom {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background-color: #e67e22;
    color: white;
    border: 1px solid #e67e22;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background-color: #d35400;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 0 1rem;
    /* Ultra-compact padding */
    margin-top: auto;
}

footer h5 {
    color: #fff;
    margin-bottom: 0.75rem;
    /* Tight heading spacing */
    font-size: 1.05rem;
    /* Refined size */
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    /* Compact text */
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

footer ul li {
    margin-bottom: 0.25rem;
    /* Minimal list spacing */
}

footer p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Newsletter Input Styling */
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.15) !important;
    /* Slightly lighter/more visible */
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    height: auto;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    /* Better contrast */
    font-weight: 400;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: var(--z-floating);
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1a5bb8;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
        padding: 5rem 0;
    }

    .hero-section.hero-sm {
        min-height: 30vh;
        /* Mobile requirement 28-38vh */
        padding: 4rem 0;
    }

    .hero-section.hero-lg {
        min-height: 80vh;
    }

    .btn-outline-custom {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        /* Stack buttons on mobile if needed */
        width: fit-content;
    }
}

/* === Floating WhatsApp Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    /* Matching back-to-top vertical spacing */
    left: 30px;
    /* Matching back-to-top horizontal spacing */
    width: 84px;
    height: 84px;
    z-index: var(--z-floating);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;

    /* Hidden by default for scroll effect */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Outer ring */
.whatsapp-float::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    transition: all 0.3s ease;
}

/* Inner circle */
.whatsapp-float::after {
    content: '';
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-float svg {
    color: white;
    z-index: 2;
    width: 32px;
    height: 32px;
    position: relative;
    /* Ensure no pointer events blocking click if SVG is large, though here it's fine */
    pointer-events: none;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.05);
    /* Simplified scale, removed translateY */
}

.whatsapp-float:hover::after {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
        bottom: 24px;
        /* Slightly tighter on mobile */
        left: 24px;
    }

    .whatsapp-float::after {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Responsiveness & Polish */
@media (max-width: 576px) {

    h1.display-3,
    h1.display-4 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        /* Improved mobile scaling */
    }

    .hero-section {
        min-height: 400px;
        padding: var(--space-2xl) 0;
        /* Use CSS variables for consistency */
    }

    .btn-outline-custom {
        margin-left: 0;
        margin-top: var(--space-sm);
        display: block;
        width: fit-content;
    }
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

/* === Premium Leadership Section === */
.leadership-section {
    background-color: #fafafa;
    /* Very light subtle background */
}

.leadership-list {
    display: flex;
    flex-direction: column;
}

.leadership-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle divider */
    transition: background-color 0.2s ease;
}

.leadership-item:hover {
    padding-left: 0.5rem;
    /* Subtle hover movement */
    background-color: rgba(0, 0, 0, 0.01);
}

.leadership-item .name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.leadership-item .role {
    font-size: 0.9rem;
    color: #64748b;
    /* Slate-500 equivalent */
    font-weight: 400;
    text-align: right;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .leadership-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .leadership-item .role {
        text-align: left;
    }

    .mobile-safe-bottom {
        padding-bottom: 120px;
        /* Increased space for floating WhatsApp + back-to-top buttons */
    }

    /* Ensure floating buttons don't overlap */
    .whatsapp-float {
        bottom: 100px;
        /* Move WhatsApp higher to avoid back-to-top overlap */
    }

}

/* === New Team Grid Styles === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 4rem;
}

.team-card {
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #fff;
    transition: background-color 0.2s ease;
}

.team-card:hover {
    background-color: #fafafa;
}

.team-card h4 {
    margin: 0 0 6px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.team-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
    color: var(--text-color);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 4rem;
    /* Safe space for floating buttons */
}

.committee-card {
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fafafa;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

/* Ensure headings spacing matches */
.team-section h2,
.committee-section h2 {
    margin-bottom: 2rem;
    font-weight: 700;
}

@media (max-width: 768px) {

    .team-grid,
    .committee-grid {
        grid-template-columns: 1fr;
        margin-bottom: 8rem;
        /* Ensure huge space for WhatsApp button on mobile */
    }
}

/* Committee Simple List for About Page - REMOVED: Not used in HTML */

/* === Enhanced Governance Section Styling === */

/* Section Indicator Line */
.section-indicator {
    width: 4px;
    height: 28px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-accent {
    background-color: var(--accent-color);
}

/* Governance Section Container */
.governance-section {
    height: 100%;
}

.section-header {
    position: relative;
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    margin-bottom: var(--space-xl);
}

/* === Premium Leadership Grid === */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.leadership-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    min-height: 85px;
    display: flex;
    align-items: center;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.leadership-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.leadership-card:hover::before {
    transform: scaleY(1);
}

.leadership-card:hover::after {
    opacity: 1;
}

.leadership-content .name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.leadership-content .role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.95;
}

/* === Premium Investment Committee === */
.committee-elegant-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.committee-member-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    min-height: 85px;
    display: flex;
    align-items: center;
}

.committee-member-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 0 14px 14px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-member-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.committee-member-card:hover::before {
    opacity: 1;
}

.member-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
}

.member-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1 1 auto;
    min-width: 0;
}

.member-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

/* === Enhanced Section Headers === */
.section-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-header .text-uppercase {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b;
}

/* === Premium Platform Cards === */
.platform-premium-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 18px;
    padding: var(--space-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.platform-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.platform-premium-card:hover::before {
    transform: scaleX(1);
}

.platform-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: 20px;
    margin: 0 auto var(--space-md);
    transition: all 0.3s ease;
}

.platform-premium-card:hover .platform-icon-wrapper {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
    transform: scale(1.1);
}

.platform-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.platform-card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* === Responsive Design === */
@media (min-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {

    .leadership-grid,
    .committee-elegant-list {
        margin-bottom: 3rem;
    }

    .governance-section {
        margin-bottom: 2rem;
    }

    .section-header {
        text-align: center;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .member-info {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .member-badge {
        white-space: normal;
        text-align: center;
        flex-basis: 100%;
    }

    .leadership-card {
        padding: 1rem;
    }

    .committee-member-card {
        padding: 1rem;
    }
}

/* === Space-Efficient Optimizations === */
.mb-5,
.my-5 {
    margin-bottom: 2.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.8rem !important;
}

.py-4 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
}

.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Compact leadership section */
.leadership-section {
    padding: 2.5rem 0 !important;
}

/* Reduce hero carousel height on mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-section.hero-sm {
        min-height: 30vh;
        padding: 3rem 0;
    }

    .section-padding {
        padding: 2rem 0;
    }

    .leadership-section {
        padding: 2rem 0 !important;
    }
}

/* === Premium Enhancements === */
/* Smooth scroll behavior for all browsers */
* {
    scroll-behavior: smooth;
}

/* Enhanced button styling */
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.btn-outline-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Enhanced card hover effects */
.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* Improved focus states for accessibility */
.nav-link:focus,
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Enhanced text selection */
::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Ultrawide Screens (1920px+) */
@media (min-width: 1920px) {
    .hero-headline {
        font-size: 4rem;
        max-width: 1600px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        min-height: auto;
        height: auto;
        page-break-inside: avoid;
    }

    .hero-video-wrapper {
        display: none;
    }

    .hero-overlay {
        background: rgba(15, 23, 42, 0.1);
    }
}

/* Legacy hero styles (for other pages if needed) */
.hero-subtitle {
    font-size: 1.25rem;

}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.animate-scale {
    opacity: 0;
    animation: slideInScale 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

/* Staggered animations for lists */
.animate-stagger>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-stagger>*:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-stagger>*:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-stagger>*:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-stagger>*:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-stagger>*:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-stagger>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Modern Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(37, 99, 235, 0.1);
    z-index: var(--z-floating);
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Enhanced Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-floating);
    transition: all var(--transition-speed) var(--ease-out-expo);
    animation: pulse 3s infinite;
    display: flex;
    align-items: center;
}

.floating-contact:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    animation: none;
}

.floating-contact i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 150px;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Counter Animations */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    animation: countUp 0.8s ease-out;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.8;
}

/* Enhanced Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {

    .navbar-custom,
    .floating-contact,
    .scroll-progress {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    .card-custom {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    /* Ensure proper margins for printing */
    @page {
        margin: 1in;
        size: letter;
    }

    /* High contrast for print */
    .text-muted {
        color: #333 !important;
    }

    .bg-light-custom {
        background: #f9f9f9 !important;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll,
    .animate-left,
    .animate-right,
    .animate-scale,
    .animate-stagger>* {
        opacity: 1;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }

    .card-custom {
        border-width: 2px;
    }
}

/* Enhanced Focus Indicators */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Better image optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Premium loading animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Image Container Effects */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) var(--ease-out-expo);
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.image-container img {
    transition: transform 0.5s var(--ease-out-expo);
    display: block;
    width: 100%;
    height: auto;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.image-container:hover::after {
    opacity: 0.1;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: var(--space-xl);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) var(--ease-out-expo);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-left-width: 6px;
}

/* Enhanced Form Inputs */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: all var(--transition-speed) var(--ease-out-expo);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Modern Badge System */
.badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--gradient-subtle);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    transition: all var(--transition-speed);
}

.badge-modern:hover {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Enhanced Alert System */
.alert-modern {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-md);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid;
}

.alert-modern.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-left-color: #0284c7;
    color: #075985;
}

.alert-modern.alert-success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-left-color: #16a34a;
    color: #166534;
}

/* Modern Timeline */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.625rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-accent);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-item:last-child::before {
    display: none;
}

/* Enhanced Divider */
.divider-modern {
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: var(--space-xl) 0;
    opacity: 0.3;
}

/* Modern Stats Cards */
.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--gradient-subtle);
    border-radius: 16px;
    transition: all var(--transition-speed) var(--ease-out-expo);
}

.stat-card:hover {
    transform: translateY(-6px);
    background: var(--gradient-accent);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: white;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.8;
}

/* ============================================
   FINAL LAYOUT FIXES (OVERLAP & ALIGNMENT)
   ============================================ */

/* 1. Container & Spacing (Fix Overlap) */
.team-section,
section.bg-light-custom {
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding-bottom: 3rem !important;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
}

/* 2. Column Alignment (Fix Whitespace) */
/* Target the specific row in team/index section to reduce gutter */
.team-section .row.g-5,
section.bg-light-custom .row.g-5 {
    --bs-gutter-x: 2rem;
    /* Reduce gutter from 3rem (g-5) to 2rem (g-4) to fix "left offset" */
    margin-bottom: 3rem;
    clear: both;
}

/* Ensure columns stack proper styling */
.team-section .col-lg-5,
section.bg-light-custom .col-lg-5 {
    padding-bottom: 2rem;
    /* Ensure no extra padding causing offset */
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* 3. Footer & Next Section Clearance */
/* Push footer down */
footer,
.footer {
    position: relative;
    z-index: 50;
    /* Above everything */
    margin-top: 0;
    padding-top: 4rem;
    clear: both;
}

section+footer {
    margin-top: 5rem;
}

/* Removed pseudo-element spacer - not needed with proper structure */

/* Desktop-specific clearance for section separation */
@media (min-width: 992px) {
    section.bg-light-custom+section {
        margin-top: 0;
        clear: both;
        padding-top: 0;
    }
}

/* 4. Responsive Mobile Overrides */
@media (max-width: 991px) {

    .team-section,
    section.bg-light-custom {
        padding-bottom: 2rem !important;
    }

    /* Ensure columns stack with space */
    .team-section .col-lg-5,
    section.bg-light-custom .col-lg-5 {
        margin-top: 3rem;
        /* Space between Execs and Board */
        order: 2;
    }

    .team-section .col-lg-7,
    section.bg-light-custom .col-lg-7 {
        order: 1;
        margin-bottom: 0;
        /* Let col-lg-5 margin-top handle it */
    }

    section.section-padding+section.section-padding {
        padding-top: 4rem;
    }
}

/* 5. Z-Index Management (Keep headings on top) */
section .text-center.max-w-700,
section .text-center {
    position: relative;
    z-index: 10;
}

.committee-member-card,
.leadership-card {
    position: relative;
    z-index: 1;
}

.platform-premium-card {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

/* 6. WhatsApp Button Adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px !important;
        z-index: 999;
    }
}

@media (max-width: 430px) {

    .team-section,
    section.bg-light-custom {
        padding-bottom: 2.5rem !important;
    }

    .whatsapp-float {
        bottom: 90px !important;
        width: 70px;
        height: 70px;
    }
}

/* Responsive Typography */
@media (min-width: 768px) and (max-width: 1023px) {

    .text-center.max-w-700 h2,
    .text-center h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .text-center.max-w-700 h2,
    .text-center h2 {
        font-size: 1.75rem;
    }
}