/* 
    TechDwar Solutions - Premium Design System
    Theme: Deep Blue + Gold on White/Light
    Author: Antigravity Assistant
*/

:root {
    /* === Color Palette === */
    --primary: #0A1F44;          /* Deep Blue */
    --primary-light: #132D5E;    /* Lighter Blue */
    --primary-dark: #061530;     /* Darkest Blue */
    --accent: #D4AF37;           /* Gold */
    --accent-light: #E8C84A;     /* Lighter Gold */
    --accent-dark: #B8952E;      /* Deeper Gold */

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-soft: #F1F5F9;
    --bg-blue-subtle: #EEF2FF;
    --bg-dark: #0A1F44;
    --bg-darker: #061530;

    /* Text */
    --text-heading: #0A1F44;
    --text-body: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --text-on-dark: #CBD5E1;

    /* Glass & Card */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(10, 31, 68, 0.08);
    --card-bg: #FFFFFF;
    --card-shadow: 0 4px 6px -1px rgba(10, 31, 68, 0.07), 0 2px 4px -2px rgba(10, 31, 68, 0.05);
    --card-shadow-hover: 0 20px 40px -12px rgba(10, 31, 68, 0.15);

    /* Layout Tokens */
    --container: 1200px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Navbar */
    --nav-height: 75px;
}

/* === DARK MODE === */
[data-theme='dark'] {
    --primary: #C5D1E8;
    --primary-light: #8DA2C4;
    --primary-dark: #E2E8F0;
    --accent: #F0D060;
    --accent-light: #FDE68A;
    --accent-dark: #D4AF37;

    --bg-white: #0B1120;
    --bg-light: #111827;
    --bg-soft: #1A2332;
    --bg-blue-subtle: rgba(99, 138, 201, 0.08);
    --bg-dark: #060D1A;
    --bg-darker: #040812;

    --text-heading: #E2E8F0;
    --text-body: #94A3B8;
    --text-muted: #64748B;
    --text-white: #F1F5F9;
    --text-on-dark: #94A3B8;

    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    --card-bg: #131C2E;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --card-shadow-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}

/* === THEME TOGGLE BUTTON === */
.theme-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition);
    overflow: hidden;
    flex-shrink: 0;
    z-index: 10;
}

.theme-btn:hover {
    background: var(--bg-blue-subtle);
    border-color: var(--accent);
    transform: scale(1.05);
}

.theme-btn .sun-icon,
.theme-btn .moon-icon {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-dark);
}

/* Light mode: show sun, hide moon */
.theme-btn .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-btn .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* === BASE RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition);
}

ul { list-style: none; }

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-padding {
    padding: 60px 0;
}

.flex {
    display: flex;
    align-items: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2-col,
.grid-3-col,
.grid-4-col {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* === TEXT UTILITIES === */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 620px;
    line-height: 1.8;
}

.text-center { text-align: center; }

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent);
}

/* === CARDS === */
.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--transition);
    box-shadow: 0 4px 6px -1px rgba(10, 31, 68, 0.07), 0 2px 4px -2px rgba(10, 31, 68, 0.05), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -10%), rgba(255,255,255,0.06), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(10, 31, 68, 0.15), 0 0 40px rgba(212, 175, 55, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: var(--bg-blue-subtle);
    color: var(--primary);
    transition: all 0.4s var(--transition);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 8px 24px -6px rgba(10, 31, 68, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px -6px rgba(10, 31, 68, 0.45), 0 0 20px rgba(10, 31, 68, 0.2);
}

.btn-accent {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    color: #0B1B34 !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    border-radius: 999px;
    opacity: 1;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    border-color: var(--text-white);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 0.85rem 1rem;
}

.btn-ghost:hover {
    color: var(--accent-dark);
}

.btn-ghost svg {
    transition: transform 0.3s var(--transition);
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

/* Button shine */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.6s var(--transition);
}

.btn-primary:hover::before { left: 100%; }

/* === FORM INPUTS === */
.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-heading);
}

