/* New CSS Design Code */

:root {
    --navy-dark: #002147;
    --orange-vivid: #ff9100;
}
/* Core Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Colors */
.btn-orange {
    background: #ff6b00;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #e65a00;
    color: #fff;
    transform: translateY(-1px);
}

/* --- 1. Nav Link Spacing & Typography --- */
.custom-nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #333 !important;
    text-transform: uppercase;
    /* This controls the gap between items - adjust 20px as needed */
    padding: 25px 20px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

/* --- 2. The "Active/Hover" Underline --- */
.custom-nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 20px;
    /* Matches padding-left */
    right: 20px;
    /* Matches padding-right */
    height: 3px;
    background: #ff6b00;
    /* Vibrant Orange */
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-nav-link:hover::after,
.custom-nav-link.active::after {
    transform: scaleX(1);
}

.custom-nav-link:hover {
    color: #ff6b00 !important;
}

/* --- 3. Fixing Dropdown Icons & Lines --- */
.dropdown-toggle::after {
    display: none !important;
    /* Removes default Bootstrap arrow */
}

.nav-icon-sm {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.show>.nav-link .nav-icon-sm {
    transform: rotate(180deg);
}

/* --- 4. Premium Scheme Button --- */
.btn-scheme-pill {
    background: linear-gradient(135deg, #ffb300 0%, #ff9100 100%);
    color: #002147 !important;
    border: none;
    border-radius: 50px;
    padding: 10px 22px !important;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 179, 0, 0.3);
    transition: 0.3s;
}

.btn-scheme-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #002147;
    color: #fff !important;
}

/* --- 5. Modern Dropdown Menu --- */
.dropdown-menu {
    border-radius: 15px !important;
    padding: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.dropdown-item {
    font-weight: 600;
    font-size: 13px;
    padding: 10px 15px !important;
    border-radius: 10px !important;
    color: #444;
}

.dropdown-item:hover {
    background-color: #fff5eb !important;
    color: #ff6b00 !important;
    padding-left: 20px !important;
    /* Subtle slide effect */
}

/* Fix vertical alignment for the branding area */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
}

/* Add a smooth transition for the Scheme Support button */
.btn-scheme-pill {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-scheme-pill:hover {
    background-color: #fff !important;
    color: #ff9100 !important;
    border-color: #ff9100;
}

/* Clean up the dropdown arrow position */
.dropdown-toggle::after {
    display: none !important;
    /* Ensure the default caret stays hidden */
}

/* Ensure consistent spacing between nav items */
.navbar-nav .nav-item {
    margin-right: 5px;
    /* Adds a small consistent base gap */
}

.custom-nav-link {
    letter-spacing: 0.8px;
    /* Improves readability for all-caps text */
}

/* Section Wrapper */
.hero-wrapper {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    /* Light grey background for a clean look */
    overflow: hidden;
    padding: 0;
}

/* 16:9 Aspect Ratio Container */
#heroSlider {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    z-index: 2;
    /* Sits above background vectors */
}

/* The Image Fix: No more cut heads */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Anchors the top of the photo (the faces) */
    transition: transform 1.2s ease;
}

/* Vector Design Decorations */
.vector-element {
    position: absolute;
    z-index: 3;
    /* Floating over the carousel edges */
    pointer-events: none;
}

/* Example: Abstract Blob from Freepik */
.vector-blob-top {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 145, 0, 0.1);
    /* Saffron tint */
    border-radius: 50% 20% 70% 30%;
    /* Organic shape */
    filter: blur(40px);
}

/* Example: Geometric Wave at the bottom */
.vector-shape-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('https://cdnjs.cloudflare.com/ajax/libs/svg.js/3.1.2/svg.min.js');
    /* Placeholder for an SVG wave */
    background-size: cover;
    z-index: 4;
}

/* Professional Indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: #ff9100;
    opacity: 1;
    transform: scale(1.3);
}

/* Ken Burns (Zoom) effect that stays anchored to the top */
.carousel-item.active .hero-img {
    animation: kenburns-top 10s ease-out forwards;
}

@keyframes kenburns-top {
    0% {
        transform: scale(1);
        transform-origin: top;
    }

    100% {
        transform: scale(1.08);
        transform-origin: top;
    }
}

/* Impact */
/* Section */
.impact-section-pro {
    padding: 120px 0;
    background: linear-gradient(135deg, #f4f8ff, #eef2ff);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatMove 12s infinite alternate ease-in-out;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: #002147;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #ff9100;
    bottom: -80px;
    right: -80px;
}

@keyframes floatMove {
    from {
        transform: translateY(0px) translateX(0px);
    }

    to {
        transform: translateY(40px) translateX(30px);
    }
}

/* Header */
.live-badge {
    background: rgba(0, 74, 153, 0.1);
    color: #004a99;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #002147;
}

.section-subtitle {
    max-width: 520px;
    margin: auto;
    color: #6c757d;
}

/* Card */
.impact-card-pro {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.impact-card-pro:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 33, 71, 0.2);
}

