/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #48bb78;
    --accent-hover: #38a169;
    --text-dark: #1a202c;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-ring-1 {
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    animation: spin-cw 1.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.loader-ring-2 {
    inset: 12px;
    border-bottom-color: rgba(255, 255, 255, 0.7);
    border-left-color: rgba(255, 255, 255, 0.7);
    animation: spin-ccw 1.1s linear infinite;
}

.loader-ring-3 {
    inset: 24px;
    border-top-color: rgba(72, 187, 120, 0.5);
    animation: spin-cw 0.8s linear infinite;
}

.loader-core {
    position: absolute;
    inset: 34px;
    background: radial-gradient(circle, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    animation: pulse-core 1.4s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(72, 187, 120, 0.6);
}

@keyframes spin-cw {
    to { transform: rotate(360deg); }
}

@keyframes spin-ccw {
    to { transform: rotate(-360deg); }
}

@keyframes pulse-core {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px rgba(72, 187, 120, 0.6); }
    50% { transform: scale(0.6); opacity: 0.5; box-shadow: 0 0 4px rgba(72, 187, 120, 0.2); }
}

.loader-dots {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 20px;
}

.loader-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: bounce-dot 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(1) { animation-delay: 0s; }
.loader-dot:nth-child(2) { animation-delay: 0.2s; background: var(--accent-color); }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-dot {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-10px); opacity: 1; }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: rgba(10, 22, 40, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    gap: 16px;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 12px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 38px; height: 38px;
    background: var(--accent-color);
    border-radius: 9px;
    display: flex; justify-content: center; align-items: center;
    font-size: 17px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.logo:hover .logo-icon { transform: rotate(-10deg) scale(1.1); }

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text { color: var(--primary-color); }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 7px 12px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.nav-link::after { display: none; }

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.header.scrolled .nav-link { color: var(--text-dark); }
.header.scrolled .nav-link:hover { color: var(--primary-color); background: rgba(30,58,95,0.07); }

.nav-btn {
    padding: 9px 20px;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    display: inline-flex; align-items: center; gap: 7px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(72,187,120,0.38);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 7px;
    border-radius: 8px;
    border: none;
    background: transparent;
    transition: background 0.2s ease;
}

.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.header.scrolled .menu-toggle:hover { background: rgba(0,0,0,0.05); }

.menu-toggle span {
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.header.scrolled .menu-toggle span { background: var(--primary-color); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Image slider ── */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    animation: kenBurns 9s ease-in-out infinite alternate;
}

.slide.active { opacity: 1; }

@keyframes kenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

/* ── Gradient overlay ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(5,15,30,0.86) 0%, rgba(5,15,30,0.62) 55%, rgba(5,15,30,0.28) 100%),
        linear-gradient(to top, rgba(5,15,30,0.55) 0%, transparent 45%);
}

/* ── Main content ── */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 0 130px;
}

.hero-content { max-width: 600px; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.28);
    color: #86efac;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero-badge-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.22);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.22); }
    50%       { box-shadow: 0 0 0 7px rgba(74,222,128,0.06); }
}

/* Title */
.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.35s forwards;
}

.hero-title-em {
    font-style: normal;
    color: #4ade80;
    position: relative;
    display: inline-block;
}

.hero-title-em::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, #4ade80, transparent);
    border-radius: 2px;
    opacity: 0.55;
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.5s forwards;
}

.hero-desc strong { color: rgba(255,255,255,0.9); }

/* Action buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.65s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    background: #4ade80;
    color: #052010;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    letter-spacing: -0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(74,222,128,0.35);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(74,222,128,0.5);
    color: #052010;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Trust row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.8s forwards;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.hero-trust i { color: #4ade80; font-size: 0.75rem; }

/* ── Prev / Next arrows ── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
    cursor: pointer;
    display: grid; place-items: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(74,222,128,0.18);
    border-color: rgba(74,222,128,0.4);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.hero-prev { left: 22px; }
.hero-next { right: 22px; }

/* ── Slide dots ── */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #4ade80;
}

/* ── Counter + progress bar ── */
.hero-counter {
    position: absolute;
    bottom: 44px;
    right: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-ctr-num,
.hero-ctr-total {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.42);
}

.hero-ctr-num { color: rgba(255,255,255,0.88); }

.hero-ctr-bar {
    width: 56px; height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.hero-ctr-fill {
    height: 100%;
    width: 0;
    background: #4ade80;
    border-radius: 2px;
}

/* ── Scroll mouse ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 28px;
    z-index: 5;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 1.4s forwards;
}

.hero-scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.hero-scroll-wheel {
    width: 3px; height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Legacy btn-primary / btn-secondary (used by other site sections) */
.btn-primary {
    padding: 13px 26px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.925rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(72,187,120,0.28);
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(72,187,120,0.4);
}

.btn-secondary {
    padding: 13px 26px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.88);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.925rem;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-gradient);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--accent-color);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== GRANTS SECTION ===== */