.form-input {
    background: var(--bg-light);
    border: 1.5px solid var(--glass-border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    color: var(--text-heading);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: var(--bg-white);
}

.form-input::placeholder {
    color: var(--text-muted);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* === HERO SECTIONS (Dark) === */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--text-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-hero p {
    color: var(--text-on-dark);
    font-size: 1.15rem;
    max-width: 650px;
    line-height: 1.8;
}

/* Decorative grid pattern for hero backgrounds */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* === HERO NEXT-GEN === */
.hero-nextgen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
    margin-top: 0;
}

#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hero-orb--gold {
    width: 50vw; height: 50vw;
    top: -15%; left: -10%;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 60%);
    animation: float-slow 8s ease-in-out infinite;
}
.hero-orb--blue {
    width: 60vw; height: 60vw;
    bottom: -25%; right: -15%;
    background: radial-gradient(circle, rgba(13,45,94,0.5) 0%, transparent 60%);
    filter: blur(100px);
    animation: float-slow 10s ease-in-out infinite reverse;
}
.hero-orb--accent {
    width: 30vw; height: 30vw;
    top: 30%; right: 20%;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 60%);
    filter: blur(60px);
    animation: float-slow 12s ease-in-out infinite 2s;
}

/* Mouse-follow Glow */
.hero-mouse-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease, top 0.15s ease;
    display: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
}

/* Hero Content (left) */
.hero-content {
    max-width: 640px;
}

/* Badge Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    animation: badge-glow 3s ease-in-out infinite;
}

.hero-badge__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem) !important;
    color: var(--text-heading) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.02em;
}

.gradient-word {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), #F7DC6F, var(--accent));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Glowing CTA Button */
/* Glowing CTA Button */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 14px 32px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #0B1B34 !important;
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    transition: all 0.4s var(--transition);
    opacity: 1;
}

.btn-glow:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.35);
}

.btn-glow::before { display: none; }
.btn-glow:hover::before { display: none; }
.btn-glow:hover svg { transform: translateX(4px); }

.btn-glass {
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15) !important;
}
.btn-glass:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3) !important;
}

/* Hero Stats Strip */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat__number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-top: 0.35rem;
    font-weight: 400;
}

/* === 3D FLOATING DASHBOARD === */
.hero-visual {
    position: relative;
    z-index: 10;
    perspective: 1200px;
}

.hero-dashboard {
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s var(--transition);
    animation: dashboard-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero-visual:hover .hero-dashboard {
    transform: rotateY(-2deg) rotateX(1deg);
}

.hero-dashboard-inner {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(212,175,55,0.05),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Dashboard Header */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.dash-dots {
    display: flex;
    gap: 6px;
}
.dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }

.dash-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #34D399;
}

.dash-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 8px #34D399;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Dashboard Body */
.dash-body {
    padding: 1.5rem 1.25rem;
    display: grid;
    gap: 1.25rem;
}

.dash-metric {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 1rem;
    align-items: center;
}

.dash-metric__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.dash-metric__value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
}

.dash-metric__bar {
    grid-column: 1 / -1;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.dash-metric__fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: bar-fill 2s ease-out forwards;
    transform-origin: left;
}

/* Mini Chart */
.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.dash-chart__bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(212,175,55,0.3), rgba(212,175,55,0.6));
    transition: height 1s var(--transition);
    animation: chart-grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.dash-chart__bar:nth-child(even) {
    background: linear-gradient(to top, rgba(96,165,250,0.25), rgba(96,165,250,0.5));
}

/* Floating Chips */
.hero-float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 20;
    white-space: nowrap;
}

.hero-float-chip--1 {
    top: -8%;
    right: -5%;
}

.hero-float-chip--2 {
    bottom: 15%;
    right: -12%;
}

.hero-float-chip--3 {
    top: 40%;
    left: -10%;
}

/* === SERVICES NEXT-GEN === */
.svc-section {
    background: var(--bg-light);
}

/* Filter Bar */
.svc-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.svc-filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: var(--bg-white);
    color: var(--text-body);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s var(--transition);
    backdrop-filter: blur(8px);
}

.svc-filter-btn:hover {
    background: var(--bg-soft);
    color: var(--text-heading);
    border-color: var(--glass-border);
}

.svc-filter-btn.active {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.4);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* Services Grid */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Service Card */
.svc-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 2px;
    overflow: hidden;
    transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Gradient border glow */
.svc-card__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        transparent 0%,
        rgba(212,175,55,0.3) 10%,
        transparent 20%,
        transparent 80%,
        rgba(212,175,55,0.3) 90%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--transition);
    animation: border-rotate 4s linear infinite;
    pointer-events: none;
}

.svc-card:hover .svc-card__glow {
    opacity: 1;
}

.svc-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(212,175,55,0.08);
}

/* Card inner content */
.svc-card__content {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: calc(var(--radius-xl) - 2px);
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service Icon */
.svc-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(212,175,55,0.08);
    color: var(--accent);
    transition: all 0.4s var(--transition);
}

.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    box-shadow: 0 0 25px rgba(212,175,55,0.3);
    transform: rotateY(360deg);
}

.svc-icon svg {
    transition: transform 0.6s var(--transition);
}

