@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0f5bd8; /* Royal blue */
    --secondary: #f2b84b; /* Financial gold */
    --primary-hover: #0b46a4;
    --dark-bg: #07152b; /* Deep finance navy */
    --dark-card: #102542; /* Rich dark blue */
    --light-bg: #f5f7fb; /* Soft finance background */
    --text-primary: #10223e; /* Deep slate blue */
    --text-secondary: #55657c; /* Muted blue gray */
    --border-color: #dfe6f0; /* Light steel blue */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.08);
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(15, 91, 216, 0.14);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.dark-section {
    background-color: var(--dark-bg);
    color: #ffffff;
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 {
    color: #ffffff;
}

/* Header & Navigation */
.top-bar {
    background: #090f20;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-info {
    display: flex;
    gap: 1.5rem;
}
.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.top-bar-info svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}
.top-bar-socials {
    display: flex;
    gap: 1rem;
}
.top-bar-socials a:hover {
    color: var(--primary);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    transform: translate3d(0, 0, 0);
    will-change: transform, background-color, box-shadow;
}
header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
/* .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--dark-bg);
} */
.logo {
    transition: none !important;
}
.logo img {
    width: 152px;
    height: 50px;
    object-fit: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin-left: 4rem;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    width: 220px;
    padding: 0.75rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.dropdown-item a:hover {
    background-color: var(--light-bg);
    color: var(--primary);
    transform: translateX(4px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2.5rem;
}
.nav-cta .btn {
    width: 160px;
    height: 42px;
    padding: 0;
    font-size: 0.88rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1264e3 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 91, 216, 0.22);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 91, 216, 0.28);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}
.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(0,0,0,0.02);
}
.btn-white {
    background: #ffffff;
    color: var(--dark-bg);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.22);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba59 0%, #0e7569 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.btn-enquiry {
    background: linear-gradient(135deg, var(--secondary) 0%, #d89f36 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(242, 184, 75, 0.22);
}
.btn-enquiry:hover {
    background: linear-gradient(135deg, #e5ab3f 0%, #c48c2c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(242, 184, 75, 0.28);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 110;
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition);
    overflow-y: auto;
}
.mobile-drawer.open {
    right: 0;
}
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-drawer-close svg {
    width: 24px;
    height: 24px;
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
    margin-top: 0.5rem;
}
.mobile-nav-dropdown-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(15, 91, 216, 0.09) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(242, 184, 75, 0.08) 0%, transparent 50%);
    overflow: hidden;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 2rem;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.hero-trust span::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(242, 184, 75, 0.12) 0%, transparent 70%);
    z-index: -1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-subtitle::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}
.hero-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
}
.hero-stat-item p {
    font-size: 0.875rem;
    margin: 0;
}

.hero-visual {
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}
.hero-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-card-1 {
    top: 10%;
    left: -10%;
    animation: float-slow 6s ease-in-out infinite alternate;
}
.hero-card-2 {
    bottom: 10%;
    right: -5%;
    animation: float-fast 5s ease-in-out infinite alternate;
}
.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.hero-card-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.hero-card-details p {
    font-size: 0.75rem;
    margin: 0;
}

@keyframes float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}
@keyframes float-fast {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

/* Feature Grid Services */
.section {
    padding: 4.5rem 0;
}
.section-soft {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 2.5rem 0;
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}
.section-subtitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-secondary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}
.showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    border-radius: 24px;
    border: 1px solid rgba(15, 91, 216, 0.12);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
}
.showcase-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.showcase-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.check-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}
.check-list li span {
    color: var(--secondary);
    font-weight: 800;
}
.showcase-image-stack {
    display: grid;
    gap: 1rem;
}
.showcase-image-stack img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    background: #ffffff;
}
.showcase-image-stack img:nth-child(2) {
    margin-left: 2rem;
}
.showcase-image-stack img:nth-child(3) {
    margin-left: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-visual {
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 91, 216, 0.08), rgba(242, 184, 75, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    padding: 1rem;
}
.service-visual img {
    max-height: 110px;
    width: auto;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    border-color: rgba(15, 91, 216, 0.18);
}
.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}
.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Call to Action Banner */
.cta-banner {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.cta-banner-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}
.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
    opacity: 0.9;
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* EMI Calculator Widget */
.calc-widget {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}
.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 0.6rem; /* small readable gap between sliders */
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.slider-group {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0; /* slightly increased padding for readability */
    width: 100%;
    flex: none;
}
.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--text-primary);
    gap: 1rem;
}
.slider-grid-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.slider-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.calc-results {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    gap: 0.75rem;
}
.calc-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.calc-stat-val {
    font-size: 2.05rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.calc-breakup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-bottom: 0.75rem;
}
.calc-breakup-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.calc-breakup-item span:first-child {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.calc-breakup-item span:last-child {
    font-weight: 700;
    color: var(--text-primary);
}
.bullet-p {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
.bullet-i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}
#chartCanvas {
    max-width: 150px;
    max-height: 150px;
}

