

:root {
    /* Brand Colors */
    --primary-color: #fc7f10;
    --secondary-color: #000000;
    --accent-color: #ffa85c;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e0e0e0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    
    /* Typography */
    --font-display: 'Playfair Display',;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.0;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #e66f00;
    border-color: #e66f00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 127, 16, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* ===============================
   NAVBAR BASE
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* ===============================
   LOGOS
================================ */

.left-logo img,
.right-logo img {
    height: 40px;
    display: block;
}

/* ===============================
   DESKTOP MENU
================================ */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ===============================
   MOBILE TOGGLE
================================ */

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100; /* CRITICAL FIX */
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--secondary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===============================
   MOBILE NAV
================================ */

@media (max-width: 768px) {

    .right-logo {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;

        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Hamburger → Close Animation */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}



/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px; /* responsive padding */
    overflow: hidden;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 50%, #fff0e0 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(252,127,16,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* HERO GRID */
.hero-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* Hero Image */
.hero-image {
    animation: fadeInRight 1s ease-out 0.3s backwards;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease-out 1.5s backwards;
}

.scroll-indicator span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-color);
    animation: scrollDown 2s ease-in-out infinite;
}

/* ----------------------------- */
/* ANIMATIONS                    */
/* ----------------------------- */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ----------------------------- */
/* RESPONSIVE BREAKPOINTS        */
/* ----------------------------- */
@media (max-width: 1200px) {
    .hero-wrapper { gap: 40px; }
}

@media (max-width: 992px) {
    .hero-image img { max-width: 400px; }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }
    .hero-subtitle { font-size: 1.3rem; }
    .hero-description { font-size: 1rem; }
    .hero-image img { max-width: 350px; }
}