/* Card Title */
.svc-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

/* Card Description */
.svc-card__desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Features List */
.svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.5rem;
    flex-grow: 1;
}

.svc-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.svc-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* Learn More Link */
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    transition: all 0.3s var(--transition);
    margin-top: auto;
}

.svc-link:hover {
    color: var(--accent-light);
}

.svc-link svg {
    transition: transform 0.3s var(--transition);
}

.svc-link:hover svg {
    transform: translateX(4px);
}

/* Card hidden state for filtering */
.svc-card.svc-hidden {
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* === SERVICES MODAL === */
.svc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--transition), visibility 0.35s var(--transition);
}

.svc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.svc-modal {
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    animation: modal-in 0.4s var(--transition) forwards;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 80px rgba(212,175,55,0.05);
}

.svc-modal-overlay:not(.active) .svc-modal {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
}

.svc-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}

.svc-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.2);
}

.svc-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.svc-modal-icon svg {
    width: 32px;
    height: 32px;
}

.svc-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.svc-modal-desc {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.svc-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.svc-modal-features li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.svc-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* === AI BUSINESS ANALYZER === */
.aba-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.aba-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Form Panel */
.aba-form-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
}

/* Progress Bar */
.aba-progress {
    position: relative;
    margin-bottom: 2.5rem;
}

.aba-progress-bar {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--glass-border);
    border-radius: 3px;
    transform: translateY(-50%);
    overflow: hidden;
}

.aba-progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    width: var(--progress, 0%);
    transition: width 0.5s var(--transition);
    border-radius: 3px;
}

.aba-steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10%;
}

.aba-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    background: var(--card-bg);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.4s var(--transition);
    z-index: 1;
}

.aba-step-dot.active {
    border-color: var(--accent);
    background: rgba(212,175,55,0.15);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.aba-step-dot.done {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary-dark);
}

/* Steps */
.aba-step {
    display: none;
}

.aba-step.active {
    display: block;
    animation: aba-step-in 0.4s var(--transition);
}

.aba-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.aba-step-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

/* Option Buttons */
.aba-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.aba-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: var(--text-body);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.aba-option:hover {
    background: var(--bg-blue-subtle);
    border-color: var(--glass-border);
    color: var(--text-heading);
}

.aba-option.selected {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.4);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(212,175,55,0.08);
}

.aba-option svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.aba-option.selected svg,
.aba-option:hover svg {
    opacity: 1;
}

/* Navigation */
.aba-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.aba-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.aba-nav-back {
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-body);
}

.aba-nav-back:hover {
    background: var(--bg-light);
    color: var(--text-heading);
}

.aba-nav-next {
    border: none;
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    color: #0B1B34 !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    border-radius: 999px;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.aba-nav-next:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.35);
    transform: translateY(-1px) scale(1.03);
}

.aba-nav-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    background: var(--bg-light);
    color: var(--text-muted) !important;
}

/* Results Panel */
.aba-results-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Placeholder */
.aba-results-placeholder {
    text-align: center;
    padding: 2rem;
}

.aba-placeholder-icon {
    margin-bottom: 1.5rem;
    color: rgba(212,175,55,0.3);
    animation: aba-pulse 3s ease-in-out infinite;
}

.aba-results-placeholder h4 {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.aba-results-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Analyzing */
.aba-analyzing {
    text-align: center;
    padding: 2rem;
}

.aba-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: aba-spin 0.8s linear infinite;
}

.aba-analyzing h4 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.aba-analyzing p {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* Results Content */
.aba-results-content {
    width: 100%;
}

.aba-results-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.aba-result-block {
    margin-bottom: 1.5rem;
}

.aba-result-block h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Recommended Service Tags */
.aba-rec-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aba-rec-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    animation: aba-tag-in 0.5s var(--transition) forwards;
    opacity: 0;
    transform: translateY(10px);
}

.aba-rec-tag::before {
    content: '✦';
    font-size: 0.7rem;
}

/* Stats Row */
.aba-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.aba-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
}

.aba-stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.aba-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-heading);
}

.aba-stat-green {
    color: #34D399;
}

/* Reset Button */
.aba-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.6rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.aba-reset-btn:hover {
    color: var(--text-body);
}

/* === LIVE PROJECT TRACKER === */
.lpt-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.lpt-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Dashboard Header */
.lpt-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--card-bg);
}

.lpt-dash-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
}

.lpt-dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.lpt-dash-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lpt-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.2);
    color: #34D399;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lpt-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    animation: lpt-pulse 1.5s ease-in-out infinite;
}

