/* ==========================================================================
   Raj Chaudhary — Social Media Hub CSS System
   Dark Theme (Default) + Light Theme + Glassmorphism + Orbit Animations
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Theme Variables & Custom Properties
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Dark Mode (Default) */
    --bg-primary: #05070d;
    --bg-secondary: #0b0f19;
    --bg-tertiary: #131927;
    --card-bg: rgba(15, 22, 36, 0.7);
    --card-bg-hover: rgba(22, 32, 52, 0.9);
    --card-border: rgba(255, 153, 51, 0.2);
    --card-border-hover: rgba(255, 153, 51, 0.55);
    /* Typography */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #0f172a;
    /* Brand & Accents (Indian National Flag Tiranga Theme) */
    --accent-primary: #FF9933; /* Saffron (Kesari) */
    --accent-secondary: #138808; /* India Green (Hara) */
    --accent-pink: #FF7700; /* Bright Saffron */
    --accent-blue: #06038D; /* Ashoka Chakra Navy Blue */
    --accent-gradient: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    --accent-glow: rgba(255, 153, 51, 0.35);
    /* Platform Specific Color Tokens */
    --youtube-color: #ff0000;
    --youtube-gradient: linear-gradient(135deg, #ff0000, #cc0000);
    --instagram-color: #e1306c;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --linkedin-color: #0a66c2;
    --linkedin-gradient: linear-gradient(135deg, #0a66c2, #004182);
    --facebook-color: #1877f2;
    --facebook-gradient: linear-gradient(135deg, #1877f2, #0d5aa7);
    --snapchat-color: #fffc00;
    --snapchat-gradient: linear-gradient(135deg, #fffc00, #d4d100);
    --snapchat-text: #000000;
    --telegram-color: #26a5e4;
    --telegram-gradient: linear-gradient(135deg, #26a5e4, #0088cc);
    --x-color: #e7e9ea;
    --x-gradient: linear-gradient(135deg, #2b2d31, #111214);
    /* UI Dimensions & Effects */
    --nav-height: 86px;
    --nav-height-scrolled: 72px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 153, 51, 0.3);
    --glass-blur: blur(16px);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-bg-hover: rgba(255, 255, 255, 0.98);
    --card-border: rgba(255, 153, 51, 0.3);
    --card-border-hover: rgba(255, 153, 51, 0.6);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    --accent-glow: rgba(255, 153, 51, 0.25);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
    --x-color: #0f172a;
    --x-gradient: linear-gradient(135deg, #0f172a, #334155);
}

/* --------------------------------------------------------------------------
   2. Global Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

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

    a:hover {
        color: var(--accent-secondary);
    }

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-primary);
    }

/* Background Animated Blobs & Grid Pattern (Tiranga Kesari - Green - Chakra Navy) */
.bg-ambient-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.28;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

/* Top Left Saffron / Kesari Ambient Glow */
.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #FF9933;
    animation-delay: 0s;
}

/* Right India Green Ambient Glow */
.blob-2 {
    top: 40%;
    right: -15%;
    width: 45vw;
    height: 45vw;
    background: #138808;
    animation-delay: -5s;
}

/* Bottom Ashoka Chakra Navy Blue Ambient Glow */
.blob-3 {
    bottom: -15%;
    left: 20%;
    width: 40vw;
    height: 40vw;
    background: #06038D;
    animation-delay: -10s;
}

.bg-grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    opacity: 0.6;
}

[data-theme="light"] .bg-grid-pattern {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   3. Loading Overlay Screen
   -------------------------------------------------------------------------- */
#loadingOverlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #loadingOverlay.fade-out {
        opacity: 0;
        visibility: hidden;
    }

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 80px;
    height: 80px;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 153, 51, 0.2);
    border-radius: 50%;
    border-top-color: #FF9933;
    border-right-color: #138808;
    animation: spin 1s infinite linear;
}

/* --------------------------------------------------------------------------
   4. Redesigned Modern Header & Navbar
   -------------------------------------------------------------------------- */
.header-hub {
    position: relative;
    z-index: 1000;
}

.navbar-hub {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(5, 7, 13, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 153, 51, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .navbar-hub {
    background: rgba(248, 250, 252, 0.75);
    border-bottom: 1px solid rgba(255, 153, 51, 0.25);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.navbar-hub.navbar-scrolled {
    height: var(--nav-height-scrolled);
    background: rgba(5, 7, 13, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 153, 51, 0.35);
}

[data-theme="light"] .navbar-hub.navbar-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .brand-logo:hover {
        transform: translateY(-1px);
    }

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo-img {
    height: 60px;
    width: auto;
    max-height: 64px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 153, 51, 0.4));
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover .header-logo-img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 6px 18px rgba(19, 136, 8, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.brand-subtext {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.brand-badge {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Horizontal Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
}

[data-theme="light"] .nav-links {
    background: rgba(0, 0, 0, 0.03);
}

.nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.8;
}

.nav-link-item:hover {
    color: var(--text-primary);
    background: rgba(255, 153, 51, 0.15);
}

    .nav-link-item:hover .nav-icon {
        transform: translateY(-2px) scale(1.15);
        color: var(--accent-primary);
        opacity: 1;
    }

.nav-link-item.active {
    /*color: #ffffff !important;*/
    color: #100f0f !important;
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

    .nav-link-item.active .nav-icon {
        /*color: #ffffff;*/
        color: #060606;
        opacity: 1;
    }

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.header-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.92rem;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.1rem;
}

    .btn-theme-toggle:hover {
        background: var(--card-bg-hover);
        border-color: var(--accent-primary);
        transform: rotate(20deg) scale(1.08);
        box-shadow: 0 0 15px var(--accent-glow);
    }

/* Animated Hamburger Menu Button */
.mobile-hamburger {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-hamburger.active {
    background: var(--accent-gradient);
    border-color: transparent;
}

    .mobile-hamburger.active .bar-1 {
        transform: translateY(7px) rotate(45deg);
        background-color: #ffffff;
    }

    .mobile-hamburger.active .bar-2 {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-hamburger.active .bar-3 {
        transform: translateY(-7px) rotate(-45deg);
        background-color: #ffffff;
    }

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 10000;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--card-border);
}

    .mobile-drawer.active {
        right: 0;
    }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--card-border);
}

.drawer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.btn-close-drawer {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-close-drawer:hover {
        background: var(--accent-primary);
        color: #ffffff;
        transform: rotate(90deg);
    }

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .drawer-links .nav-link-item {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--card-border);
    }

        .drawer-links .nav-link-item.active {
            background: var(--accent-gradient);
            border-color: transparent;
        }

.drawer-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

    .drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* --------------------------------------------------------------------------
   5. Hero Section & Orbit Visualization
   -------------------------------------------------------------------------- */
section[id] {
    scroll-margin-top: calc(var(--nav-height) + 15px);
}

.hero-section {
    padding: calc(var(--nav-height) + 2.5rem) 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.16), rgba(19, 136, 8, 0.16));
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: #FF9933;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.15);
}