/* Glow Border Hover */
.impact-card-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #002147, #ff9100);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.impact-card-pro:hover::after {
    opacity: 1;
}

/* Icon */
.icon-box {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.bg-blue {
    background: linear-gradient(135deg, #002147, #004a99);
}

.bg-teal {
    background: linear-gradient(135deg, #008080, #00b3b3);
}

.bg-orange {
    background: linear-gradient(135deg, #ff9100, #ffb300);
}

/* Numbers */
.impact-number {
    font-size: 48px;
    font-weight: 900;
    color: #002147;
    margin-bottom: 5px;
}

.impact-text {
    font-size: 16px;
    color: #6c757d;
}

/* Impact */



/* ===========================
   SECTION BACKGROUND
=========================== */
.purpose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

/* Floating Abstract Shapes */
.purpose-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.shape-left {
    width: 350px;
    height: 350px;
    background: #002147;
    top: -100px;
    left: -120px;
}

.shape-right {
    width: 300px;
    height: 300px;
    background: #ff9100;
    bottom: -80px;
    right: -100px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.purpose-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #004a99;
    background: rgba(0, 74, 153, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.purpose-title {
    font-size: 42px;
    font-weight: 800;
    color: #002147;
    margin-bottom: 20px;
}

.purpose-description {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

/* ===========================
   FEATURE CARDS
=========================== */
.purpose-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 33, 71, 0.15);
}

/* Icon Box */
.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #002147;
    flex-shrink: 0;
}

.bg-primary-soft {
    background: rgba(0, 33, 71, 0.1);
}

.bg-secondary-soft {
    background: rgba(255, 145, 0, 0.15);
}

.feature-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #002147;
}

.feature-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   IMAGE STYLING
=========================== */
.purpose-image-wrapper {
    position: relative;
}

.purpose-image {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 33, 71, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.purpose-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 33, 71, 0.25);
}

/* ==============================
   VECTOR WAVE DIVIDERS
============================== */

.vector-wave-top,
.vector-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 0;
}

.vector-wave-top {
    top: 0;
}

.vector-wave-bottom {
    bottom: 0;
}

.vector-wave-top svg path {
    fill: rgba(0, 33, 71, 0.05);
}

.vector-wave-bottom svg path {
    fill: rgba(255, 145, 0, 0.08);
}

/* ==============================
   DOT GRID VECTOR
============================== */

.vector-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(#d1d9e6 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    z-index: 0;
}

/* ==============================
   GRADIENT MESH BLOBS (UPGRADE)
============================== */

.purpose-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 0;
    animation: floatMesh 14s infinite alternate ease-in-out;
}

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

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

/* Ensure content stays above vectors */
.purpose-section .container {
    position: relative;
    z-index: 2;
}

/* Custom Palettes */
.bg-soft-orange {
    background-color: rgba(255, 145, 0, 0.1);
}

.text-orange {
    color: #ff9100;
}

.text-gradient-orange {
    background: linear-gradient(90deg, #002147, #ff9100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Vision Card Styling */
.vision-card-modern {
    background: #002147;
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.vision-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ff9100;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 145, 0, 0.3);
}

.vision-card-decor {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* Mission Wrapper */
.mission-wrapper-modern {
    background: #ffffff;
    border-radius: 2rem;
    border: 1px solid #f1f5f9 !important;
}

.mission-bullseye-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    color: #002147;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Mission Grid Items */
.mission-item-modern {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 1.2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8fafc;
}

.mission-item-modern:hover {
    background: #f8fafc;
    transform: translateX(10px);
}

.m-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-soft-blue {
    background: #e0e7ff;
    color: #4338ca;
}

.bg-soft-teal {
    background: #ccfbf1;
    color: #0f766e;
}

.fw-black {
    font-weight: 900;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Background Vector */
.vector-blob-vision {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 33, 71, 0.03) 0%, transparent 70%);
    z-index: 1;
}


/* ===========================
   SECTION BACKGROUND
=========================== */

.core-role-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    position: relative;
}

/* Vector Shapes */
.core-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.shape-left {
    width: 300px;
    height: 300px;
    background: #002147;
    top: -120px;
    left: -120px;
}

.shape-right {
    width: 250px;
    height: 250px;
    background: #ff9100;
    bottom: -80px;
    right: -80px;
}

/* Dot pattern */
.core-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-image: radial-gradient(#d1d9e6 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.25;
}

/* Ensure content above vectors */
.core-role-section .container {
    position: relative;
    z-index: 2;
}