.lpt-dash-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Dashboard Body */
.lpt-dash-body {
    padding: 1.75rem 1.5rem;
}

/* Project Info Row */
.lpt-project-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.lpt-project-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.lpt-project-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lpt-overall-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
}

.lpt-overall-bar {
    flex: 1;
    height: 8px;
    border-radius: 8px;
    background: var(--bg-blue-subtle);
    overflow: hidden;
}

.lpt-overall-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), #34D399);
    width: 0%;
    transition: width 1.5s var(--transition);
}

.lpt-overall-pct {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 35px;
}

/* Phase Pipeline */
.lpt-pipeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.lpt-phase {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--transition);
}

.lpt-phase-connector {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lpt-phase-connector::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--glass-border);
    border-radius: 2px;
}

.lpt-phase-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lpt-phase--done .lpt-phase-icon {
    background: rgba(52,211,153,0.15);
    color: #34D399;
}

.lpt-phase--active .lpt-phase-icon {
    background: rgba(212,175,55,0.15);
    color: var(--accent);
    animation: lpt-pulse 2s ease-in-out infinite;
}

.lpt-phase--pending .lpt-phase-icon {
    background: var(--card-bg);
    color: var(--text-muted);
}

.lpt-phase-info {
    flex: 1;
}

.lpt-phase-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}

.lpt-phase-bar {
    height: 4px;
    border-radius: 4px;
    background: var(--bg-blue-subtle);
    overflow: hidden;
    margin-bottom: 0.35rem;
}

.lpt-phase-fill {
    height: 100%;
    border-radius: 4px;
    width: var(--fill, 0%);
    transition: width 1.5s var(--transition);
}

.lpt-phase--done .lpt-phase-fill {
    background: #34D399;
}

.lpt-phase--active .lpt-phase-fill {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.lpt-phase-status {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lpt-phase--done .lpt-phase-status {
    color: rgba(52,211,153,0.6);
}

.lpt-phase--active .lpt-phase-status {
    color: rgba(212,175,55,0.6);
}

/* Metrics Row */
.lpt-metrics-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

/* Stats Grid */
.lpt-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.lpt-stat {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
}

.lpt-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-heading);
}

.lpt-stat-unit {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.lpt-stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Mini Graph */
.lpt-graph-container {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}

.lpt-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
}

.lpt-graph-legend {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
}

.lpt-graph {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 0 2px;
}

.lpt-graph-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, rgba(212,175,55,0.2), rgba(212,175,55,0.5));
    transition: height 0.8s var(--transition);
    position: relative;
    min-width: 0;
}

.lpt-graph-bar:hover {
    background: linear-gradient(to top, rgba(212,175,55,0.3), rgba(212,175,55,0.8));
}

.lpt-graph-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.lpt-graph-bar:hover::after {
    opacity: 1;
}

.lpt-graph-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
}

.lpt-graph-labels span {
    font-size: 0.6rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}

/* Activity Feed */
.lpt-feed {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.lpt-feed-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.lpt-feed-title svg {
    color: var(--accent);
}

.lpt-feed-list {
    display: grid;
    gap: 0.75rem;
}

.lpt-feed-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.lpt-feed-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.lpt-feed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.lpt-feed-dot--green { background: #34D399; }
.lpt-feed-dot--blue { background: #60A5FA; }
.lpt-feed-dot--gold { background: var(--accent); }

.lpt-feed-text {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.5;
}

.lpt-feed-text strong {
    color: var(--text-heading);
    font-weight: 600;
}

.lpt-feed-time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* === DARK SECTIONS === */
.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

.section-dark p {
    color: var(--text-on-dark);
}

.section-dark .section-label {
    color: var(--accent);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.section-dark .card h3, .section-dark .card h4 {
    color: var(--text-white);
}

.section-dark .card p {
    color: var(--text-on-dark);
}

/* === LIGHT SECTIONS === */
.section-light {
    background: var(--bg-light);
}

.section-alt {
    background: var(--bg-soft);
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition);
}

.reveal.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

/* === SVG ICON CONTAINERS === */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.icon-box-blue {
    background: var(--bg-blue-subtle);
    color: var(--primary);
}

.icon-box-gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-dark);
}

/* === STATS === */
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === UTILITY === */
.desktop-only { display: none; }
.mobile-only { display: block; }
.flex-stack-mobile { flex-direction: column; align-items: stretch; }

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* === SECTION CLIP-PATHS === */
.clip-diagonal {
    clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 100%);
    padding-top: calc(1rem + 4vw);
}
.clip-diagonal-reverse {
    clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(1rem + 4vw);
}
.clip-diagonal-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
    padding-bottom: calc(1rem + 4vw);
}