@media (max-width: 576px) {
    .hero-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .hero-image img { max-width: 300px; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-cta { justify-content: center; }
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-label i {
    margin-right: 8px;
}

.section-title {
    margin-bottom: 0;
}

/* ============================================
   About Section
   ============================================ */
/* ===============================
   ABOUT SECTION
================================ */

.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-main p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.stage-features {
    margin-top: 24px;
    list-style: none;
    padding: 0;
}

.stage-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
}

.stage-features i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* Image */
.about-image img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/* ===============================
   IMPACT SECTION
================================ */

.about-impact {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-impact p {
    max-width: 800px;
    margin: 16px auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.stat-item {
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.stat-item p {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Program Structure Section
   ============================================ */
/* ===============================
   PROGRAM SECTION
================================ */

.program {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
}

/* ===============================
   STAGES LAYOUT
================================ */

.program-stages {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 40px;
}

/* ===============================
   STAGE CARD
================================ */

.stage-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Stage Number (background accent) */
.stage-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.15;
    pointer-events: none;
}

/* ===============================
   STAGE CONTENT
================================ */

.stage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stage-title {
    font-size: 1.75rem;
    margin-bottom: 14px;
}

.stage-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===============================
   FEATURES LIST
================================ */

.stage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
}

.stage-features li:last-child {
    border-bottom: none;
}

.stage-features i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* ===============================
   CONNECTOR
================================ */

.stage-connector {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    align-self: center;
    position: relative;
}

.stage-connector::after {
    content: '→';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

@media (max-width: 1024px) {
    .program-stages {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stage-connector {
        width: 4px;
        height: 40px;
        margin: 0 auto;
    }

    .stage-connector::after {
        content: '↓';
        right: 50%;
        top: 100%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .stage-card {
        padding: 32px;
    }

    .stage-title {
        font-size: 1.5rem;
    }

    .stage-number {
        font-size: 3rem;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .stage-card {
        padding: 24px;
    }

    .stage-title {
        font-size: 1.4rem;
    }
}


/* ============================================
   Eligibility Section
   ============================================ */
.eligibility {
    padding: var(--section-padding) 0;
    background: var(--secondary-color);
    color: var(--white);
}

.eligibility .section-label {
    color: var(--primary-color);
}

.eligibility .section-title {
    color: var(--white);
}

.eligibility-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Responsive Images */
.eligibility-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.eligibility-content {
    max-width: 100%;
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.eligibility-item {
    display: flex;
    gap: 24px;
    align-items: start;
}

.eligibility-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--white);
}

.eligibility-detail h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.eligibility-detail p {
    color: var(--gray);
    margin: 0;
}

/* ---------------------------- */
/* RESPONSIVE BREAKPOINTS       */
/* ---------------------------- */

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .eligibility-wrapper {
        grid-template-columns: 1fr; /* stack columns */
        gap: 40px;
    }

    .eligibility-list {
        gap: 24px;
        margin-top: 32px;
    }
}

/* Small screens (phones) */
@media (max-width: 576px) {
    .eligibility {
        padding: calc(var(--section-padding) / 2) 0;
    }

    .eligibility-wrapper {
        gap: 24px;
    }

    .eligibility-item {
        gap: 16px;
        flex-direction: row; /* icon + text still horizontal, smaller spacing */
    }

    .eligibility-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .eligibility-detail h4 {
        font-size: 1rem;
    }

    .eligibility-detail p {
        font-size: 0.875rem;
    }
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(252, 127, 16, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    text-align: center;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.partners-cta {
    margin-top: 40px;
}

/* ============================================
   Apply Section
   ============================================ */
/* Application Process */
.process-timeline {
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin: 0 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px var(--white);
}
/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--medium-gray);
}
/* ============================================
   Insights Section
   ============================================ */
.insights {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.insight-card {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-color);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.insight-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.insight-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.insight-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.insight-link:hover {
    gap: 12px;
}

.insight-link i {
    transition: var(--transition-smooth);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: calc(var(--section-padding) / 1.5) 0;
    background: var(--white);
}

/* Layout — mobile first (single column) */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Contact details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: 6px;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* Better focus for keyboard users */
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Improve tap targets */
.contact-item a {
    display: inline-block;
    padding: 4px 0;
}

.contact-form button {
    margin-top: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-form button:hover {
    background: var(--primary-dark);
}

.contact-form button:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

@media (min-width: 768px) {
    .contact {
        padding: var(--section-padding) 0;
    }

    .contact-content {
        gap: 60px;
    }

    .contact-details {
        gap: 32px;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
    }
}
@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .contact-details {
        margin-top: 40px;
    }
}

/* ============================================
   Hive Colab Section
   ============================================ */
.hive-colab {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}
.hive-org {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}



.hive-content {
    max-width: 800px;
    margin: 0 auto;
}

.hive-content h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.hive-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-main p {
    color: var(--gray);
    max-width: 500px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    transition: var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    margin: 0;
    font-size: 0.875rem;
}

.footer-note {
    font-size: 0.75rem !important;
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        order: -1;
    }

    .eligibility-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .eligibility-image {
        order: -1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .about-image img,
    .apply-image img {
        max-width: 300px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .stage-card,
    .benefit-card,
    .insight-card {
        padding: 32px 24px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

 /* ============================================
   FAQ HERO SECTION
============================================ */

.faq-hero {
    position: relative;
    min-height: 80vh;
    background: url('/assets/images/faq-hero.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 100px;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.4)
    );
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInDown 1s ease-out;
}

.faq-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-hero-text {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   FAQ SECTION
============================================ */

.faq-section {
    max-width: 1100px;
    margin: -90px auto 0;
    padding: 80px 20px;
    position: relative;
    z-index: 3;
   
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.faq-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(235, 0, 27, 0.25);
}

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    font-size: 1.15rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FAQ ACCORDION
============================================ */

.faq-container {
    display: grid;
    gap: 16px;
   
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease backwards;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(235, 0, 27, 0.15);
}

/* Stagger animation */
.faq-item:nth-child(n) {
    animation-delay: calc(0.08s * var(--i));
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 32px;
    cursor: pointer;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.faq-icon {
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 32px 32px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
============================================ */

.faq-cta {
    background: #fc7f10;
    border-radius: 20px;
    padding: 48px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.faq-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(235, 0, 27, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 95, 0, 0.15), transparent 50%);
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.faq-cta-text {
    color: var(--gray-200);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.faq-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-cta-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS
============================================ */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE
============================================ */

@media (max-width: 768px) {
    .faq-hero {
        min-height: 50vh;
        padding: 90px 16px 60px;
    }

    .faq-section {
        margin-top: -60px;
        padding: 60px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-cta {
        padding: 32px 24px;
    }

    .faq-cta-title {
        font-size: 1.5rem;
    }
}
