/* static/css/style.css */
:root {
    /* Premium Light Palette */
    --primary-main: #f8fafc;
    --primary-text: #0f172a;
    --primary-light: #ffffff;
    --accent-blue: #3b82f6;
    --accent-vibrant: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.3);

    /* Light Animated Aura Engine */
    --aura-1: rgba(59, 130, 246, 0.2);
    --aura-2: rgba(139, 92, 246, 0.2);
    --aura-3: rgba(14, 165, 233, 0.2);

    --grad-primary: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --grad-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);

    /* Light Glassmorphism System */
    --glass-surface: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-light: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(25px);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Elite Shadows (Balanced for Light Theme) */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.2);

    /* Advanced 3D Depth Shadows */
    --shadow-3d: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
        0 30px 60px -30px rgba(0, 0, 0, 0.2),
        inset 0 -2px 6px 0 rgba(10, 37, 64, 0.1);

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

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

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--primary-main);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Hyper-Visual Aura Background Engine (Light Optimized) */
.aura-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: var(--primary-main);
}

.aura-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    /* Increased blur for softer look */
    opacity: 0.3;
    /* Softer opacity */
    /* Animation removed for stability */
}

.aura-blob-1 {
    width: 800px;
    height: 800px;
    background: var(--aura-1);
    top: -200px;
    left: -200px;
}

.aura-blob-2 {
    width: 700px;
    height: 700px;
    background: var(--aura-2);
    bottom: -200px;
    right: -200px;
}