/* ===================== ADVANCED FEATURES ===================== */

/* === DARK THEME OVERRIDES === */
:root[data-theme="dark"] {
    --bg-white: #0f172a;           /* Dark Slate */
    --bg-light: #1e293b;           /* Slightly lighter slate */
    --bg-soft: #0f172a;
    --bg-blue-subtle: #1e293b;
    --text-heading: #f8fafc;       /* Off-white */
    --text-body: #94a3b8;          /* Slate 400 */
    --text-muted: #64748b;
    --card-bg: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
    --card-shadow-hover: 0 20px 40px -12px rgba(0,0,0,0.5);
}

/* Theme Toggle Button */
.theme-btn {
    background: transparent;
    border: none;
    color: var(--text-heading);
    cursor: pointer;
    padding: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.theme-btn:hover { color: var(--accent); }
:root[data-theme="dark"] .theme-btn .moon-icon { display: none; }
:root:not([data-theme="dark"]) .theme-btn .sun-icon { display: none; }

/* === PAGE LOADER === */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 
    to { transform: rotate(360deg); } 
}

/* === WHATSAPP WIDGET === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    animation: premium-wa-pulse 2.5s infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
    border-color: rgba(212, 175, 55, 1);
}
@keyframes premium-wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6), 0 6px 20px rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0), 0 6px 20px rgba(37, 211, 102, 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 6px 20px rgba(37, 211, 102, 0.4); }
}

/* Focus Invalid State for Forms */
.form-input.invalid-feedback {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-6px); }
}

/* ============================================================
   FLOATING INDIA COVERAGE WIDGET
   Compact fixed-position map card — Stripe/Vercel style
   ============================================================ */

.icw {
    position: relative;
    width: 900px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(8,18,42,0.95) 0%, rgba(5,12,30,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 24px 48px -12px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.03),
        0 0 60px -20px rgba(96,165,250,0.08);
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: icw-entrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.icw:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 32px 64px -12px rgba(0,0,0,0.6),
        0 0 0 1px rgba(212,175,55,0.12),
        0 0 80px -20px rgba(212,175,55,0.1);
}

@keyframes icw-entrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Background */
.icw-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.icw-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.icw-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.icw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #D4AF37);
    box-shadow: 0 0 8px rgba(212,175,55,0.6), 0 0 20px rgba(212,175,55,0.2);
    animation: icw-dot-glow 3s ease-in-out infinite;
}

@keyframes icw-dot-glow {
    0%, 100% { box-shadow: 0 0 6px rgba(212,175,55,0.5); }
    50% { box-shadow: 0 0 12px rgba(212,175,55,0.8), 0 0 24px rgba(212,175,55,0.3); }
}

/* LIVE Badge */
.icw-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #34D399;
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.18);
    border-radius: 20px;
    padding: 3px 10px;
}

.icw-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 6px #34D399;
    animation: icw-live-pulse 1.5s ease-in-out infinite;
}

@keyframes icw-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Map Body */
.icw-body {
    position: relative;
    z-index: 1;
    padding: 6px 12px 0;
    height: 450px;
}

.icw-svg {
    width: 100%;
    height: 100%;
    transform: scale(1.3); /* Optimized scaling */
    transform-origin: 45% 50%; /* Shifted origin to counteract left-heavy SVG path */
}

/* India Map Path */
.icw-path {
    fill: rgba(96,165,250,0.03);
    stroke: rgba(212,175,55,0.15);
    stroke-width: 0.7;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.04));
}

.icw-detail {
    fill: rgba(96,165,250,0.02);
    stroke: rgba(212,175,55,0.08);
    stroke-width: 0.4;
    stroke-linejoin: round;
}

/* Connection Lines */
.icw-conn {
    stroke: rgba(96,165,250,0.08);
    stroke-width: 0.4;
    stroke-dasharray: 4 4;
    animation: icw-dash 15s linear infinite;
}

@keyframes icw-dash {
    to { stroke-dashoffset: -80; }
}

/* City Nodes - Blue */
.icw-node-ring {
    fill: none;
    stroke: rgba(96,165,250,0.25);
    stroke-width: 0.6;
    animation: icw-ring-pulse 3s ease-in-out infinite;
}

.icw-node-core {
    fill: #60A5FA;
    filter: drop-shadow(0 0 4px rgba(96,165,250,0.7));
    transition: filter 0.3s ease;
    animation: icw-core-pulse 2.5s ease-in-out infinite;
}

.icw-node:hover .icw-node-core {
    filter: drop-shadow(0 0 12px rgba(96,165,250,1)) drop-shadow(0 0 20px rgba(96,165,250,0.6));
}