[data-theme="light"] .hero-badge-tag {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.15), rgba(19, 136, 8, 0.15));
    color: var(--accent-primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.text-gradient {
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Social Orbit Container */
.orbit-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px stroke transparent;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.4), rgba(19, 136, 8, 0.4)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: orbitRotate 30s linear infinite;
}

.orbit-center-node {
    position: relative;
    z-index: 10;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid #FF9933;
    box-shadow: 0 0 40px rgba(255, 153, 51, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--glass-blur);
    padding: 0.5rem;
    animation: pulseScale 3s infinite ease-in-out;
}

    .orbit-center-node img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }

.orbit-center-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.2rem;
}

/* Orbit Nodes Wrapper & Animated Revolving Platform Icons */
.orbit-track {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--glass-blur);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: orbitCounterRotate 30s linear infinite;
    cursor: pointer;
}

    .orbit-node:hover {
        transform: scale(1.25) !important;
        z-index: 20;
    }

    /* Position 7 Orbit Nodes at uniform angles (360 / 7 = ~51.4 deg) */
    .orbit-node:nth-child(1) {
        top: -26px;
        left: calc(50% - 26px);
        color: var(--youtube-color);
        border-color: rgba(255,0,0,0.4);
    }

    .orbit-node:nth-child(2) {
        top: 48px;
        right: -12px;
        color: var(--instagram-color);
        border-color: rgba(225,48,108,0.4);
    }

    .orbit-node:nth-child(3) {
        top: 205px;
        right: -20px;
        color: var(--linkedin-color);
        border-color: rgba(10,102,194,0.4);
    }

    .orbit-node:nth-child(4) {
        bottom: -20px;
        right: 65px;
        color: var(--facebook-color);
        border-color: rgba(24,119,242,0.4);
    }

    .orbit-node:nth-child(5) {
        bottom: -20px;
        left: 65px;
        color: var(--telegram-color);
        border-color: rgba(38,165,228,0.4);
    }

    .orbit-node:nth-child(6) {
        top: 205px;
        left: -20px;
        color: var(--snapchat-color);
        border-color: rgba(255,252,0,0.4);
    }

    .orbit-node:nth-child(7) {
        top: 48px;
        left: -12px;
        color: var(--x-color);
        border-color: rgba(255,255,255,0.4);
    }