.grants-section {
    background: var(--bg-white);
}

.grants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grant-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.grant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.grant-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.grant-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.grant-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.grant-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.grant-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.grant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.grant-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.grant-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.grant-btn:hover {
    background: var(--accent-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== ELIGIBILITY SECTION ===== */
.eligibility-section {
    background: var(--bg-white);
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eligibility-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.eligibility-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.eligibility-list {
    list-style: none;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.eligibility-list li:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.eligibility-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.2rem;
}

.eligibility-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.eligibility-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--accent-color);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--text-white);
}

.testimonials-section .section-header h2::after {
    background: var(--accent-color);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 25px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 5px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-btn {
    padding: 18px 50px;
    background: var(--text-white);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--bg-gradient);
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(72,187,120,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ===== APPLY PAGE ===== */
.apply-hero {
    background: var(--bg-gradient);
    padding: 150px 0 100px;
    text-align: center;
}

.apply-hero h1 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.apply-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.apply-section {
    padding: 80px 0;
}

.apply-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background: var(--bg-gradient);
    padding: 30px 40px;
    text-align: center;
}

.form-header h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.apply-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-white);
}

.apply-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23718096" viewBox="0 0 16 16"><path d="M8 11L3 6h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(72,187,120,0.1);
}

.submit-section {
    text-align: center;
    padding-top: 20px;
}