.aura-blob-3 {
    width: 600px;
    height: 600px;
    background: var(--aura-3);
    top: 30%;
    left: 45%;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(100px, 50px) scale(1.1) rotate(180deg);
    }

    100% {
        transform: translate(-50px, 100px) scale(0.9) rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Premium Noise Texture */
.aura-bg::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Premium Header Style */
/* Premium Header Style (Elite Glass) */
.premium-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    animation: fadeInDown 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-inner {
    height: 60px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo i {
    font-size: 28px;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

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

.logo-main {
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.header-logo:hover .logo-main {
    transform: scale(1.05);
}

.logo-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--slate-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-elite-link {
    color: var(--slate-700) !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 4px;
    position: relative;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.nav-elite-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-vibrant);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-elite-link:hover {
    color: var(--accent-vibrant) !important;
}

.nav-elite-link:hover::after,
.nav-elite-link.active::after {
    width: 100%;
}

.nav-elite-link:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-elite-link:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-elite-link:nth-child(3) {
    animation-delay: 0.3s;
}

.dropdown:nth-child(4) .nav-elite-link {
    animation-delay: 0.4s;
}

/* Professional Light Search */
.premium-search-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 320px;
}

.premium-search-wrapper:focus-within {
    border-color: var(--accent-blue);
    width: 400px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.premium-search-wrapper .search-input {
    border: none;
    outline: none;
    padding: 12px 20px;
    flex: 1;
    font-size: 15px;
    background: transparent;
    color: var(--slate-900);
}

.premium-search-wrapper .search-input::placeholder {
    color: var(--slate-400);
}

.premium-search-wrapper .search-btn {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--slate-400);
    transition: all 0.2s ease;
}

.premium-search-wrapper .search-btn:hover {
    color: var(--accent-vibrant);
}

/* Buttons */
.btn-premium-accent {
    background: var(--grad-accent);
    color: white !important;
    border: none;
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.btn-premium-accent:hover {
    box-shadow: var(--shadow-glow);
}

.btn-premium-outline {
    background: transparent;
    color: var(--slate-600) !important;
    border: 1px solid var(--slate-200);
    font-weight: 600;
    padding: 8px 16px !important;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-premium-outline:hover {
    background: var(--slate-100);
    border-color: var(--slate-300);
}

/* Category Navigation (Floating Elite Glass) */
.category-navbar {
    background: transparent;
    padding: 0 0 15px;
    margin-bottom: 25px;
    text-align: center;
}

/* Category Navigation (Sleek Compact Glass) */
.category-navbar {
    background: transparent;
    padding: 0 0 10px;
    margin-bottom: 20px;
    text-align: center;
}

.cat-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    color: #1e293b !important;
    font-weight: 700;
    font-size: 11.5px;
    padding: 7px 16px;
    margin: 3px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Slightly softer drop shadow for smaller size */
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.cat-nav-link i {
    font-size: 14px;
    color: var(--accent-blue);
    opacity: 0.9;
}

.cat-nav-link:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--accent-vibrant) !important;
}

.cat-nav-link:hover i {
    opacity: 1;
    transform: scale(1.05);
    color: var(--accent-vibrant);
}

/* Mobile-Specific Refinement */
@media (max-width: 768px) {
    .cat-nav-link {
        padding: 8px 16px;
        font-size: 11px;
        margin: 3px;
    }
    .cat-nav-link i {
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    background: url('../images/io.png');
    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

/* Bottom shadow overlay for better visibility */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bottom-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(120px);
}

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

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.hero-content {
    /* Shine effect removed as per minimalist request */
    /* Minimalist Floating Aesthetic */
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 80px 60px;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Very faint guide */
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    /* Deep Floating Shadow */
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Very subtle definition */
}

.hero-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.88);
    /* Compatible silver */
    font-weight: 400;
}

/* Sleek Primary Interactive Button */
.btn-glass-primary {
    background: var(--grad-accent);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 40px !important;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-glass-primary i {
    transition: transform 0.3s ease;
}

.btn-glass-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
    filter: brightness(1.1);
}

.btn-glass-primary:hover i {
    transform: translateX(5px);
}

/* 3D Visual Masterpiece */
.scene-3d {
    perspective: 2000px;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card-3d {
    width: 90%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80&w=1200') center/cover;
    border-radius: 40px;
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: var(--shadow-3d);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.hero-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

/* Hover effect removed for stability */

.floating-sidebar-3d {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) translateZ(80px);
    /* Significant depth */
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
    width: 240px;
}

.floating-sidebar-3d li {
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.floating-sidebar-3d li:last-child {
    margin-bottom: 0;
}

.floating-sidebar-3d li i {
    color: var(--accent-blue);
    font-size: 18px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

/* Opportunity Cards (Elite Glass) */
.opportunity-section {
    padding: 40px 0 45px;
}

.section-title {
    margin-bottom: 50px !important;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-align: center;
}
.opportunity-card {
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    color: #1e293b !important;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-decoration: none !important;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

.opportunity-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.opportunity-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 14px;
    transition: all 0.4s ease;
}

.opportunity-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

.opportunity-card-body {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.opportunity-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.view-details-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.opportunity-card-arrow {
    font-size: 11px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

/* Elite Interaction Model */
.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px rgba(var(--accent-rgb), 0.2);
    border-color: rgba(var(--accent-rgb), 0.2);
    text-decoration: none !important;
}

.opportunity-card:hover::before {
    width: 6px;
}

.opportunity-card:hover .opportunity-icon-box {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.opportunity-card:hover .opportunity-card-arrow {
    transform: translateX(5px);
}

/* Executive Grade Variants */
.card-blue   { --accent-color: #2563eb; --accent-rgb: 37, 99, 235; }
.card-orange { --accent-color: #ea580c; --accent-rgb: 234, 88, 12; }
.card-green  { --accent-color: #059669; --accent-rgb: 5, 150, 105; }
.card-olive  { --accent-color: #65a30d; --accent-rgb: 101, 163, 13; }
.card-maroon { --accent-color: #be123c; --accent-rgb: 190, 18, 60; }
.card-navy   { --accent-color: #1e293b; --accent-rgb: 30, 41, 59; }


.category-card {
    border-radius: 40px;
}

.card-teal {
    --card-grad: linear-gradient(135deg, #14b8a6, #0d9488);
}

.card-magenta {
    --card-grad: linear-gradient(135deg, #d946ef, #c026d3);
}

/* Category Cards Section (Transparent Elite) */
.category-cards-section {
    padding: 45px 0 80px !important;
    background: transparent !important;
}

/* Category Cards (Glass Elite Vibrant) */
.category-card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}


/* Category Surface Tints (Subtle & Classy) */
.card-tint-blue {
    background: rgba(30, 64, 175, 0.04) !important;
    border-color: rgba(30, 64, 175, 0.15) !important;
}

.card-tint-green {
    background: rgba(6, 95, 70, 0.04) !important;
    border-color: rgba(6, 95, 70, 0.15) !important;
}

.card-tint-orange {
    background: rgba(154, 52, 18, 0.04) !important;
    border-color: rgba(154, 52, 18, 0.15) !important;
}

.card-tint-red {
    background: rgba(153, 27, 27, 0.04) !important;
    border-color: rgba(153, 27, 27, 0.15) !important;
}

.card-tint-slate {
    background: rgba(51, 65, 85, 0.04) !important;
    border-color: rgba(51, 65, 85, 0.15) !important;
}

.card-tint-purple {
    background: rgba(107, 33, 168, 0.04) !important;
    border-color: rgba(107, 33, 168, 0.15) !important;
}

.card-tint-magenta {
    background: rgba(190, 24, 93, 0.04) !important;
    border-color: rgba(190, 24, 93, 0.15) !important;
}

.card-tint-amber {
    background: rgba(180, 83, 9, 0.04) !important;
    border-color: rgba(180, 83, 9, 0.15) !important;
}

.card-tint-cyan {
    background: rgba(14, 116, 144, 0.04) !important;
    border-color: rgba(14, 116, 144, 0.15) !important;
}

.card-tint-rose {
    background: rgba(190, 18, 60, 0.04) !important;
    border-color: rgba(190, 18, 60, 0.15) !important;
}

.card-tint-navy {
    background: rgba(15, 23, 42, 0.04) !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
}

.card-tint-indigo {
    background: rgba(55, 48, 163, 0.04) !important;
    border-color: rgba(55, 48, 163, 0.15) !important;
}

.card-header {
    padding: 22px 25px 12px;
    background: transparent !important;
    color: var(--header-color, #1e293b) !important;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    border: none;
}


.card-header i {
    font-size: 18px;
    color: var(--header-color, #1e293b);
    background: rgba(var(--header-rgb), 0.1);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-card:hover .card-header i {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(var(--header-rgb), 0.2);
}

/* Ceramic-Silk Variants (Color Logic Overhaul) */
.header-blue, .card-tint-blue { --header-color: #2563eb; --header-rgb: 37, 99, 235; border-top-color: #2563eb !important; }
.header-orange, .card-tint-orange { --header-color: #f97316; --header-rgb: 249, 115, 22; border-top-color: #f97316 !important; }
.header-green, .card-tint-green { --header-color: #10b981; --header-rgb: 16, 185, 129; border-top-color: #10b981 !important; }
.header-red, .card-tint-red { --header-color: #ef4444; --header-rgb: 239, 68, 68; border-top-color: #ef4444 !important; }
.header-slate, .card-tint-slate { --header-color: #475569; --header-rgb: 71, 85, 105; border-top-color: #475569 !important; }
.header-purple, .card-tint-purple { --header-color: #9333ea; --header-rgb: 147, 51, 234; border-top-color: #9333ea !important; }
.header-magenta, .card-tint-magenta { --header-color: #db2777; --header-rgb: 219, 39, 119; border-top-color: #db2777 !important; }
.header-amber, .card-tint-amber { --header-color: #f59e0b; --header-rgb: 245, 158, 11; border-top-color: #f59e0b !important; }
.header-cyan, .card-tint-cyan { --header-color: #0891b2; --header-rgb: 8, 145, 178; border-top-color: #0891b2 !important; }
.header-rose, .card-tint-rose { --header-color: #e11d48; --header-rgb: 225, 29, 72; border-top-color: #e11d48 !important; }
.header-navy, .card-tint-navy { --header-color: #0f172a; --header-rgb: 15, 23, 42; border-top-color: #0f172a !important; }
.header-indigo, .card-tint-indigo { --header-color: #4f46e5; --header-rgb: 79, 70, 229; border-top-color: #4f46e5 !important; }

.item-list li a:hover {
    color: var(--header-color, #2563eb);
    padding-left: 8px;
}

.card-footer {
    padding: 20px 25px;
    background: transparent;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto; /* Push to bottom */
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #f8fafc;
    color: #475569 !important;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none !important;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
}

.view-more-btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    background: #ffffff;
    color: #2563eb !important;
    border-color: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.view-more-btn:hover::after {
    transform: translateX(4px);
}

/* Certificates Section */
.certificates-section {
    background-color: white;
    padding: 60px 0 !important;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 80px;
    letter-spacing: -2px;
    color: var(--slate-900);
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.cert-card {
    background: rgba(255, 255, 255, 0.95) !important;
    /* High-Opacity Porcelain */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    /* Precision Dark Border */
    border-top: 3px solid var(--accent-vibrant);
    /* High-end Top Accent */
    border-radius: 20px;
    /* Modern Geometric Shape */
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    min-height: 280px;
    /* Ultra-compact geometric profile */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.cert-card:hover {
    transform: translateY(-8px);
    background: #ffffff !important;
    border-color: var(--accent-vibrant);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.1);
}

.cert-card.active {
    background: white;
    border-color: var(--accent-blue);
    position: relative;
}

.cert-card.active::before {
    content: 'TOP CHOICE';
    position: absolute;
    top: -12px;
    /* Perfect top edge alignment */
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-vibrant);
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 5;
}

.cert-card i {
    font-size: 44px;
    /* Scaled Icon */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    /* Efficient Icon Proportions */
    height: 70px;
    background: rgba(37, 99, 235, 0.03) !important;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: var(--accent-vibrant) !important;
    -webkit-text-fill-color: initial !important;
    filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.1));
}

.cert-card h5 {
    color: var(--slate-900);
    font-weight: 800;
    font-size: 17px;
    /* Balanced Font */
    margin-bottom: 0;
    letter-spacing: -0.4px;
}

.cert-card p {
    color: var(--slate-500);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Institution Categories Section */
.institution-section {
    padding: 90px 0 !important;
    background: linear-gradient(160deg, #f0f4ff 0%, #eef2ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.institution-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.06) 0%, transparent 65%);
    pointer-events: none;
}


/* Institution Cards — Deep Cinematic Full-Color Design */
.institution-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 12px 22px;
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 11px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Radial light burst behind icon */
.institution-btn::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Shimmer sweep on hover */
.institution-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: none;
}

.institution-btn:hover::after {
    left: 160%;
    transition: left 0.7s ease;
}

.institution-btn:hover::before {
    width: 180px;
    height: 180px;
    opacity: 0.9;
}

/* Icon orb — bright white frosted circle */
.institution-btn .inst-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.institution-btn i { font-size: 22px; color: white; }

.institution-btn span {
    display: block;
    line-height: 1;
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    position: relative;
    z-index: 1;
}

.institution-btn:hover {
    transform: translateY(-8px) scale(1.02);
    color: white !important;
    border-color: rgba(255,255,255,0.25);
}

.institution-btn:hover .inst-icon {
    transform: scale(1.15) rotate(-8deg);
    background: rgba(255,255,255,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Deep rich card gradients + dramatic glow shadows */
.institution-btn.bg-navy {
    background: linear-gradient(145deg, #2a5298 0%, #1e3a7f 50%, #0d1f4a 100%) !important;
    box-shadow: 0 12px 40px rgba(42,82,152,0.6), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-navy:hover   { box-shadow: 0 28px 70px rgba(42,82,152,0.75), 0 6px 20px rgba(0,0,0,0.5) !important; }

.institution-btn.bg-orange {
    background: linear-gradient(145deg, #fbbf24 0%, #d97706 50%, #92400e 100%) !important;
    box-shadow: 0 12px 40px rgba(251,191,36,0.5), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-orange:hover { box-shadow: 0 28px 70px rgba(251,191,36,0.65), 0 6px 20px rgba(0,0,0,0.5) !important; }

.institution-btn.bg-maroon {
    background: linear-gradient(145deg, #f43f5e 0%, #be123c 50%, #500724 100%) !important;
    box-shadow: 0 12px 40px rgba(244,63,94,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-maroon:hover { box-shadow: 0 28px 70px rgba(244,63,94,0.7), 0 6px 20px rgba(0,0,0,0.5) !important; }

.institution-btn.bg-olive {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 50%, #052e16 100%) !important;
    box-shadow: 0 12px 40px rgba(34,197,94,0.5), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-olive:hover  { box-shadow: 0 28px 70px rgba(34,197,94,0.65), 0 6px 20px rgba(0,0,0,0.5) !important; }

.institution-btn.bg-teal {
    background: linear-gradient(145deg, #22d3ee 0%, #0891b2 50%, #083344 100%) !important;
    box-shadow: 0 12px 40px rgba(34,211,238,0.5), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-teal:hover   { box-shadow: 0 28px 70px rgba(34,211,238,0.65), 0 6px 20px rgba(0,0,0,0.5) !important; }

.institution-btn.bg-blue {
    background: linear-gradient(145deg, #60a5fa 0%, #2563eb 50%, #1e1b4b 100%) !important;
    box-shadow: 0 12px 40px rgba(96,165,250,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.institution-btn.bg-blue:hover   { box-shadow: 0 28px 70px rgba(96,165,250,0.7), 0 6px 20px rgba(0,0,0,0.5) !important; }





/* Vibrant Glass Tints for Headers */
/* Elite Premium High-Visibility Glass Tints */
.bg-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%) !important;
    color: white !important;
}

.bg-olive {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.9) 0%, rgba(63, 98, 18, 0.8) 100%) !important;
    color: white !important;
}

.bg-teal {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.9) 0%, rgba(15, 118, 110, 0.8) 100%) !important;
    color: white !important;
}

.bg-maroon {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.9) 0%, rgba(127, 29, 29, 0.8) 100%) !important;
    color: white !important;
}

.bg-navy {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
    color: white !important;
}

.bg-orange {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(154, 52, 18, 0.8) 100%) !important;
    color: white !important;
}

.bg-red {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(153, 27, 27, 0.8) 100%) !important;
    color: white !important;
}





/* Videos Section */
.videos-section {
    background-color: white;
    padding: 60px 0 !important;
}

.video-card {
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 32px;
    border: 1px solid var(--glass-border-light);
    padding: 12px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 240px;
    background-color: var(--slate-100);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-vibrant);
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid white;
}

.video-card:hover .play-button {
    background: var(--accent-vibrant);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}


/* Connect Section */
/* Connect Section */
.connect-section {
    background: var(--primary-main);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.social-btn {
    display: flex;
    padding: 20px 30px;
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--slate-800) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 18px;
    border-radius: 24px;
    border: 1px solid var(--glass-border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100px;
    box-shadow: var(--glass-shadow);
}

.social-btn i {
    font-size: 32px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.social-btn.bg-teal:hover {
    color: #0d9488 !important;
    border-color: #0d9488;
}

.social-btn.bg-navy:hover {
    color: #1e293b !important;
    border-color: #1e293b;
}

.social-btn.bg-red:hover {
    color: #dc2626 !important;
    border-color: #dc2626;
}

.social-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}


/* Results Section */
.results-section {
    background-color: white;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.result-box {
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.result-box:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.result-box-green {
    background: linear-gradient(135deg, #7cb342 0%, #689f38 100%);
}

.result-box-blue {
    background: linear-gradient(135deg, #0097a7 0%, #00838f 100%);
}

.result-box-red {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

.post-content {
    line-height: 1.8;
    font-size: 16px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.post-content th,
.post-content td {
    padding: 10px;
    border: 1px solid #dee2e6;
}

.post-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn {
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

footer {
    margin-top: 50px;
    background-color: var(--dark-blue) !important;
}

/* Post Meta Information */
.post-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Custom Badge Styles */
.badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 109, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-navbar .nav-link {
        font-size: 13px;
    }

    .search-input {
        width: 150px;
    }

    .header-section .col-md-3,
    .header-section .col-md-4,
    .header-section .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .brand-title {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }


    .cat-nav-link {
        margin-right: 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .top-navbar .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }

    .search-wrapper {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }
}

/* Admin Dashboard Custom Styles */
.dashboard-card {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard-card h5 {
    font-size: 16px;
    opacity: 0.9;
}

.dashboard-card .display-4 {
    font-size: 40px;
    font-weight: 700;
}

/* Certificate Cards */
.certificate-card {
    text-align: center;
    padding: 25px;
}

.certificate-card i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 39, 1) 100%) !important;
    color: white !important;
    padding: 30px 0 20px;
    margin-top: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 10;
}

.footer-minimal-stack {
    position: relative;
}

.footer-minimal-stack i {
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.footer-minimal-stack p:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #ffffff !important;
}

.footer-minimal-stack a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-minimal-stack a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-minimal-stack a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.footer-minimal-stack a:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(8px);
}

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

.footer-contact {
    color: var(--slate-400);
    font-size: 15px;
    line-height: 2;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.footer-contact strong {
    color: white;
    font-weight: 700;
}

.footer-contact a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 60px 0 40px;
}

.footer-bottom {
    padding-bottom: 40px;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.footer-copyright a {
    color: var(--slate-300);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
}


/* Videos Section (Elite Glass) */
.videos-section {
    background: var(--grad-primary);
    padding: 80px 0;
}

.video-card {
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-light);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--glass-shadow);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--accent-vibrant);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 20px;
    color: var(--accent-vibrant);
    margin-left: 4px;
    transition: color 0.3s ease;
}

.video-card:hover .play-button i {
    color: white;
}

/* Connect Section (Elite Glass) */
.connect-section {
    padding: 80px 0;
    background: white;
}

.social-btn {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 32px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
}

.social-btn i {
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    color: white;
}

.social-btn span {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.social-btn.bg-teal {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%) !important;
}

.social-btn.bg-navy {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.social-btn.bg-red {
    background: linear-gradient(135deg, #be123c 0%, #881337 100%) !important;
}

.social-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   Global Translation & Modal Styles
   ========================================= */

/* Ultra-Compact Premium Language Modal */
.glass-modal-premium {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
}

.modal-dialog.modal-dialog-centered {
    max-width: 520px; /* Force compact width */
}

.modal-title-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.modal-subtitle-premium {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

.header-accent-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.lang-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Higher density */
    gap: 10px;
    margin-top: 5px;
}

.lang-pill-premium {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 5px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    min-height: 60px;
}

.lang-pill-premium:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    background: #f8faff;
    box-shadow: 0 8px 15px -4px rgba(59, 130, 246, 0.12);
}

.lang-main {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.lang-native {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.lang-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.btn-premium-outline {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .lang-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
    .modal-dialog.modal-dialog-centered {
        margin: 15px;
    }
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
    color: white !important;
}

.bg-dark-blue .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Aggressively Hide Google Translate Banner & Branding */
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* Hide Google Translate Tooltip */
.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

font {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Hide Google Branding in Widget */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    color: black !important;
}

#google_translate_element {
    display: none !important;
}
/* === Integrated React Components Styles === */
.quick-access-section { padding: 80px 0; background: #ffffff; }

.quick-access-card { 
    border-radius: 32px; 
    padding: 40px 30px; 
    text-align: center; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden; 
    border: 2px solid transparent;
    height: 100%;
}

.quick-access-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 80px -20px var(--tint-shadow);
    border-color: var(--tint-border);
}

.qa-icon-wrapper { 
    width: 90px; 
    height: 90px; 
    border-radius: 28px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 25px; 
    font-size: 38px; 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    color: var(--tint-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quick-access-card:hover .qa-icon-wrapper {
    transform: scale(1.15) translateY(-5px);
    background: var(--tint-main);
    color: white;
}

.qa-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.qa-title { 
    font-size: 24px; 
    font-weight: 900; 
    color: #0f172a; 
    margin-bottom: 5px; 
    letter-spacing: -0.5px;
}

.qa-type { 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    color: var(--tint-main);
    opacity: 0.8;
}

.btn-qa-explore { 
    background: var(--tint-main);
    color: #ffffff !important; 
    border: none; 
    padding: 14px 30px; 
    border-radius: 16px; 
    font-weight: 800; 
    width: 100%; 
    transition: all 0.3s ease; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    box-shadow: 0 10px 20px -5px var(--tint-shadow);
}

.btn-qa-explore:hover { 
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px var(--tint-shadow);
}

/* Luxury-Executive Shield Tint Architecture */
.qa-tint-blue { 
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(124, 58, 237, 0.08)); 
    --tint-main: #7c3aed; 
    --tint-border: rgba(124, 58, 237, 0.2); 
    --tint-shadow: rgba(124, 58, 237, 0.35); 
}
.qa-tint-emerald { 
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.04), rgba(8, 145, 178, 0.08)); 
    --tint-main: #0891b2; 
    --tint-border: rgba(8, 145, 178, 0.2); 
    --tint-shadow: rgba(8, 145, 178, 0.35); 
}
.qa-tint-indigo { 
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.04), rgba(30, 41, 59, 0.08)); 
    --tint-main: #1e293b; 
    --tint-border: rgba(30, 41, 59, 0.2); 
    --tint-shadow: rgba(30, 41, 59, 0.35); 
}
.qa-tint-amber { 
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.04), rgba(225, 29, 72, 0.08)); 
    --tint-main: #e11d48; 
    --tint-border: rgba(225, 29, 72, 0.2); 
    --tint-shadow: rgba(225, 29, 72, 0.35); 
}

.premium-services-section { 
    padding: 50px 0; 
    background: #ffffff; 
}

.premium-services-section .section-title {
    font-size: 26px !important;
    margin-bottom: 35px !important;
    letter-spacing: -0.8px !important;
}

.premium-services-section .section-subtitle {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
    opacity: 0.85;
}

.premium-services-section .text-primary {
    font-size: 10.5px !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 4px !important;
}

.premium-service-card { 
    background: #ffffff; 
    border-radius: 12px; 
    padding: 15px 8px; 
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 130px; /* Micro-tile height */
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px; 
    background: var(--ps-main);
    opacity: 0.8;
}

.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px var(--ps-shadow);
    border-color: var(--ps-main);
}

.ps-icon {
    width: 40px; 
    height: 40px; 
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; 
    background: var(--ps-light);
    color: var(--ps-main);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.premium-service-card:hover .ps-icon {
    background: var(--ps-main);
    color: white;
}

.ps-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.ps-title {
    font-size: 11.5px; 
    font-weight: 800; 
    color: #1e293b; 
    margin-bottom: 0; 
    letter-spacing: -0.2px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-ps-apply {
    background: var(--ps-main);
    color: #ffffff !important;
    border: none;
    padding: 5px 12px; 
    border-radius: 6px; 
    font-weight: 700; 
    width: fit-content; 
    transition: all 0.3s ease; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 8.5px; 
    white-space: nowrap;
    margin-top: 5px;
}

.btn-ps-apply:hover {
    filter: brightness(1.1);
}

.btn-ps-apply:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Multichromatic Premium Service Tint Architecture */
.ps-indigo  { --ps-main: #6366f1; --ps-light: rgba(99, 102, 241, 0.05); --ps-shadow: rgba(99, 102, 241, 0.15); }
.ps-emerald { --ps-main: #10b981; --ps-light: rgba(16, 185, 129, 0.05); --ps-shadow: rgba(16, 185, 129, 0.15); }
.ps-rose    { --ps-main: #f43f5e; --ps-light: rgba(244, 63, 94, 0.05); --ps-shadow: rgba(244, 63, 94, 0.15); }
.ps-amber   { --ps-main: #f59e0b; --ps-light: rgba(245, 158, 11, 0.05); --ps-shadow: rgba(245, 158, 11, 0.15); }
.ps-gold    { --ps-main: #d97706; --ps-light: rgba(217, 119, 6, 0.05); --ps-shadow: rgba(217, 119, 6, 0.15); }
.ps-cyan    { --ps-main: #06b6d4; --ps-light: rgba(6, 182, 212, 0.05); --ps-shadow: rgba(6, 182, 212, 0.15); }

.stats-section { 
    padding: 60px 0; 
    background: #ffffff; 
}

.stat-pod { 
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--sp-main);
    transition: all 0.3s ease;
}

.stat-pod:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px var(--sp-shadow);
}

.sp-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--sp-light);
    color: var(--sp-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sp-content {
    display: flex;
    flex-direction: column;
}

.stat-value { 
    font-size: 18px; 
    font-weight: 800; 
    color: #0f172a; 
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label { 
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700;
    color: #64748b;
    margin-top: 1px;
}

/* Multichromatic Stat Tints */
.sp-blue    { --sp-main: #3b82f6; --sp-light: rgba(59, 130, 246, 0.05); --sp-shadow: rgba(59, 130, 246, 0.2); }
.sp-indigo  { --sp-main: #6366f1; --sp-light: rgba(99, 102, 241, 0.05); --sp-shadow: rgba(99, 102, 241, 0.2); }
.sp-emerald { --sp-main: #10b981; --sp-light: rgba(16, 185, 129, 0.05); --sp-shadow: rgba(16, 185, 129, 0.2); }
.sp-amber   { --sp-main: #f59e0b; --sp-light: rgba(245, 158, 11, 0.05); --sp-shadow: rgba(245, 158, 11, 0.2); }

.social-hub-section { padding: 100px 0; background: var(--slate-50); }
.social-card { 
    background: white; 
    border-radius: 24px; 
    padding: 40px 20px; 
    text-align: center; 
    border: 1px solid rgba(0,0,0,0.05); 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 40px 80px rgba(0,0,0,0.08); 
}

.social-icon { 
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
    color: white; 
    font-size: 24px; 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.sc-whatsapp .social-icon { background: #25d366; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.sc-telegram .social-icon { background: #0088cc; box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3); }
.sc-youtube  .social-icon { background: #ff0000; box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }
.sc-facebook .social-icon { background: #1877f2; box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3); }

.social-name { 
    font-size: 14px; 
    font-weight: 800; 
    color: #0f172a; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
}

/* Testimonials — Premium Light Showcase Design */
.testimonial-section { 
    padding: 90px 0; 
    background: linear-gradient(160deg, #f0f4ff 0%, #eef2ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.testimonial-section .section-title {
    color: var(--slate-900) !important;
}

.testimonial-section .text-secondary {
    color: rgba(71,85,105,0.9) !important;
}

.testimonial-card { 
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.stars { 
    color: #fbbf24; 
    margin-bottom: 22px; 
    font-size: 14px; 
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text { 
    color: #475569; 
    margin-bottom: 25px; 
    line-height: 1.7; 
    font-size: 14.5px; 
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.client-info { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: auto;
    padding-top: 24px; 
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.client-avatar { 
    width: 44px; 
    height: 44px; 
    background: #f1f5f9; 
    border-radius: 12px; 
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-weight: 700;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.client-name { 
    font-weight: 800; 
    color: #1e293b; 
    font-size: 16px; 
    letter-spacing: -0.3px;
}
.ashoka-pillar-simplified { width: 100%; height: 400px; background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%); display: flex; justify-content: center; align-items: center; position: relative; }
.ashoka-motto { font-size: 24px; font-weight: 900; color: var(--accent-blue); opacity: 0.8; letter-spacing: 5px; margin-top: 20px; text-transform: uppercase; }

.social-feed-card { 
    background: white; 
    border-radius: 24px; 
    overflow: hidden; 
    border: 1px solid rgba(0,0,0,0.05); 
    margin-bottom: 30px; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.social-feed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.sf-header { 
    padding: 24px 24px 12px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sf-header i { font-size: 20px; }
.sf-header.twitter { color: #000; border-top: 4px solid #000; }
.sf-header.instagram { color: #e1306c; border-top: 4px solid #e1306c; }
.sf-header.facebook { color: #1877f2; border-top: 4px solid #1877f2; }

.sf-content { padding: 0 24px 24px; }
.sf-author { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.sf-avatar { width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.sf-body { font-size: 15px; color: #334155; line-height: 1.6; font-weight: 500; }
.sf-footer { padding: 16px 24px; border-top: 1px solid #f1f5f9; display: flex; justify-content: space-between; font-size: 13px; color: #94a3b8; font-weight: 600; }

.whatsapp-cta { background: rgba(42, 132, 156, 0.05); border-top: 1px solid rgba(42, 132, 156, 0.1); border-bottom: 1px solid rgba(42, 132, 156, 0.1); padding: 40px 0; margin: 50px 0; }
.btn-whatsapp-join { background: #25d366; color: white !important; font-weight: 700; padding: 12px 30px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; border: none; }

.sf-author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; }

.api-icon-card { background: #fff8f1; border: 1px solid #ffedd5; border-radius: 12px; padding: 25px 15px; text-align: center; transition: all 0.3s ease; cursor: pointer; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.api-icon-card:hover { border-color: #fb923c; background: #fff; transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.api-icon-card i { font-size: 32px; color: #f97316; margin-bottom: 15px; }
.api-icon-card span { font-size: 13px; font-weight: 700; color: #1e293b; }

/* Redesigned Initiatives (Certificates) Section */
.initiatives-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.initiatives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
}

.initiatives-title-area {
    padding-right: 40px;
}

.initiatives-title {
    font-size: 56px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.initiatives-title span {
    color: #2563eb;
}

.initiatives-divider {
    width: 80px;
    height: 4px;
    background: #2563eb;
    margin-bottom: 30px;
    border-radius: 2px;
}

.initiatives-desc {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 400px;
}

.btn-initiatives-all {
    background: #2563eb;
    color: white !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-initiatives-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    background: #1e40af;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.initiative-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.initiative-card:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
}

.initiative-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.initiative-card:hover .initiative-icon-box {
    background: white;
    color: white !important;
}

/* Multichromatic Elite Prism Surface System */
.card-emerald { background: rgba(16, 185, 129, 0.03); border-color: rgba(16, 185, 129, 0.15); }
.card-emerald:hover { border-color: #10b981; background: rgba(16, 185, 129, 0.05); }
.card-emerald .initiative-icon-vibrant { color: #10b981; }
.card-emerald:hover .initiative-icon-box { background: #10b981; }

.card-amethyst { background: rgba(139, 92, 246, 0.03); border-color: rgba(139, 92, 246, 0.15); }
.card-amethyst:hover { border-color: #8b5cf6; background: rgba(139, 92, 246, 0.05); }
.card-amethyst .initiative-icon-vibrant { color: #8b5cf6; }
.card-amethyst:hover .initiative-icon-box { background: #8b5cf6; }

.card-azure { background: rgba(37, 99, 235, 0.03); border-color: rgba(37, 99, 235, 0.15); }
.card-azure:hover { border-color: #3b82f6; background: rgba(37, 99, 235, 0.05); }
.card-azure .initiative-icon-vibrant { color: #3b82f6; }
.card-azure:hover .initiative-icon-box { background: #3b82f6; }

.card-gold { background: rgba(245, 158, 11, 0.03); border-color: rgba(245, 158, 11, 0.15); }
.card-gold:hover { border-color: #f59e0b; background: rgba(245, 158, 11, 0.05); }
.card-gold .initiative-icon-vibrant { color: #f59e0b; }
.card-gold:hover .initiative-icon-box { background: #f59e0b; }

.card-rose { background: rgba(244, 63, 94, 0.03); border-color: rgba(244, 63, 94, 0.15); }
.card-rose:hover { border-color: #f43f5e; background: rgba(244, 63, 94, 0.05); }
.card-rose .initiative-icon-vibrant { color: #f43f5e; }
.card-rose:hover .initiative-icon-box { background: #f43f5e; }

.card-slate { background: rgba(30, 41, 59, 0.03); border-color: rgba(30, 41, 59, 0.15); }
.card-slate:hover { border-color: #1e293b; background: rgba(30, 41, 59, 0.05); }
.card-slate .initiative-icon-vibrant { color: #1e293b; }
.card-slate:hover .initiative-icon-box { background: #1e293b; }

.initiative-icon-vibrant {
    font-size: 28px;
    transition: all 0.4s ease;
}

.initiative-name {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

@media (max-width: 991px) {
    .initiatives-title-area {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    .initiatives-divider {
        margin: 0 auto 30px;
    }
    .initiatives-desc {
        margin: 0 auto 40px;
    }
    .initiatives-title {
        font-size: 42px;
    }
}

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

@media (max-width: 480px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
}

/* Refined Upcoming Events Section */
.events-pillar-section {
    background: #ffffff;
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.events-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -1px;
}

.events-title span {
    color: #3b82f6;
}

.btn-view-all-events {
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
}

.btn-view-all-events:hover {
    background: #3b82f6;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* Premium Event Card */
.event-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.event-card-content {
    position: relative;
    z-index: 3;
    color: white;
}

.event-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.event-location {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-date-badge {
    background: #eff6ff;
    color: #3b82f6;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-event-view {
    border: 1.5px solid white;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

/* Event Carousel Controls */
.event-nav-group {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.event-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-nav-btn:hover {
    background: white;
    color: #1e293b;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modern Calendar Widget */
.calendar-widget {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.calendar-top {
    background: #eff6ff;
    padding: 15px 20px;
    border-bottom: 1px solid #dbeafe;
}

.calendar-current-date {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.calendar-body {
    padding: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-name {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.muted) {
    background: #f8fafc;
    color: #3b82f6;
    border-color: #dbeafe;
}

.calendar-day.active {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.calendar-day.event-day {
    color: #3b82f6;
    font-weight: 900;
    background: #eff6ff;
}

.calendar-day.muted {
    color: #cbd5e1;
    cursor: default;
}

.calendar-control {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.calendar-control:hover {
    color: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.1);
}

/* Redesigned Why Choose Fill Your Forms Section */
.why-choose-section {
    background: #ffffff;
    padding: 100px 0;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.why-choose-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.isometric-container {
    perspective: 1000px;
}

.isometric-img {
    width: 100%;
    height: auto;
    animation: floatIllustration 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

@keyframes floatIllustration {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(1deg); }
}

.choose-card-detailed {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 18px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8edf5;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.choose-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.card-icon-top {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    object-fit: contain;
}

.card-label-caps {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.card-list-items li {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}

.card-list-items li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 10px;
    top: 2px;
}

.btn-share-card {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 11px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-share-card:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}
