/* CSS Variables & Design System */
:root {
    /* Colors */
    --primary: #006838;
    /* Agri Green from screenshot */
    --primary-light: #f0f7f4;
    --primary-dark: #004d2a;
    --secondary: #0f172a;
    --accent: #4ade80;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-white: #FFFFFF;
    --bg-alt: #f4f7f5;
    --bg-dark: #020617;
    --border: rgba(15, 23, 42, 0.08);
    --glass-border: rgba(255, 255, 255, 0.4);
    --primary-glow: rgba(21, 128, 61, 0.15);

    /* Effects */
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1240px;
    --section-padding: 50px 20px;
    --section-padding-mobile: 40px 20px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 30px 60px rgba(21, 128, 61, 0.08);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Background Blobs */
.blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.blob-1 {
    top: -100px;
    right: -100px;
    animation: drift 20s infinite alternate;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: rgba(202, 138, 4, 0.05);
    animation: drift 25s infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

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

/* Noise & Scanline Overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        var(--noise),
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.005), rgba(0, 0, 255, 0.01));
    background-size: 100% 100%, 100% 2px, 3px 100%;
    opacity: 0.06;
    pointer-events: none;
    z-index: 10001;
    /* Above cursor for texture */
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 10001;
    transition: width 0.1s ease;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Typography Utilities */
.highlight {
    color: var(--primary);
}

.text-center {
    text-align: center;
}


/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}



.nav-cta {
    background: var(--primary);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-cta:hover {
    color: #FFFFFF !important;
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(21, 128, 61, 0.3);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Pro Hero Section */
.pro-hero {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    padding: 0 !important;
    overflow: hidden;
}

/* Fallback/Poster if user wants it */
.pro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #020617;
    z-index: 0;
}

/* Hero Perspective Grid */
.hero-grid-bg {
    position: absolute;
    inset: -100px;
    background-image:
        linear-gradient(rgba(21, 128, 61, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 128, 61, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    transform: perspective(1000px) rotateX(60deg) translateY(-200px);
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 1000px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 104, 56, 0.4), rgba(0, 104, 56, 0.7));
    z-index: 2;
    pointer-events: none;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    filter: brightness(0.65) contrast(1.1) saturate(1.1);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-tag-wrapper {
    margin-bottom: 20px;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.grafting-title {
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: clamp(65px, 10vw, 130px) !important;
    font-weight: 800;
    margin-bottom: 16px !important;
    letter-spacing: -3px !important;
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-pro {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 38px) !important;
    font-weight: 600 !important;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pro-desc-wrapper {
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 12px 32px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pro-desc {
    color: #000000 !important;
    font-size: clamp(16px, 2vw, 22px) !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.hero-actions-pro {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-primary-white {
    background: #FFFFFF !important;
    color: var(--primary) !important;
    padding: 14px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-primary-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-pro {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 20px 48px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-outline-pro:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
    transform: translateY(-5px) scale(1.05) !important;
}

.hero-deadline-pro {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 5;
    /* Above overlay and glow */
    width: 100%;
    text-align: center;
}

.mouse-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-image-container {
    display: none;
    /* Removed for the new pro-hero layout */
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(50, 172, 93, 0.2);
}

.btn-outline {
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    font-size: 18px;
    padding: 20px 48px;
}

/* Section Components */
.section {
    padding: var(--section-padding);
}

.section-alt {
    padding: var(--section-padding);
    background-color: var(--bg-alt);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 24px;
}

/* Marquee */
.marquee-container {
    background: var(--bg-dark);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 80px;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Section */
.partners-section {
    background: #ffffff;
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

.partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.partners-title::before,
.partners-title::after {
    content: "";
    flex: 0 1 150px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.partners-title span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 35px auto 10px;
    /* Increased margin from the title */
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-disq img {
    height: 55px;
}

.logo-msis img {
    height: 65px;
}

.logo-sf img {
    height: 60px;
}

.partner-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partners-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }

    .partners-title::before,
    .partners-title::after {
        display: none;
    }

    .partners-grid {
        gap: 40px;
    }

    .partner-logo {
        width: auto;
        /* Remove fixed width */
        height: auto;
        /* Remove fixed height */
    }

    .partner-logo img {
        max-height: 100%;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    /* Dark glass feel if on dark */
    background: white;
    padding: 64px;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px) scale(1.02);
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(21, 128, 61, 0.08), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-main {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border-color: transparent;
}

.bento-wide {
    grid-column: span 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.bento-main .card-icon {
    background: var(--bg-white);
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: var(--primary);
    width: 20px;
}

/* Venture Cards Grid - New Green Card Design */
.venture-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.venture-card {
    background: var(--primary);
    padding: 30px 24px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(21, 128, 61, 0.3);
}

.venture-card:hover::before {
    opacity: 1;
}

.venture-card-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.venture-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.venture-card:hover .venture-card-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.venture-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
    height: 3.2em;
    /* Ensure enough space for 2 lines */
    display: flex;
    align-items: flex-start;
    /* Align text to the top for consistent starting point */
}

.venture-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
    height: 8em;
    /* Fixed height for consistent text box appearance */
    overflow: hidden;
}

/* Responsive adjustments for venture cards */
@media (max-width: 1400px) {
    .venture-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .venture-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .venture-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .venture-card {
        min-height: 280px;
        padding: 32px 24px;
    }
}


/* Program Details */
.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.spec-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.spec-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.spec-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.details-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card.featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* Neo-Glass Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateX(10px);
}

.accordion-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.accordion-summary h4 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

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

.accordion-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 32px;
}

.faq-category {
    margin-top: 60px;
    margin-bottom: 30px;
}

.faq-category-title {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
}

.faq-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.faq-list li strong {
    color: var(--secondary);
}

/* Apply Section */
.apply-card {
    background: var(--bg-dark);
    color: white;
    padding: 120px 40px;
    border-radius: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.apply-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(21, 128, 61, 0.15), transparent 70%);
    pointer-events: none;
}

.apply-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.apply-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.apply-text {
    font-size: 22px;
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
    line-height: 1.5;
}

/* Footer Refinement */
/* Slim Footer (Header-like) */
.footer {
    background: var(--bg-dark);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-slim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-nav-slim {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-slim a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-slim a:hover {
    color: var(--primary);
}

.footer-copy-slim {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-slim {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-nav-slim {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.fade-in,
.fade-in-up {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate.fade-in {
    opacity: 1;
}

.animate.fade-in-up {
    opacity: 1;
    transform: translateY(0) !important;
}

.fade-in-up {
    transform: translateY(40px);
}

/* Timeline Styles */
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 60px 0;
    position: relative;
    padding-bottom: 30px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 55px;
    /* Moved down from 30px */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 55px;
    /* Moved down from 30px */
    left: 0;
    height: 2px;
    background: var(--primary);
    z-index: 1;
    width: 20%;
    /* Current phase fixed */
    transition: width 1s ease;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.timeline-date {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    /* Default for inactive */
    margin-bottom: 35px;
    /* Increased margin to clear the line */
    letter-spacing: 1.5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.active .timeline-date {
    color: var(--primary);
}

.timeline-content h4 {
    font-size: 18px;
    margin-top: 45px;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.timeline-arrow {
    color: var(--border);
    display: flex;
    align-items: center;
    padding-top: 85px;
    /* Align arrows with the lower line */
}


/* Program Stats Grid */
.program-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: -60px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Archetypes Section */
.archetype-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.archetype-card {
    background: #FFFFFF;
    border: none;
    border-radius: 40px;
    padding: 50px 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 440px;
}

.archetype-card.expanded {
    grid-column: 1 / -1;
    background: var(--primary) !important;
    border-color: var(--primary);
    cursor: default;
    min-height: 400px;
    transform: none !important;
}

.archetype-card.hidden-sibling {
    display: none;
}

.archetype-card:not(.expanded):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 95, 45, 0.1);
    border-color: var(--primary);
}

.archetype-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.archetype-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.archetype-icon i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    stroke-width: 1.5px;
}

.archetype-summary {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.archetype-card.expanded .archetype-summary {
    display: none;
}

.archetype-details {
    display: none;
    width: 100%;
    height: 100%;
}

.archetype-card.expanded .archetype-details {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.6s ease forwards;
}

.details-content h3 {
    color: white !important;
    font-size: 32px !important;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 100% !important;
    text-align: left;
}

.details-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    text-align: left;
}

.close-details {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: white;
    cursor: pointer;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-details:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
    border: 1px solid white;
}

.close-details i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-details:hover i {
    transform: rotate(-180deg);
}

.archetype-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: left;
    letter-spacing: -1px;
}

.archetype-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 17px;
    transition: all 0.3s ease;
}

.link-circle {
    width: 48px;
    height: 48px;
    background: #4ade80;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.link-circle i {
    width: 22px;
    height: 22px;
}

.archetype-card:not(.expanded):hover .link-circle {
    background: var(--primary);
    transform: none;
}

.archetype-card:hover .archetype-link {
    color: var(--primary);
}


/* Why Nashik Section */
.nashik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Mentor Section */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.mentor-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.4s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    background: #e5e7eb;
    margin-bottom: 12px;
    border: none;
    object-fit: cover;
    display: block;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0px;
    text-transform: none;
    line-height: 1.1;
    min-height: 2.3em;
    display: flex;
    align-items: flex-end;
}

.mentor-title {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    display: block;
}

.portfolio-video-placeholder {
    height: 260px;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.15;
}

.play-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    margin-left: 4px;
}

.portfolio-info {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
}

.portfolio-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: white;
}

.portfolio-stat {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.section-subtitle.center {
    margin-left: auto;
    margin-right: auto;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
    border: 3px solid var(--bg-white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .timeline-wrapper {
        flex-direction: column;
        border-bottom: none;
        gap: 40px;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline-wrapper::before {
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
    }

    .timeline-progress {
        left: 20px;
        top: 0;
        width: 2px;
        height: 0;
    }

    .timeline-date {
        justify-content: flex-start;
        margin-bottom: 10px;
        height: auto;
    }

    .timeline-content h4 {
        margin-top: 0;
    }

    .timeline-arrow {
        display: none;
    }

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

    .program-stats {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

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

    .bento-wide {
        grid-column: span 2;
    }

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

    .mentor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }

    .nav {
        justify-content: flex-end;
        /* Push hamburger to the right */
        padding: 0 20px;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 40px 20px;
        gap: 24px;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
        font-size: 24px;
        color: var(--text-main);
        z-index: 1001;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .logo img {
        height: 60px !important;
        /* Matches desktop height */
        width: auto;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-image {
        height: 300px;
    }

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

    .bento-main,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    line-height: 1.4;
}

.metrics-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding: 40px;
    border-top: 1px solid var(--border);
}

.metric {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.metric span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

@media (max-width: 768px) {

    .archetype-grid,
    .nashik-grid {
        grid-template-columns: 1fr;
    }

    .metrics-bar {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}

.nashik-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.n-stat {
    text-align: center;
}

.n-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.n-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 992px) {
    .nashik-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

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

.mentor-category-title {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mentor-category-title span {
    font-size: 14px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.mentor-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* Portfolio Section Refinement - Image Inspired */
.portfolio {
    background: #fdfdfd;
    padding: 160px 0;
}

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

.portfolio-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.portfolio-visuals {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-study-badge {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.portfolio-icon-wrapper {
    width: 130px;
    height: 130px;
    background: #f1f8f1;
    color: #2C5F2D;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.portfolio-icon-wrapper i {
    width: 48px;
    height: 48px;
}

.portfolio-info {
    padding-left: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: block;
}

.portfolio-info h4 {
    font-size: 24px;
    font-weight: 800;
    color: #2C5F2D;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.portfolio-detail {
    margin-bottom: 24px;
}

.portfolio-detail strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.portfolio-detail p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.5;
}

.portfolio-traction {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-traction strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.portfolio-traction ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.portfolio-traction li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.portfolio-traction li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .portfolio-card {
        grid-template-columns: 1fr;
    }
}

/* Mentors Tabs Styling */
.mentor-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.mentor-group {
    display: none;
}

.mentor-group.active {
    display: grid;
}

/* Side Navigation Tracking */
.side-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.side-nav-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.side-nav-dot:hover::after,
.side-nav-dot.active::after {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: -5px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-nav-dot:hover::after {
    opacity: 1;
}

.side-nav-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.5);
}

/* Section Separation Polish */
section {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Final Polish for Sorted & Better Layout */
.nashik-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
    border-top: none !important;
}

.n-stat {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 40px 30px !important;
    border-radius: 24px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
}

.n-stat:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--primary) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

.n-value {
    color: var(--primary) !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

.n-label {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
}

@media (max-width: 992px) {
    .nashik-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .nashik-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hero Sections Cleaned Up */

/* Partners Section */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

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

/* Improved Apply Card */
.apply-card.improved {
    background: var(--primary) !important;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white !important;
    border: none !important;
    box-shadow: 0 40px 100px rgba(0, 104, 56, 0.2);
}

.apply-card.improved .apply-title {
    color: white !important;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.apply-card.improved .apply-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.btn-white {
    background: white !important;
    color: var(--primary) !important;
    padding: 18px 50px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
}

.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.yellow-text {
    color: #FFD700 !important;
    font-weight: 700;
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .partners-grid {
        gap: 30px;
    }

    .partner-logo {
        max-width: 140px;
    }

    .apply-card.improved {
        padding: 60px 20px;
    }

    .apply-card.improved .apply-title {
        font-size: 32px;
    }

    .apply-card.improved .apply-text {
        font-size: 18px;
    }
}

/* --- Final Mobile Responsiveness Overrides --- */
@media (max-width: 992px) {
    .grafting-title {
        font-size: clamp(48px, 8vw, 80px) !important;
        letter-spacing: -2px !important;
    }

    .hero-subtitle-pro {
        font-size: 24px !important;
    }

    .faq-sidebar {
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .pro-hero {
        height: auto;
        padding: 120px 0 80px !important;
    }

    .grafting-title {
        font-size: 42px !important;
        line-height: 1.1;
        margin-bottom: 20px !important;
    }

    .hero-subtitle-pro {
        font-size: 20px !important;
        margin-bottom: 24px;
    }

    .pro-desc-wrapper {
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .pro-desc {
        font-size: 16px !important;
    }

    .hero-actions-pro {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-primary-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Archetype Card Mobile Tweaks */
    .archetype-card {
        min-height: auto !important;
        padding: 30px 24px !important;
        border-radius: 24px !important;
    }

    .archetype-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .archetype-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Partner Logos on Mobile */
    .partners-grid {
        flex-direction: column;
        gap: 40px;
        justify-content: center;
    }

    .logo-disq img {
        height: 55px !important;
    }

    .logo-msis img {
        height: 65px !important;
    }

    .logo-sf img {
        height: 60px !important;
    }

    /* Timeline Mobile */
    .timeline-item {
        padding-left: 30px;
    }

    .timeline-date {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .grafting-title {
        font-size: 36px !important;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Opportunities Section */
.opportunities-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.opportunities-box {
    background: var(--primary);
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 104, 56, 0.15);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    margin-bottom: 20px;
}

.opportunity-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.opportunity-item:hover {
    transform: translateY(-5px);
}

.opportunity-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.opportunity-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.opportunity-item h4 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.opportunities-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0;
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive for Opportunities */
@media (max-width: 1200px) {
    .opportunities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .opportunities-box {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .opportunities-section {
        padding: 60px 0;
    }

    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .opportunities-box {
        padding: 40px 24px;
    }

    .opportunities-actions {
        flex-direction: column;
    }

    .btn-outline-white {
        text-align: center;
    }
}

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

/* Success Story Page Styles */
.story-hero {
    background: var(--primary);
    padding: 120px 0 80px;
    color: #FFFFFF;
    text-align: center;
}

.story-hero .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-hero .hero-title {
    font-size: clamp(32px, 5vw, 64px) !important;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    color: #FFFFFF !important;
}

.story-hero .hero-subtitle {
    font-size: clamp(18px, 2vw, 24px) !important;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFFFFF !important;
}

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

.story-section-alt {
    background: var(--bg-alt);
    padding: 80px 0;
}

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

.narrative-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 40px;
}

.quote-highlight {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    border-left: 6px solid var(--primary);
    padding-left: 30px;
    margin: 40px 0;
    font-family: var(--font-heading);
}

.story-image-box {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: #FFFFFF;
    padding: 24px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stakeholder-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stakeholder-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stakeholder-card i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.stakeholder-info h5 {
    font-size: 18px;
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.stakeholder-info p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
}

.marathi-quote-section {
    background: rgba(0, 104, 56, 0.03);
    border: 1px dashed var(--primary);
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: center;
}

.marathi-quote {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    padding: 40px;
    border-radius: 12px;
    color: #FFFFFF;
}

.comparison-card.dark {
    background: var(--primary-dark);
}

.comparison-card.light {
    background: #84a274;
}

.comparison-card h4 {
    font-size: 22px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.comparison-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.stats-banner {
    background: var(--primary);
    color: #FFFFFF;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

.stats-grid-story {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item h2 {
    font-size: 48px !important;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-banner {
    background: var(--primary-dark);
    padding: 100px 0;
    color: #FFFFFF;
}

.testimonial-grid-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.testimonial-box p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}

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

.author-info h6 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.author-info span {
    font-size: 13px;
    opacity: 0.7;
}

.blueprint-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.blueprint-cta:hover {
    background: #FFFFFF;
    color: var(--primary);
}

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

@media (max-width: 768px) {

    .comparison-grid,
    .testimonial-grid-story,
    .stats-grid-story {
        grid-template-columns: 1fr;
    }

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

    .story-hero .hero-title {
        font-size: 32px !important;
    }
}