/* Eligibility Page Style */
.elig-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.elig-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}
@media (max-width: 992px) {
    .elig-grid {
        grid-template-columns: 1fr;
    }
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 91, 216, 0.15);
}

.elig-results {
    background: var(--dark-bg);
    color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.elig-score-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 3px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
}
.elig-score-badge.approved {
    border-color: var(--secondary);
    color: var(--secondary);
}
.elig-score-badge.declined {
    border-color: #ef4444;
    color: #ef4444;
}
.elig-result-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.elig-result-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.elig-amount-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.elig-amount-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}
.elig-amount-val {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

/* Why Choose Us & Process Section */
.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.why-feature-item {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.why-feature-item svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-bottom: 1rem;
}
.why-feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.why-feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}
.process-step-item {
    text-align: center;
    position: relative;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.process-step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.process-step-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    color: inherit;
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-answer[hidden] {
    display: none;
}
.faq-item.active,
.faq-item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.faq-item.active .faq-answer,
.faq-item.is-open .faq-answer {
    padding-bottom: 1.25rem;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-question svg,
.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Testimonials Carousel */
.testimonials-section {
    background: #f1f5f9;
}
.carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    padding: 1rem;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #eab308;
}
.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
}
.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-meta h4 {
    font-size: 0.95rem;
    margin: 0;
}
.testimonial-meta p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Blog grid & elements */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    height: 220px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-content {
    padding: 1.5rem;
}
.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Map Grid and Contact details */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-cards {
    display: flex;
    gap: 5rem;
}
.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display:flex;
    gap: 3.5rem;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(6,182,212,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-info-details h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.contact-info-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* .map-wrapper {
    margin-top: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 320px;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
} */

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}
.modal.open .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}
.modal-close svg {
    width: 24px;
    height: 24px;
}
.modal-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    color: #ffffff;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px);
    opacity: 0;
    z-index: 1000;
    transition: var(--transition);
}
.notification.show {
    transform: translateY(0);
    opacity: 1;
}
.notification-success {
    border-left: 4px solid var(--secondary);
}
.notification-success svg {
    color: var(--secondary);
}

/* Footer styling */
footer {
    background-color: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-column:last-of-type h4 {
    text-align: center;
    width: 100%;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.footer-column:last-of-type h4::after {
    left: 50%;
    transform: translateX(-50%);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-column:last-of-type .footer-links {
    display: block;
    column-count: 2;
    column-gap: 1.25rem;
}
.footer-column:last-of-type .footer-links li {
    break-inside: avoid;
    margin-bottom: 0.75rem;
}
.footer-links a {
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials-item {
    min-width: 38px;
    height: 38px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    padding: 0 0.75rem;
    font-size: 0.85rem;
    gap: 0.4rem;
}
.footer-socials-item:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}
.footer-socials-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: #ffffff;
    outline: none;
    font-size: 0.9rem;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.newsletter-form button {
    padding: 0.6rem 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Page Header component */
.page-header {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}
.breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb-separator::before {
    content: '/';
    padding: 0 0.25rem;
}
.breadcrumb-active {
    color: #ffffff;
    font-weight: 500;
}

/* Table styling */
.rate-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: #ffffff;
}
.rate-table th {
    background: var(--light-bg);
    padding: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}
.rate-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.rate-table tr:last-child td {
    border-bottom: none;
}
.rate-table tr:hover td {
    background: rgba(6,182,212,0.02);
}

/* Testimonials Masonry Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Eligibility output styling */
.recommended-list {
    text-align: left;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.recommended-list h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.recommended-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}
.recommended-item svg {
    color: var(--secondary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    header {
        background: #ffffff;
    }
    .nav-menu {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-subtitle {
        justify-content: center;
    }
    .hero-subtitle::before {
        display: none;
    }
    .hero h1 {
        font-size: 2.75rem;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .showcase-image-stack img:nth-child(2),
    .showcase-image-stack img:nth-child(3) {
        margin-left: 0;
    }
}

/* Scroll Reveal Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Article / Policy Page Prose Layout */
.hero-content {
    line-height: 1.8;
}
.hero-content h2 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}
.hero-content h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
}
.hero-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive page header */
@media (max-width: 768px) {
    .page-header {
        padding: 3.5rem 0;
    }
    .page-header h1 {
        font-size: 1.9rem;
    }
}

/* Select Control Override (cross-browser) */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Newsletter form submit feedback */
#newsletterForm button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