/* ===========================
   TYPOGRAPHY
=========================== */

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #004a99;
    background: rgba(0, 74, 153, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #002147;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, #002147, #ff9100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   CORE CARDS
=========================== */

.core-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.05);
    position: relative;
}

.core-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 33, 71, 0.15);
}

/* Icon */
.core-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
}

.bg-blue {
    background: linear-gradient(135deg, #002147, #004a99);
}

.bg-orange {
    background: linear-gradient(135deg, #ff9100, #ffb300);
}

.bg-teal {
    background: linear-gradient(135deg, #008080, #00b3b3);
}

.core-title {
    font-weight: 700;
    color: #002147;
    margin-bottom: 15px;
}

.core-text {
    color: #6c757d;
    line-height: 1.8;
}



/* ==============================
   SECTION BACKGROUND
============================== */

.cmo-directory {
    background: linear-gradient(135deg, #f4f7fc, #eef2f8);
    padding: 100px 0;
}

/* ==============================
   MAIN CARD CONTAINER
============================== */

.directory-block {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

/* ==============================
   HEADER
============================== */

.directory-header {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==============================
   EACH OFFICER ROW
============================== */

.directory-row {
    border-bottom: 1px solid #e6edf5;
    transition: all 0.3s ease;
}

.directory-row:hover {
    background: #f9fbff;
}

/* ==============================
   PROFILE COLUMN
============================== */

.profile-column {
    padding: 30px;
    background: #ffffff;
    border-right: 1px solid #eef2f6;
    position: relative;
}

/* Subtle Accent Line */
.profile-column::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 4px;
    background: linear-gradient(180deg, #1e3a8a, #f59e0b);
    border-radius: 4px;
}

/* ==============================
   PROFILE INFO
============================== */

.profile-box {
    gap: 20px;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f59e0b;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.profile-title {
    color: #64748b;
    font-size: 0.9rem;
}

/* ==============================
   DETAILS COLUMN
============================== */

.inner-entry {
    padding: 0;
    background: #ffffff;
}

.designation-cell {
    padding: 30px;
    font-weight: 500;
    color: #1e293b;
    border-right: 1px solid #eef2f6;
    background: #fafcff;
}

.contact-cell {
    padding: 30px;
}

.contact-cell div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.contact-cell i {
    color: #1e3a8a;
    font-size: 0.95rem;
}

/* ==============================
   HIERARCHY EMPHASIS (CM & DCM)
============================== */

.directory-row:first-of-type {
    background: linear-gradient(90deg, #fff8eb, #ffffff);
}

.directory-row:first-of-type .profile-avatar {
    border-color: #d97706;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {

    .directory-header {
        display: none;
    }

    .profile-column {
        border-right: none;
        border-bottom: 1px solid #eef2f6;
    }

    .designation-cell {
        border-right: none;
        border-bottom: 1px solid #eef2f6;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }
}

/* =============================
   SECTION
============================= */
.scheme-explorer {
    background: #f8fafc;
}

/* HEADER */
.explorer-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.explorer-title span {
    color: #1e3a8a;
}

.explorer-subtitle {
    color: #64748b;
    margin-top: 10px;
}

/* =============================
   CARD DESIGN (NEW STYLE)
============================= */
.explorer-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.explorer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #1e3a8a;
}

/* ICON */
.explorer-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.explorer-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

/* CONTENT */
.explorer-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 5px;
}

.explorer-content span {
    font-size: 13px;
    color: #1e3a8a;
    font-weight: 500;
}

/* ARROW */
.explorer-arrow {
    margin-left: auto;
    font-size: 16px;
    color: #94a3b8;
    transition: 0.3s ease;
}

.explorer-card:hover .explorer-arrow {
    color: #1e3a8a;
    transform: translateX(6px);
}


/* ==============================
   SECTION BACKGROUND
============================== */

.eligibility-section {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    overflow: hidden;
}

/* Gradient Blobs */
.eligibility-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.blob-left {
    width: 320px;
    height: 320px;
    background: #1e3a8a;
    top: -120px;
    left: -100px;
}

.blob-right {
    width: 260px;
    height: 260px;
    background: #f59e0b;
    bottom: -80px;
    right: -100px;
}

/* Dotted texture */
.eligibility-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.25;
}

/* Ensure content above vectors */
.eligibility-section .container {
    position: relative;
    z-index: 2;
}

/* ==============================
   HEADER STYLING
============================== */

.eligibility-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.highlight-text {
    color: #1e3a8a;
}

.eligibility-subtitle {
    max-width: 650px;
    margin: 12px auto 0;
    color: #64748b;
}

/* ==============================
   FORM CARD (GLASS EFFECT)
============================== */

.eligibility-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

/* Input styling refinement */
.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    transition: 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
}

/* Button refinement */
.btn-register {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

/* ==============================
   RESULT SECTION
============================== */

#eligibilityResults {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}


.contact-modern-section { background-color: #f8fafc; }
.text-navy { color: var(--navy-dark); }
.text-orange { color: var(--orange-vivid); }
.bg-navy { background-color: var(--navy-dark); }

/* Map Styling */
.grayscale-map {
    filter: contrast(1.2) grayscale(0.2); /* Soft professional grayscale */
    transition: all 0.5s ease;
}

.map-container:hover .grayscale-map {
    filter: grayscale(0);
}

.map-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--navy-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

/* Info Icon Aesthetic */
.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 145, 0, 0.15);
    color: var(--orange-vivid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Hover Effects */
.hover-orange:hover {
    color: var(--orange-vivid) !important;
}

.ls-1 { letter-spacing: 1px; }

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 33, 71, 0.15);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.2);
    font-size: 0.7rem;
}

/* Mobile Tweak */
@media (max-width: 991px) {
    .map-container iframe {
        height: 350px;
    }
}


/* =============================
   BACKGROUND DESIGN
============================= */
.faq-section {
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    overflow: hidden;
}

.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.blob-left {
    width: 320px;
    height: 320px;
    background: #1e3a8a;
    top: -120px;
    left: -120px;
}

.blob-right {
    width: 260px;
    height: 260px;
    background: #f59e0b;
    bottom: -100px;
    right: -120px;
}

.faq-section .container {
    z-index: 2;
}

/* =============================
   HEADER
============================= */
.faq-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.faq-subtitle {
    color: #64748b;
    margin-top: 10px;
}

/* =============================
   FAQ CARD WRAPPER
============================= */
.faq-card-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

/* =============================
   CATEGORY HEADINGS
============================= */
.faq-card-wrapper h4 {
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #1e3a8a;
    color: #1e3a8a;
}

/* =============================
   ACCORDION CUSTOM DESIGN
============================= */
.accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.accordion-button {
    font-weight: 600;
    color: #0f172a;
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
}

.accordion-button:not(.collapsed) {
    color: #1e3a8a;
    background: transparent;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Add icon before question */
.accordion-button::before {
    content: "Q";
    font-size: 12px;
    font-weight: 700;
    background: #1e3a8a;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* Accordion body */
.accordion-body {
    color: #475569;
    line-height: 1.7;
    padding-bottom: 20px;
}



/* Footer Titles */
.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 3px;
    background: #ff9100;
}

/* List Item Hover Effects */
.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s all ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #ff9100;
    transform: translateX(5px);
}

/* Contact Section Icons */
.contact-icon {
    width: 30px;
    color: #ff9100;
    font-size: 16px;
}

/* Social Buttons */
.btn-social {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-social:hover {
    background: #ff9100;
    color: #002147;
    transform: translateY(-3px);
}

/* Legal Links */
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .footer-title { margin-top: 20px; }
}


/* =========================
   SECTION BACKGROUND
========================= */
.expert-section {
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    overflow: hidden;
}

/* Decorative Blobs */
.expert-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.blob-left {
    width: 320px;
    height: 320px;
    background: #1e3a8a;
    top: -120px;
    left: -120px;
}

.blob-right {
    width: 260px;
    height: 260px;
    background: #f59e0b;
    bottom: -80px;
    right: -120px;
}

.expert-section .container {
    z-index: 2;
}

/* =========================
   HEADER
========================= */
.expert-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.expert-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.expert-subtitle {
    max-width: 600px;
    margin: 12px auto 0;
    color: #64748b;
}

/* =========================
   CARD WRAPPER
========================= */
.expert-card-wrapper {
    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

/* Image */
.expert-image {
    max-height: 420px;
}

/* =========================
   CALL CARD
========================= */
.call-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f1f5f9;
    padding: 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.call-card:hover {
    background: #e2e8f0;
    transform: translateY(-4px);
}

.call-icon {
    width: 60px;
    height: 60px;
    background: #1e3a8a;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.call-content h3 {
    font-weight: 700;
    margin: 4px 0;
    color: #0f172a;
}

.call-content p {
    margin: 0;
    color: #64748b;
}

.call-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1e3a8a;
    font-weight: 600;
}

.call-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #64748b;
    transition: 0.3s ease;
}

.call-card:hover .call-arrow {
    transform: translateX(6px);
    color: #1e3a8a;
}

/* =========================
   FEATURES
========================= */
.support-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 20px;
    color: #1e3a8a;
}

.feature-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}

.feature-item span {
    font-size: 13px;
    color: #64748b;
}


.scheme-hero {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
    position: relative;
}

.scheme-title {
    font-size: 42px;
    font-weight: 700;
}

.scheme-short-desc {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.custom-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.custom-breadcrumb .active {
    color: #ffffff;
}

.btn-apply {
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-apply:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

/* New Design Code Ends Here */