.submit-btn {
    padding: 18px 60px;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.form-note p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-note a {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== MESSAGE ALERTS ===== */
.alert {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert i {
    font-size: 1.3rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

/* --- Hamburger nav: activates at 1100px so desktop nav never overflows --- */

/* Backdrop overlay behind the slide menu */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.nav-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1100px) {
    .header {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .header.scrolled {
        background: rgba(255,255,255,0.98);
        backdrop-filter: none;
    }

    .navbar,
    .header.scrolled .navbar {
        padding: 13px 5%;
    }

    .header.scrolled .logo-text,
    .logo-text { color: #fff; }
    .header.scrolled .logo-text { color: var(--primary-color); }

    .header.scrolled .menu-toggle span { background: var(--primary-color); }
    .menu-toggle span { background: #fff; }

    .menu-toggle { display: flex; }

    /* ── Slide drawer ── */
    .nav-menu {
        position: fixed;
        top: var(--header-h, 72px);
        right: -110%;
        width: min(310px, 82vw);
        height: calc(100dvh - var(--header-h, 72px));
        background: linear-gradient(170deg, #0d1b2e 0%, #102545 60%, #0d1b2e 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.07);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 2px;
        transition: right 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.36s ease;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: none;
        z-index: 999;
        padding: 28px 16px 32px;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -8px 0 60px rgba(0, 0, 0, 0.45);
    }

    /* Staggered item entrance when menu opens */
    .nav-menu.active li {
        animation: slideInItem 0.3s ease both;
    }
    .nav-menu.active li:nth-child(1)  { animation-delay: 0.04s; }
    .nav-menu.active li:nth-child(2)  { animation-delay: 0.08s; }
    .nav-menu.active li:nth-child(3)  { animation-delay: 0.12s; }
    .nav-menu.active li:nth-child(4)  { animation-delay: 0.16s; }
    .nav-menu.active li:nth-child(5)  { animation-delay: 0.20s; }
    .nav-menu.active li:nth-child(6)  { animation-delay: 0.24s; }
    .nav-menu.active li:nth-child(7)  { animation-delay: 0.28s; }
    .nav-menu.active li:nth-child(8)  { animation-delay: 0.32s; }
    .nav-menu.active li:nth-child(9)  { animation-delay: 0.36s; }

    @keyframes slideInItem {
        from { opacity: 0; transform: translateX(20px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* Nav links inside the drawer — always white, regardless of header scroll state */
    .nav-link,
    .header.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
        font-weight: 500;
        padding: 13px 18px;
        border-radius: 10px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        border: 1px solid transparent;
        background: transparent;
        letter-spacing: 0;
    }

    .nav-link:hover,
    .header.scrolled .nav-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* Accent line separating CTA from links */
    .nav-menu li:last-child {
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(72, 187, 120, 0.35);
        letter-spacing: 0.01em;
    }

    .nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(72, 187, 120, 0.45);
    }
}

/* --- Grid layouts: tablet breakpoint --- */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grants-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile layout: hero, grids, forms (no nav rules here) --- */
@media (max-width: 960px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-desc  { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust   { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-inner { padding: 120px 0 110px; }

    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-hero-primary,
    .hero-actions .btn-hero-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-arrow  { display: none; }
    .hero-counter { right: 50%; transform: translateX(50%); bottom: 72px; }
    .hero-dots   { bottom: 48px; }
    .hero-scroll-hint { display: none; }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .apply-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .apply-form,
    .contact-form {
        padding: 25px;
    }

    .form-header {
        padding: 25px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--bg-gradient);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
}

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

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-page-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--text-white);
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-section {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.team-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 250px;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--text-white);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== SERVICES PAGE ===== */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detailed-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-detailed-image {
    height: 200px;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--text-white);
}

.service-detailed-content {
    padding: 30px;
}

.service-detailed-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detailed-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-color);
}

/* ===================================================================
   DESIGN ENHANCEMENTS v2
   =================================================================== */

/* ===== GOOGLE FONT OVERRIDE ===== */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    width: 100%;
    background: linear-gradient(135deg, #0f2544 0%, #1a3560 50%, #0f2544 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(72, 187, 120, 0.25);
    overflow: hidden;
    max-height: 80px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.announcement-bar.hide {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.announcement-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    line-height: 1.8;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.4;
}

.ann-short {
    display: none;
}

.announcement-cta {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(72, 187, 120, 0.4);
    padding-bottom: 1px;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}

.announcement-cta:hover {
    color: #6ee7a0;
    border-bottom-color: #6ee7a0;
}

.announcement-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 4px 8px;
    transition: color 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.announcement-close:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Header z-index raised so it sits above everything */

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72, 187, 120, 0.12);
    border: 1px solid rgba(72, 187, 120, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #86efac;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

/* ===== HERO CONTENT GLASS ENHANCEMENT ===== */
.hero-content {
    padding: 48px 44px;
    background: rgba(10, 28, 55, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ===== STAT ICON ===== */
.stat-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.35rem;
    color: var(--accent-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.12);
    background: rgba(72, 187, 120, 0.15);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid #e8edf3;
}

.trust-strip .container {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    color: #a0aec0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #718096;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.trust-item:hover {
    color: var(--primary-color);
}

.trust-divider {
    width: 1px;
    height: 18px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card:hover {
    box-shadow: 0 16px 48px rgba(72, 187, 120, 0.12), 0 0 0 2px rgba(72, 187, 120, 0.25);
}

/* ===== ENHANCED TESTIMONIAL CARDS ===== */
.testimonial-card {
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(72, 187, 120, 0.28);
}

.testimonial-quote {
    font-size: 4.5rem;
    opacity: 0.1;
    line-height: 1;
    top: 16px;
    right: 22px;
}

/* ===== ENHANCED CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0b1f3d 0%, #1e3a5f 45%, #2c5282 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -130px;
    right: -90px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.14) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.09) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SECTION HEADER UNDERLINE REFINEMENT ===== */
.section-header h2::after {
    background: linear-gradient(90deg, var(--accent-color), #38a169);
    width: 70px;
}

/* ===== FOOTER LINK ARROW ===== */
.footer-links a::before {
    content: '›';
    margin-right: 6px;
    color: var(--accent-color);
    font-weight: 700;
    opacity: 0;
    transform: translateX(-6px);
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
}

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

.footer-links a:hover {
    padding-left: 0;
}

/* ===== NAV ACTIVE STATE ===== */
.nav-link.active {
    color: var(--accent-color);
}

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

/* ===== FAQ ITEM ACTIVE BORDER ===== */
.faq-item.active {
    border-left: 4px solid var(--accent-color);
    border-radius: 15px;
}

/* ===== ELIGIBILITY ITEM ENHANCED HOVER ===== */
.eligibility-list li {
    border-left: 3px solid transparent;
    transition: var(--transition), border-color 0.3s;
}

.eligibility-list li:hover {
    border-left-color: var(--accent-color);
    transform: translateX(8px);
}

/* ===== STEP CARD CONNECTOR ===== */
.step-card h3 {
    font-weight: 600;
}

/* ===== RESPONSIVE: ANNOUNCEMENT BAR & ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .ann-full {
        display: none;
    }

    .ann-short {
        display: inline;
    }

    .hero-content {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .trust-strip .container {
        gap: 18px;
    }

    .trust-divider {
        display: none;
    }

    .trust-label {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .announcement-cta {
        display: none;
    }

    .announcement-text {
        font-size: 0.8rem;
    }

    .hero-content {
        padding: 24px 16px;
    }
}