.icw-node:nth-child(odd) .icw-node-ring { animation-delay: 0.4s; }
.icw-node:nth-child(even) .icw-node-core { animation-delay: 0.8s; }

@keyframes icw-ring-pulse {
    0%, 100% { r: 5; opacity: 0.6; }
    50% { r: 8; opacity: 0; }
}

@keyframes icw-core-pulse {
    0%, 100% { r: 2.2; }
    50% { r: 3; }
}

/* HQ Node - Gold */
.icw-hq-ring {
    fill: none;
    stroke: rgba(212,175,55,0.3);
    stroke-width: 0.8;
    animation: icw-hq-ring-pulse 2.5s ease-in-out infinite;
}

.icw-hq-core {
    fill: var(--accent, #D4AF37);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.8)) drop-shadow(0 0 14px rgba(212,175,55,0.3));
    transition: filter 0.3s ease;
}

.icw-node--hq:hover .icw-hq-core {
    filter: drop-shadow(0 0 12px rgba(212,175,55,1)) drop-shadow(0 0 24px rgba(212,175,55,0.6));
}

@keyframes icw-hq-ring-pulse {
    0%, 100% { r: 7; opacity: 0.5; }
    50% { r: 12; opacity: 0; }
}

.icw-hq-label {
    fill: var(--accent, #D4AF37);
    font-family: 'Inter', sans-serif;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-anchor: middle;
}

/* Tooltip */
.icw-tooltip {
    position: absolute;
    padding: 10px 14px;
    background: rgba(5,10,25,0.92);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px) translateX(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 20;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.icw-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.icw-tt-city {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
    margin-bottom: 2px;
}

.icw-tt-row {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.icw-tt-row span {
    color: var(--text-white);
    font-weight: 700;
}

.icw-tt-status {
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.icw-tt-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Footer */
.icw-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.015);
}

.icw-footer-stat {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
}

.icw-footer-stat strong {
    color: var(--accent, #D4AF37);
    font-weight: 700;
}

.icw-footer-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.06);
}


.imap-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 80px rgba(212,175,55,0.03),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.imap-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.imap-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

/* Map Body */
.imap-body {
    position: relative;
    padding: 2rem;
    min-height: 450px;
}

.imap-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
}

/* SVG India Map Styling */
.imap-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.imap-india-path {
    fill: rgba(212,175,55,0.04);
    stroke: rgba(212,175,55,0.2);
    stroke-width: 0.8;
    stroke-linejoin: round;
    transition: all 0.6s ease;
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.06));
}

.imap-india-detail {
    fill: rgba(212,175,55,0.03);
    stroke: rgba(212,175,55,0.12);
    stroke-width: 0.5;
    stroke-linejoin: round;
}

.imap-srilanka {
    fill: none;
    stroke: rgba(255,255,255,0.06);
    stroke-width: 0.5;
}

/* Connection Lines */
.imap-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.imap-conn-line {
    stroke: rgba(212,175,55,0.08);
    stroke-width: 0.15;
    stroke-dasharray: 3 3;
    animation: imap-dash-flow 20s linear infinite;
}

@keyframes imap-dash-flow {
    to { stroke-dashoffset: -60; }
}

/* ===== PIN MARKERS ===== */
.imap-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    opacity: 0;
    animation: imap-pin-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-play-state: paused;
}

.imap-pin.animated {
    animation-play-state: running;
}

@keyframes imap-pin-drop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) translateY(-20px);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

.imap-pin-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(96,165,250,0.6), 0 0 20px rgba(96,165,250,0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.imap-pin:hover .imap-pin-core {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 15px rgba(96,165,250,0.8), 0 0 30px rgba(96,165,250,0.4);
}

.imap-pin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(96,165,250,0.3);
    transform: translate(-50%, -50%) scale(0.5);
    animation: imap-ring-pulse 2.5s ease-out infinite;
    z-index: 2;
}

.imap-pin-ring--2 {
    animation-delay: 1.25s;
}

@keyframes imap-ring-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ===== HQ PIN (Mumbai) ===== */
.imap-pin--hq {
    width: 20px;
    height: 20px;
    z-index: 10;
}

.imap-pin--hq .imap-pin-core {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 0 12px rgba(212,175,55,0.8), 0 0 30px rgba(212,175,55,0.4), 0 0 50px rgba(212,175,55,0.2);
}

.imap-pin--hq:hover .imap-pin-core {
    box-shadow: 0 0 20px rgba(212,175,55,1), 0 0 40px rgba(212,175,55,0.6), 0 0 60px rgba(212,175,55,0.3);
}