/* --------------------------------------------------------------------------
   6. Featured Platform Strip
   -------------------------------------------------------------------------- */
.platform-strip-section {
    padding: 1.5rem 0 3rem 0;
}

.platform-strip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

    .platform-pill i {
        font-size: 1.15rem;
    }

    .platform-pill:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .platform-pill.youtube:hover {
        border-color: var(--youtube-color);
        color: var(--youtube-color);
    }

    .platform-pill.instagram:hover {
        border-color: var(--instagram-color);
        color: var(--instagram-color);
    }

    .platform-pill.linkedin:hover {
        border-color: var(--linkedin-color);
        color: var(--linkedin-color);
    }

    .platform-pill.facebook:hover {
        border-color: var(--facebook-color);
        color: var(--facebook-color);
    }

    .platform-pill.snapchat:hover {
        border-color: var(--snapchat-color);
        color: #d4d100;
    }

    .platform-pill.telegram:hover {
        border-color: var(--telegram-color);
        color: var(--telegram-color);
    }

    .platform-pill.x:hover {
        border-color: var(--text-primary);
        color: var(--text-primary);
    }

/* --------------------------------------------------------------------------
   7. Social Media Dashboard Filter & Search
   -------------------------------------------------------------------------- */
.dashboard-section {
    padding: 3rem 0 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Dashboard Filter Bar & Search Box */
.dashboard-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.search-box-wrapper {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.95rem 1.2rem 0.95rem 3.2rem;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 0.98rem;
    outline: none;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-fast);
}

    .search-input:focus {
        border-color: #FF9933;
        box-shadow: 0 0 20px rgba(255, 153, 51, 0.35);
    }

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
}

    .clear-search-btn.show {
        display: block;
    }

.filter-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: var(--glass-blur);
}

    .btn-filter:hover {
        color: var(--text-primary);
        border-color: rgba(255, 153, 51, 0.45);
        background: var(--card-bg-hover);
    }

    .btn-filter.active {
        background: var(--accent-gradient);
        color: #080808;
        /*color: #ffffff;*/
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
    }

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. Social Profile Cards Grid
   -------------------------------------------------------------------------- */
.profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (min-width: 1440px) {
    .profile-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .profile-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .profile-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Platform Accent Theme Attributes */
.social-card[data-accent="youtube"] {
    --platform-color: #ff0000;
    --platform-gradient: linear-gradient(135deg, #ff0000, #cc0000);
    --platform-bg-rgba: rgba(255, 0, 0, 0.15);
    --platform-glow: rgba(255, 0, 0, 0.35);
}

.social-card[data-accent="instagram"] {
    --platform-color: #e1306c;
    --platform-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --platform-bg-rgba: rgba(225, 48, 108, 0.15);
    --platform-glow: rgba(225, 48, 108, 0.35);
}

.social-card[data-accent="linkedin"] {
    --platform-color: #0a66c2;
    --platform-gradient: linear-gradient(135deg, #0a66c2, #004182);
    --platform-bg-rgba: rgba(10, 102, 194, 0.15);
    --platform-glow: rgba(10, 102, 194, 0.35);
}

.social-card[data-accent="facebook"] {
    --platform-color: #1877f2;
    --platform-gradient: linear-gradient(135deg, #1877f2, #0d5aa7);
    --platform-bg-rgba: rgba(24, 119, 242, 0.15);
    --platform-glow: rgba(24, 119, 242, 0.35);
}

.social-card[data-accent="snapchat"] {
    --platform-color: #d4d100;
    --platform-gradient: linear-gradient(135deg, #fffc00, #d4d100);
    --platform-bg-rgba: rgba(255, 252, 0, 0.15);
    --platform-glow: rgba(255, 252, 0, 0.35);
}

.social-card[data-accent="telegram"] {
    --platform-color: #26a5e4;
    --platform-gradient: linear-gradient(135deg, #26a5e4, #0088cc);
    --platform-bg-rgba: rgba(38, 165, 228, 0.15);
    --platform-glow: rgba(38, 165, 228, 0.35);
}

.social-card[data-accent="x"] {
    --platform-color: #38bdf8;
    --platform-gradient: linear-gradient(135deg, #334155, #0f172a);
    --platform-bg-rgba: rgba(56, 189, 248, 0.12);
    --platform-glow: rgba(56, 189, 248, 0.25);
}

.social-card {
    position: relative;
    background: radial-gradient( 450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--platform-bg-rgba, rgba(255, 153, 51, 0.15)), var(--card-bg) 70% );
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

    .social-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--platform-gradient, var(--accent-gradient));
        opacity: 0.9;
        box-shadow: 0 2px 10px var(--platform-color, var(--accent-primary));
    }

    .social-card:hover {
        border-color: var(--platform-color, var(--accent-primary));
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 30px var(--platform-glow, rgba(255, 153, 51, 0.3));
    }

.card-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--platform-bg-rgba, rgba(255, 153, 51, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--platform-color, var(--accent-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover .platform-icon-badge {
    transform: rotate(12deg) scale(1.15);
    box-shadow: 0 0 20px var(--platform-glow, rgba(255, 153, 51, 0.4));
    background: var(--card-bg-hover);
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: var(--glass-blur);
}

.card-body-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-card-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.social-card:hover .profile-card-title {
    color: var(--platform-color, var(--text-primary));
}

.verified-icon {
    color: #38bdf8;
    font-size: 0.98rem;
    animation: verifiedPulse 3s infinite ease-in-out;
}

@keyframes verifiedPulse {
    0%, 100% {
        filter: drop-shadow(0 0 2px #38bdf8);
    }

    50% {
        filter: drop-shadow(0 0 8px #38bdf8);
        transform: scale(1.15);
    }
}

.profile-handle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--platform-color, var(--accent-primary));
}

.profile-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.card-actions-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.btn-open-profile {
    flex: 1;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    background: var(--platform-gradient, var(--accent-gradient));
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    min-height: 44px;
    text-decoration: none;
}

    .btn-open-profile::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -100%;
        width: 60%;
        height: 200%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transform: rotate(25deg);
        transition: var(--transition-fast);
    }

    .btn-open-profile:hover::before {
        left: 140%;
        transition: left 0.8s ease-in-out;
    }

    .btn-open-profile:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px var(--platform-glow, rgba(255, 153, 51, 0.4));
        color: #ffffff !important;
    }

.btn-icon-action {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

    .btn-icon-action:hover {
        background: var(--card-bg-hover);
        border-color: var(--platform-color, var(--accent-primary));
        color: var(--platform-color, var(--accent-primary));
        transform: translateY(-3px) rotate(10deg) scale(1.1);
    }

/* Empty State Card */
.empty-state-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px dashed var(--card-border);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   9. Statistics Section
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 40px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-fast);
}

    .stat-card:hover {
        transform: translateY(-4px);
        border-color: var(--accent-primary);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   10. Quick Connect & Share Hub Section
   -------------------------------------------------------------------------- */
.connect-hub-section {
    padding: 4rem 0;
}

.connect-banner-card {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.16), rgba(19, 136, 8, 0.16));
    border: 1px solid rgba(255, 153, 51, 0.35);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.15);
}

.quick-pills-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Share & QR Code Dual Grid */
.share-qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .share-qr-grid {
        grid-template-columns: 1fr;
    }
}

.share-card, .qr-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.share-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.btn-share-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    min-height: 44px;
    text-decoration: none;
}

    .btn-share-social.whatsapp {
        background: #25d366;
    }

    .btn-share-social.facebook {
        background: #1877f2;
    }

    .btn-share-social.x {
        background: #14171a;
    }

    .btn-share-social.copy {
        background: linear-gradient(135deg, #FF9933 0%, #E67E22 100%);
    }

    .btn-share-social:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

.qr-code-box {
    width: 180px;
    height: 180px;
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qr-code-box canvas, .qr-code-box svg {
        width: 100% !important;
        height: 100% !important;
    }

/* --------------------------------------------------------------------------
   11. About & Community Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 3rem 0 5rem 0;
}

.about-glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: var(--glass-blur);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 640px) {
    .about-glass-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FF9933;
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.4);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   12. Redesigned Modern 4-Column Footer
   -------------------------------------------------------------------------- */
.footer-hub {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    padding: 4.5rem 0 2rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

    .footer-hub::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #FF9933, #FFFFFF, #138808, transparent);
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

    .footer-brand-logo:hover {
        transform: translateY(-2px);
    }

.footer-logo-img {
    height: 72px;
    width: auto;
    max-height: 80px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 153, 51, 0.4));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand-logo:hover .footer-logo-img {
    transform: scale(1.06) rotate(-2deg);
}

.footer-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.85rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 340px;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.6rem;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 38px;
        height: 2.5px;
        background: linear-gradient(90deg, #FF9933, #138808);
        border-radius: 2px;
    }

/* Quick Links List */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

    .footer-links-list a {
        color: var(--text-secondary);
        font-size: 0.92rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.25s ease;
    }

.link-arrow {
    font-size: 0.72rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    color: #FF9933;
}

.footer-links-list a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

    .footer-links-list a:hover .link-arrow {
        opacity: 1;
        transform: translateX(0);
    }

/* Social Media List with Modern Hover Effects */
.footer-social-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    /*padding: 0.55rem 0.9rem;*/
    border-radius: var(--radius-md);
    /*background: rgba(255, 255, 255, 0.03);*/
    border: 1px solid var(--card-border);
    /*color: var(--text-secondary);*/
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

    .social-link i {
        font-size: 1.15rem;
        transition: transform 0.3s ease;
    }

    .social-link:hover {
        transform: translateX(6px);
        /*color: #ffffff;*/
    }

    .social-link.youtube:hover {
        background: rgba(255, 0, 0, 0.15);
        border-color: rgba(255, 0, 0, 0.4);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
        /*color: #ff4d4d;*/

        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-link.instagram:hover {
        background: rgba(225, 48, 108, 0.15);
        border-color: rgba(225, 48, 108, 0.4);
        box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
        /*color: #e1306c;*/
        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-link.facebook:hover {
        background: rgba(24, 119, 242, 0.15);
        border-color: rgba(24, 119, 242, 0.4);
        box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
        /*color: #1877f2;*/
        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-link.linkedin:hover {
        background: rgba(10, 102, 194, 0.15);
        border-color: rgba(10, 102, 194, 0.4);
        box-shadow: 0 4px 15px rgba(10, 102, 194, 0.25);
        /*color: #0a66c2;*/
        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-link.x:hover {
        background: rgba(231, 233, 234, 0.15);
        border-color: rgba(231, 233, 234, 0.4);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
        /*color: var(--text-primary);*/
        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .social-link.telegram:hover {
        background: rgba(38, 165, 228, 0.15);
        border-color: rgba(38, 165, 228, 0.4);
        box-shadow: 0 4px 15px rgba(38, 165, 228, 0.25);
        /*color: #26a5e4;*/
        background: linear-gradient( 135deg, #FF9933 0%, #FFFFFF 50%, #138808 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

/* Contact Info Column */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0;
    margin: 0;
}

    .footer-contact-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .footer-contact-list a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .footer-contact-list a:hover {
            color: var(--accent-primary);
        }

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: #FF9933;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.footer-contact-btn {
    align-self: flex-start;
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
}

/* Footer Bottom Bar (Desktop: Horizontal, Mobile: Vertical Stack) */
.footer-bottom-bar {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.copyright-text, .made-with-text {
    margin: 0;
}

/* Responsive Breakpoints for Header & Footer */
@media (max-width: 1199px) and (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 767px) {
    .header-logo-img {
        height: 48px;
    }

    .footer-logo-img {
        height: 58px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        text-align: center;
    }

    .footer-col-brand, .footer-brand-logo {
        align-items: center;
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list a, .footer-contact-list li, .social-link {
        justify-content: center;
    }

    .footer-contact-btn {
        align-self: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* Mobile Fixed Bottom Navigation Bar (<= 768px) */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--card-border);
    z-index: 990;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
}

[data-theme="light"] .mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

    .bottom-nav-item i {
        font-size: 1.25rem;
    }

    .bottom-nav-item.active, .bottom-nav-item:hover {
        color: var(--accent-primary);
    }

/* --------------------------------------------------------------------------
   13. Floating Controls & Toast Notification System
   -------------------------------------------------------------------------- */
.back-to-top-btn {
    position: fixed;
    bottom: 84px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--glass-blur);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 995;
}

    .back-to-top-btn.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top-btn:hover {
        background: var(--accent-gradient);
        color: #ffffff;
        border-color: transparent;
        transform: translateY(-3px);
    }

/* Toast Container */
#toastContainer {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

@media (min-width: 769px) {
    #toastContainer {
        bottom: 30px;
        right: 30px;
        left: auto;
        transform: none;
    }
}

.toast-message {
    background: var(--bg-secondary);
    border: 1px solid #FF9933;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 51, 0.3);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: var(--glass-blur);
    animation: toastIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

    .toast-message i {
        color: #138808;
        font-size: 1.1rem;
    }

/* --------------------------------------------------------------------------
   14. Advanced Animations, 3D Effects & Keyframes
   -------------------------------------------------------------------------- */
/* Shimmer Animated Text Gradient (Tiranga Tri-Color Gradient: Saffron -> White -> Green) */
.text-gradient {
    background: linear-gradient(135deg, #FF9933 0%, #FFB74D 25%, #FFFFFF 50%, #22C55E 75%, #138808 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGradientText 8s ease infinite;
}

@keyframes shimmerGradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Pulsing Live Dot */
.live-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #138808;
    display: inline-block;
    box-shadow: 0 0 10px #138808;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #138808;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
        box-shadow: 0 0 16px #138808;
    }
}

/* Card 3D Perspective & Conic Glow Overlay */
.social-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

    .social-card::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, transparent, rgba(255, 153, 51, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: -1;
    }

    .social-card:hover::after {
        opacity: 1;
    }

/* Card Reveal Cascade Animation */
.card-stagger-animate {
    animation: cardPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ripple Click Animation */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleExpand 0.6s linear;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating Bobbing Animation */
.float-bob {
    animation: floatBob 4s ease-in-out infinite;
}

@keyframes floatBob {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Orbit Dual Inner & Outer Ring Visuals */
.orbit-ring-outer {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px stroke transparent;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: orbitRotateReverse 45s linear infinite;
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Basic Keyframes */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px #FF9933);
    }
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px var(--accent-glow);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 50px rgba(255, 153, 51, 0.45);
    }
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, 40px) scale(1.1);
    }

    100% {
        transform: translate(-40px, 60px) scale(0.95);
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitCounterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .reveal.active {
        opacity: 1;
        /*transform: translateY(0);*/
    }

/* ==========================================================================
   Interactive Creator Showcase Slider System (Indian Flag / Tiranga Theme)
   ========================================================================== */
.featured-slider-section {
    padding: 70px 0 50px;
    position: relative;
    z-index: 10;
}

.slider-header {
    margin-bottom: 36px;
}

/* Saffron & Green Badge Tag */
.slider-badge-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.16) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(19, 136, 8, 0.16) 100%);
    border: 1px solid rgba(255, 153, 51, 0.45);
    color: #FF9933;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 20px rgba(255, 153, 51, 0.25), 0 0 10px rgba(19, 136, 8, 0.15);
}

.slider-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

    /* Tiranga Gradient Text (Saffron -> White -> Green) */
    .slider-title .text-gradient {
        background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 2px 8px rgba(255, 153, 51, 0.3));
    }

.slider-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Main Container Frame with Tiranga Glow Border */
.slider-container {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(255, 153, 51, 0.12), 0 0 35px rgba(19, 136, 8, 0.12);
    overflow: hidden;
    transition: var(--transition-normal);
}

    .slider-container:hover {
        border-color: rgba(255, 153, 51, 0.6);
        box-shadow: var(--shadow-lg), 0 0 45px rgba(255, 153, 51, 0.25), 0 0 45px rgba(19, 136, 8, 0.25);
    }

/* Indian Flag Tri-Color Header Progress Bar (Orange - White - Green) */
.slider-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

    .slider-progress-bar .progress-fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
        border-radius: 2px;
        transition: width 0.1s linear;
        box-shadow: 0 0 12px #FF9933, 0 0 12px #138808;
    }

/* Slide Viewport & Track */
.slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.slider-item {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 50px 60px;
    opacity: 0.2;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

    .slider-item.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

/* Slide Grid Layout */
.slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Slide Left Content */
.slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

    /* Saffron / Orange Badge */
    .slide-badge.youtube {
        background: rgba(255, 153, 51, 0.18);
        border: 1px solid rgba(255, 153, 51, 0.45);
        color: #FF9933;
    }

    /* Tiranga Gradient Badge */
    .slide-badge.instagram {
        background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
        border: 1px solid rgba(255, 153, 51, 0.5);
        color: #FFAA44;
    }

    /* Chakra Navy Blue Badge */
    .slide-badge.linkedin {
        background: rgba(6, 3, 141, 0.25);
        border: 1px solid rgba(59, 130, 246, 0.5);
        color: #60A5FA;
    }

    /* Green (Hara) Badge */
    .slide-badge.telegram {
        background: rgba(19, 136, 8, 0.2);
        border: 1px solid rgba(19, 136, 8, 0.45);
        color: #22C55E;
    }

    /* Kesari Golden Saffron Badge */
    .slide-badge.money {
        background: rgba(255, 153, 51, 0.2);
        border: 1px solid rgba(255, 153, 51, 0.5);
        color: #FFB74D;
    }

.slide-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.slide-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF9933;
    margin-bottom: 16px;
}

.slide-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 580px;
}

.slide-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 51, 0.25);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.slide-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.slide-btn {
    padding: 12px 26px;
    font-size: 0.95rem;
}

    /* Tiranga Saffron Primary CTA Buttons */
    .slide-btn.btn-accent {
        background: linear-gradient(135deg, #FF9933 0%, #E67E22 100%);
        color: #FFFFFF;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(255, 153, 51, 0.35);
        border: none;
    }

        .slide-btn.btn-accent:hover {
            background: linear-gradient(135deg, #FF8800 0%, #D35400 100%);
            box-shadow: 0 10px 30px rgba(255, 153, 51, 0.5);
            transform: translateY(-3px);
        }

/* Special Tiranga Green CTA Buttons */
.telegram-btn {
    background: linear-gradient(135deg, #138808 0%, #0D6105 100%) !important;
    box-shadow: 0 8px 24px rgba(19, 136, 8, 0.35) !important;
}

    .telegram-btn:hover {
        background: linear-gradient(135deg, #0E6B06 0%, #0A4A04 100%) !important;
        box-shadow: 0 10px 30px rgba(19, 136, 8, 0.5) !important;
    }

/* Chakra Navy Blue CTA Buttons */
.linkedin-btn {
    background: linear-gradient(135deg, #06038D 0%, #1E40AF 100%) !important;
    box-shadow: 0 8px 24px rgba(6, 3, 141, 0.35) !important;
}

.money-btn {
    background: linear-gradient(135deg, #FF9933 0%, #138808 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 153, 51, 0.35) !important;
}

/* Slide Right 3D Visual Cards (Tiranga Glowing Border & Glass) */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 153, 51, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 153, 51, 0.15);
    backdrop-filter: var(--glass-blur);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

.slider-item.active .visual-card {
    animation: visualCardPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes visualCardPop {
    0% {
        transform: translateY(30px) scale(0.9) rotate(-3deg);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Tiranga Dual Glow Radial Gradient (Saffron Top-Left + Green Bottom-Right) */
.visual-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 153, 51, 0.35) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(19, 136, 8, 0.35) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.75;
    border-radius: 50%;
    filter: blur(22px);
}

.visual-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: #FF9933;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.channel-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

    /* Saffron & Green Dual Ring Avatar Border */
    .channel-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #FF9933;
        box-shadow: 0 0 20px rgba(255, 153, 51, 0.4), 0 0 10px rgba(19, 136, 8, 0.4);
    }

.live-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #138808;
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px #138808;
}

.channel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2px;
}

.channel-handle {
    font-size: 0.88rem;
    color: #FF9933;
    text-align: center;
    margin-bottom: 20px;
}

.channel-metrics {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 20px;
}

.metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
}

.metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-play-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.4);
    border-radius: var(--radius-md);
    color: #FF9933;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

    .card-play-preview:hover {
        background: rgba(255, 153, 51, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    }

/* Floating Chips on Visual Cards (Tiranga Accents) */
.floating-chip {
    position: absolute;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 153, 51, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 153, 51, 0.15);
    white-space: nowrap;
    z-index: 5;
}

.chip-1 {
    top: -15px;
    left: -20px;
    border-color: rgba(255, 153, 51, 0.5);
}

.chip-2 {
    bottom: -15px;
    right: -20px;
    border-color: rgba(19, 136, 8, 0.5);
}

/* Insta Mock Tiranga Style */
.insta-phone-mock {
    text-align: left;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.story-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #FF9933, #FFFFFF, #138808);
}

    .story-ring img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.insta-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.insta-badge-mini {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.insta-preview-box {
    height: 140px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
    border: 1px dashed rgba(255, 153, 51, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.insta-reel-icon {
    font-size: 2.2rem;
    color: #FF9933;
}

.insta-like-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* LinkedIn Mock */
.linkedin-profile-mock {
    text-align: center;
    position: relative;
}

.linkedin-banner {
    height: 50px;
    background: linear-gradient(135deg, #06038D, #1E40AF);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin: -28px -24px 24px -24px;
}

.linkedin-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #FF9933;
    margin-top: -50px;
    margin-bottom: 10px;
}

.linkedin-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.linkedin-headline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.linkedin-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px;
    background: rgba(6, 3, 141, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #60A5FA;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Telegram Mock (Green Tiranga Theme) */
.tg-icon-hero {
    font-size: 3.5rem;
    color: #138808;
    filter: drop-shadow(0 0 15px rgba(19, 136, 8, 0.6));
}

.tg-msg-bubble {
    background: rgba(19, 136, 8, 0.18);
    border: 1px solid rgba(19, 136, 8, 0.4);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--text-primary);
}

/* Money Mock (Saffron Kesari Theme) */
.money-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.18);
    border: 2px solid rgba(255, 153, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto;
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.3);
}

/* Navigation Arrow Buttons (Chakra Navy Blue & Saffron) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(6, 3, 141, 0.8);
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: #FFFFFF;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-fast);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 153, 51, 0.2);
}

    .slider-arrow.prev {
        left: 18px;
    }

    .slider-arrow.next {
        right: 18px;
    }

    .slider-arrow:hover {
        background: linear-gradient(135deg, #FF9933, #138808);
        border-color: #FFFFFF;
        color: #ffffff;
        box-shadow: 0 0 25px rgba(255, 153, 51, 0.5), 0 0 25px rgba(19, 136, 8, 0.5);
        transform: translateY(-50%) scale(1.1);
    }

/* Slider Footer & Pagination Controls */
.slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.slider-counter {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.current-slide {
    color: #FF9933;
    font-size: 1.15rem;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        border: none;
        cursor: pointer;
        transition: var(--transition-normal);
        padding: 0;
    }

        .slider-dots .dot.active {
            width: 34px;
            border-radius: var(--radius-full);
            background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
            box-shadow: 0 0 12px rgba(255, 153, 51, 0.5), 0 0 12px rgba(19, 136, 8, 0.5);
        }

.slider-pause-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

    .slider-pause-btn:hover {
        background: rgba(255, 153, 51, 0.25);
        color: #FF9933;
        border-color: #FF9933;
    }

/* RESPONSIVE MEDIA QUERIES FOR SLIDER */
@media (max-width: 1199px) {
    .slider-item {
        padding: 40px 40px;
    }

    .slide-grid {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .slide-content {
        align-items: center;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-stats-row, .slide-cta-group {
        justify-content: center;
    }

    .visual-card {
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .featured-slider-section {
        padding: 50px 0 40px;
    }

    .slider-item {
        padding: 30px 20px;
    }

    .slide-heading {
        font-size: 1.6rem;
    }

    .slide-subheading {
        font-size: 0.98rem;
    }

    .slide-btn {
        width: 100%;
        justify-content: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

        .slider-arrow.prev {
            left: 8px;
        }

        .slider-arrow.next {
            right: 8px;
        }

    .slider-footer {
        padding: 12px 18px;
    }

    .floating-chip {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .orbit-track, .orbit-ring, .orbit-node, .ambient-blob {
        animation: none !important;
    }
}