.imap-pin--hq .imap-pin-ring {
    width: 32px;
    height: 32px;
    border-color: rgba(212,175,55,0.35);
}

.imap-pin-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-full);
    padding: 2px 8px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    animation: imap-label-glow 3s ease-in-out infinite;
}

@keyframes imap-label-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
}

/* ===== POPUP CARDS ===== */
.imap-popup {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(8px);
    width: 240px;
    background: rgba(10,20,40,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 50;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.05);
    overflow: hidden;
}

.imap-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(10,20,40,0.92);
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.imap-pin:hover .imap-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1) translateY(0);
}

.imap-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.imap-popup-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
}

.imap-status {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.imap-status--active {
    background: rgba(52,211,153,0.12);
    color: #34D399;
    border: 1px solid rgba(52,211,153,0.2);
}

.imap-status--progress {
    background: rgba(96,165,250,0.12);
    color: #60A5FA;
    border: 1px solid rgba(96,165,250,0.2);
}

.imap-status--completed {
    background: rgba(212,175,55,0.12);
    color: var(--accent);
    border: 1px solid rgba(212,175,55,0.2);
}

.imap-popup-body {
    padding: 0.75rem 1rem;
    display: grid;
    gap: 0.5rem;
}

.imap-popup-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.imap-popup-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    flex-shrink: 0;
}

.imap-popup-value {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-align: right;
}

/* ===== STATS BAR ===== */
.imap-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    flex-wrap: wrap;
}

.imap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.imap-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.imap-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.imap-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════
   INDIA COVERAGE MAP — FULL WIDTH SECTION
   ═══════════════════════════════════════════════════ */

.imap-section {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
    z-index: 4;
}

/* Ambient radial glow behind the map */
.imap-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(10,31,68,0.0) 70%);
    pointer-events: none;
    z-index: 1;
}

.imap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.imap-header-block {
    max-width: 600px;
    margin: 0 auto;
}

/* Full-width card override */
.icw--fullwidth {
    width: 100%;
    max-width: 900px;
}

/* Tall map body */
.icw-body--large {
    height: 550px;
}

/* Hint text below the card */
.imap-hint {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}


/* ═══════════════════════════════════════════════════
   TRUST & PROOF SECTION
   ═══════════════════════════════════════════════════ */

.tp-section {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
    z-index: 5;
}

/* Sub-heading style for internal blocks */
.tp-sub-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* ─── MARQUEE ─── */
.tp-marquee-wrapper {
    position: relative;
    margin-bottom: 4rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

/* Gradient masks on left/right edges */
.tp-marquee-wrapper::before,
.tp-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.tp-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0A1F44, transparent);
}
.tp-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0A1F44, transparent);
}

.tp-marquee {
    overflow: hidden;
    position: relative;
}

.tp-marquee-track {
    display: flex;
    gap: 4rem;
    animation: tp-marquee-scroll 30s linear infinite;
    width: max-content;
}

.tp-marquee:hover .tp-marquee-track {
    animation-play-state: paused;
}

.tp-logo-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    white-space: nowrap;
    transition: color 0.4s ease;
    cursor: default;
    user-select: none;
    position: relative;
    padding: 0.5rem 0;
}

.tp-logo-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.tp-logo-item:hover {
    color: var(--accent);
}

.tp-logo-item:hover::before {
    width: 60%;
}

@keyframes tp-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── STAT COUNTERS ─── */
.tp-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tp-stat-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--transition);
}

.tp-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212,175,55,0.06), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.tp-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(212,175,55,0.2);
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.08);
}

.tp-stat-card > * { position: relative; z-index: 1; }

.tp-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.tp-stat-card:hover .tp-stat-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
    transform: scale(1.1);
}

.tp-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tp-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.tp-stat-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.tp-stat-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 1.5s ease-out;
}

.tp-stat-bar-fill.animated {
    width: var(--bar-w);
}

/* ─── TESTIMONIAL SLIDER ─── */
.tp-slider-section {
    margin-bottom: 4rem;
}

.tp-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.tp-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-slide {
    min-width: 100%;
    padding: 3rem 2rem;
}

.tp-slide-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.tp-stars {
    font-size: 1.25rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.tp-quote {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.tp-quote strong {
    color: var(--accent);
    font-weight: 700;
    font-style: normal;
}

.tp-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.tp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: 2px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.tp-author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.tp-author-role {
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 500;
}

/* Slider Buttons */
.tp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    z-index: 5;
}

.tp-slider-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.tp-slider-prev { left: 1rem; }
.tp-slider-next { right: 1rem; }

/* Slider Dots */
.tp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding-bottom: 1.5rem;
}

.tp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.tp-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
    transform: scale(1.2);
}

.tp-dot:hover:not(.active) {
    background: rgba(255,255,255,0.35);
}

/* ─── CASE STUDY CARDS ─── */
.tp-case-studies {
    margin-bottom: 4rem;
}

.tp-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tp-case-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.tp-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 4px 0 0 4px;
}

.tp-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.15);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.05);
}

.tp-case-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-full);
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}

.tp-case-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.tp-case-metrics {
    display: grid;
    gap: 1.25rem;
}

.tp-metric-row {
    display: grid;
    gap: 0.6rem;
}

.tp-metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.tp-metric-compare {
    display: grid;
    gap: 0.5rem;
}

.tp-metric-before,
.tp-metric-after {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.tp-metric-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tp-metric-before .tp-metric-tag {
    color: rgba(255, 100, 100, 0.7);
}

.tp-metric-after .tp-metric-tag {
    color: #34D399;
}

.tp-metric-bar-wrap {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
}

.tp-metric-bar {
    height: 100%;
    border-radius: 6px;
    width: var(--bw);
    transition: width 1.2s ease-out;
}

.tp-bar-before {
    background: linear-gradient(90deg, rgba(255,100,100,0.4), rgba(255,100,100,0.6));
}

.tp-bar-after {
    background: linear-gradient(90deg, #34D399, #6EE7B7);
}

.tp-metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: right;
    min-width: 60px;
}

.tp-case-result {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #34D399;
}

/* ─── RESULTS BANNER ─── */
.tp-results-banner {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tp-results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.tp-results-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
}

.tp-result-item {
    text-align: center;
    padding: 1rem 0;
}

.tp-result-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tp-result-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.tp-result-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════
   NEXT-LEVEL CTA SECTION
   ═══════════════════════════════════════════════════ */

.cta-next {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
    z-index: 6;
}

.cta-next-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

.cta-next-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Animated Gradient Border Card ── */
.cta-glass-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding: 2px;
    border-radius: 22px;
    background: conic-gradient(
        from var(--cta-angle, 0deg),
        rgba(212,175,55,0.6),
        rgba(96,165,250,0.3),
        rgba(52,211,153,0.3),
        rgba(212,175,55,0.6)
    );
    animation: cta-border-spin 4s linear infinite;
}

@property --cta-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes cta-border-spin {
    to { --cta-angle: 360deg; }
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .cta-glass-card {
        background: linear-gradient(135deg, rgba(212,175,55,0.5), rgba(96,165,250,0.3), rgba(52,211,153,0.3), rgba(212,175,55,0.5));
    }
}

.cta-glass-card__inner {
    background: rgba(10,31,68,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

/* ── Urgency Badge ── */
.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-full);
    padding: 0.45rem 1.25rem;
}

.cta-urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: cta-pulse 1.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}

/* ── Headline ── */
.cta-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ── Subtitle ── */
.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-on-dark);
    line-height: 1.8;
    max-width: 520px;
}

/* ── CTA Buttons ── */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

/* WhatsApp Button */
.cta-btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.cta-btn--whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(37,211,102,0.4);
}

.cta-btn--whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn--whatsapp:hover::before {
    opacity: 1;
}

/* Book Meeting Button */
.cta-btn--meeting {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    color: #0B1B34 !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-btn--meeting:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, #FFD54F, #FFB300);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.35);
}

/* Remove shiny overlay since it washes out the text */
.cta-btn--meeting::before {
    display: none;
}

/* ── Trust Strip ── */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.cta-trust-item svg {
    opacity: 0.5;
}

.cta-trust-divider {
    color: rgba(255,255,255,0.15);
    font-size: 1rem;
}

/* ── Social Proof ── */
.cta-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-social-proof svg {
    flex-shrink: 0;
}

/* ===================== LEADERSHIP TEAM ===================== */
.leadership-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

@media screen and (min-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

.leadership-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 0 rgba(212, 175, 55, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.leadership-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px -5px rgba(10, 31, 68, 0.2), 0 0 25px rgba(212, 175, 55, 0.15);
}

.leadership-card:hover::before {
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.leader-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    z-index: 2;
}

.leader-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px -5px rgba(10, 31, 68, 0.3);
}

.leadership-card:hover .leader-avatar {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.3);
    color: var(--accent);
}

.leader-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.leadership-card:hover .leader-avatar-wrapper::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
}

.leader-role {
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.leader-desc {
    color: var(--text-on-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===================== PORTFOLIO IMAGES ===================== */
.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.05);
}

