/* --------- Base --------- */

* {
    box-sizing: border-box;
}

body {
    color: #1e377e;
    line-height: 1.6;
}

.internship-section {
    padding: 5.5rem 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Headings */

.internship-section h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.internship-section h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.internship-section h3 {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.internship-section p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

/* --------- Scroll Animations (like about-us) --------- */

.animate-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------- Hero --------- */

.internship-hero {
    position: relative;
    padding: 4rem 0 5rem;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

/* Mesh container with animated orbs */
.mesh-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.mesh-orb {
    position: absolute;
    border-radius: 14px;
    filter: blur(120px);
    opacity: 0.6;
    animation: drift 10s infinite alternate ease-in-out;
}

.mesh-orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #fbbf24;
}

.mesh-orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #f59e0b;
}

.mesh-orb-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: #b91cf0;
}

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

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Overlay */
.internship-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(7, 11, 25, 0.7));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

/* Content */
.internship-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    z-index: 3;
}

.internship-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.internship-hero-left h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.internship-hero-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #f1f5f9;
    max-width: 580px;
    font-weight: 500;
    line-height: 1.6;
}

.internship-hero-points {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.internship-hero-points .point {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.point-dot {
    width: 10px;
    height: 10px;
    border-radius: 14px;
    background: #fbbf24;
    margin-top: 0.35rem;
}

.internship-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Buttons */

.btn-internship-primary,
.btn-internship-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-internship-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    border: none;
    box-shadow: 0 4px 0 #b45309;
}

.btn-internship-primary:hover {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b45309, 0 10px 20px rgba(245, 158, 11, 0.3);
    color: #0f172a;
}

.btn-internship-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-internship-outline:hover {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Hero right info card */

.internship-hero-right {
    display: flex;
    justify-content: flex-end;
}

.internship-info-card {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(191, 219, 254, 0.6);
    backdrop-filter: blur(10px);
    max-width: 360px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
}

.internship-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bfdbfe;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fefce8;
}

.info-note {
    font-size: 0.85rem;
    color: #e5e7eb;
    margin: 0;
}

/* --------- Shared Section Headers --------- */

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header-center h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-header-center p {
    color: #475569;
    font-size: clamp(1rem, 1.25vw + 0.5rem, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header-left {
    margin-bottom: 2.5rem;
}

.section-header-left h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-header-left p {
    color: #475569;
    font-size: clamp(1rem, 1.25vw + 0.5rem, 1.25rem);
    line-height: 1.6;
}

/* --------- Overview --------- */

.internship-overview {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9, #f8fafc);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: white;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
    border-left: 4px solid #fbbf24;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.overview-card h3 {
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.overview-card p {
    color: #1f4690;
}

/* --------- Timeline --------- */

.internship-timeline {
    background: white;
}

.timeline-wrapper {
    position: relative;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-line {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, #fbbf24, #3b82f6);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.75rem;
    padding-left: 1.75rem;
}

.timeline-dot {
    position: absolute;
    left: 0rem;
    top: 0.2rem;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background: #fbbf24;
    border: 2px solid #1e3a8a;
}

.timeline-card {
    background: #edf3ff;
    /* stronger light blue */
    border: 1px solid #c8d9ff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 22px rgba(0, 60, 150, 0.1);
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.timeline-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.timeline-card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: #1f4690;
    font-size: 0.96rem;
}

/* --------- Work On / Pill Cards --------- */

.internship-work {
    background:
        radial-gradient(at 0% 0%, #bae6fd 0px, transparent 50%),
        radial-gradient(at 100% 0%, #7dd3fc 0px, transparent 50%),
        radial-gradient(at 100% 100%, #a5b4fc 0px, transparent 50%),
        radial-gradient(at 0% 100%, #5eead4 0px, transparent 50%),
        radial-gradient(at 50% 50%, #dbeafe 0px, transparent 50%),
        #f1f5f9;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.pill-card {
    background: white;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #1e3a8a;
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.13);
    background: #eff6ff;
}

/* --------- Outcomes --------- */

.internship-outcomes {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.outcome-card {
    background: white;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-top: 4px solid #3b82f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
}

.outcome-card h2 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.outcome-card ul {
    padding-left: 1.2rem;
    margin: 0;
    color: #1f4690;
    font-size: 0.96rem;
}

/* --------- CTA / Eligibility --------- */

.internship-cta {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: white;
}

.internship-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.internship-cta h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.internship-cta p {
    margin-bottom: 0.75rem;
    color: #e0ecff;
}

.internship-cta ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0;
}

.internship-cta li {
    margin-bottom: 0.35rem;
}

.cta-text {
    max-width: 520px;
}

.cta-actions {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 2rem 2rem 1.75rem;
    border: 1px solid rgba(191, 219, 254, 0.7);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.65);
}

.cta-highlight {
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cta-buttons .btn-internship-primary,
.cta-buttons .btn-internship-outline {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
}

.cta-contact {
    font-size: 0.9rem;
    color: #e0ecff;
}

/* --------- Utilities --------- */

.w-full-sm {
    width: auto;
}

/* --------- Responsive --------- */

@media (max-width: 991px) {
    .internship-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .internship-hero-right {
        justify-content: flex-start;
    }

    .overview-grid,
    .outcomes-grid,
    .pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internship-cta-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .internship-hero {
        padding-top: 2.5rem;
    }

    .internship-hero-left h1 {
        font-size: 2rem;
    }

    .internship-hero-subtitle {
        font-size: 1rem;
    }

    .btn-internship-primary,
    .btn-internship-outline {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .overview-grid,
    .outcomes-grid,
    .pill-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline-wrapper {
        padding-left: 1.25rem;
    }

    .internship-section {
        padding: 3.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .w-full-sm {
        width: 100%;
        text-align: center;
    }


    /* Small spacing utilities used only here */
    .mt-1-rem {
        margin-top: 1rem;
    }

    .mt-0-75-rem {
        margin-top: 0.75rem;
    }

    /* Make the second outcome card a bit tighter so the empty space reduces */
    .outcome-card-slim {
        padding-bottom: 1.25rem;
    }

    /* Deliverables & Eligibility grid inside CTA section */
    .cta-grid-top {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-info-card {
        background: rgba(15, 23, 42, 0.55);
        border-radius: 14px;
        padding: 1.5rem 1.5rem 1.25rem;
        border: 1px solid rgba(191, 219, 254, 0.9);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
        color: #e0ecff;
    }

    .cta-info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: #fefce8;
    }

    .cta-info-card h4 {
        font-size: 0.98rem;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        color: #bfdbfe;
    }

    .cta-info-card ul {
        padding-left: 1.1rem;
        margin: 0;
        font-size: 0.94rem;
    }

    /* Center the bottom CTA card instead of it being aligned in a two-column grid */
    .cta-actions-centered {
        max-width: 540px;
        margin: 0 auto;
    }
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 991px) {
    .cta-grid-top {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Make the first outcomes card span two rows on desktop so
Career + Deliverables stack nicely in the right column */
@media (min-width: 992px) {
    .outcomes-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: flex-start;
    }

    .outcome-card-main {
        grid-row: span 2;
    }
}

/* ============================================
   INTERNSHIP HOME PAGE – UNIQUE LAYOUT
   ============================================ */

/* Hero layout only for internship home page */
.internship-hero-main-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.internship-hero-main-left {
    text-align: left;
    max-width: 640px;
}

.internship-hero-main-left h1 {
    font-size: clamp(2.25rem, 4vw + 0.5rem, 3.25rem);
}

.internship-hero-main-left .internship-hero-subtitle {
    margin-left: 0;
}

.internship-hero-main-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bfdbfe;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.internship-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.internship-meta-pill {
    padding: 0.3rem 0.85rem;
    border-radius: 14px;
    font-size: 0.78rem;
    color: #e5e7eb;
    border: 1px solid rgba(191, 219, 254, 0.6);
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.internship-hero-main-right {
    display: flex;
    justify-content: flex-end;
}

.internship-hero-main-card {
    background: rgba(15, 23, 42, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(191, 219, 254, 0.7);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
    max-width: 360px;
}

.internship-hero-main-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #facc15;
}

.internship-hero-main-card p {
    font-size: 0.92rem;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

.internship-hero-main-card ul {
    padding-left: 1.15rem;
    margin: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.internship-hero-main-card ul li {
    margin-bottom: 0.3rem;
}

/* Duration strip under hero */
.internship-duration-strip {
    background: #020617;
    color: #e5e7eb;
    padding: 1.5rem 0;
}

.internship-duration-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.internship-duration-text {
    font-size: 0.98rem;
    font-weight: 500;
}

.internship-duration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.internship-duration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.internship-duration-badge {
    padding: 0.4rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Internship options grid (1 / 2 / 3 / 6 month) */
.internship-options {
    background: linear-gradient(135deg, #fffbeb, #eff6ff, #fffbeb);
    padding: 80px 0;
}

.internship-options-grid {
    display: grid;
    gap: 1.4rem;
}

@media (min-width: 992px) {
    .internship-options-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .internship-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.internship-option-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 1.3rem 1.1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.internship-option-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a855f7;
    margin-bottom: 0.3rem;
}

.internship-option-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #1e3a8a;
}

.internship-option-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 0.55rem;
}

.internship-option-card ul {
    padding-left: 1.1rem;
    margin: 0;
    font-size: 0.88rem;
    color: #374151;
}

/* Domains section tweak */
.internship-domains {
    background:
        radial-gradient(at 0% 0%, #bae6fd 0px, transparent 50%),
        radial-gradient(at 100% 0%, #7dd3fc 0px, transparent 50%),
        radial-gradient(at 100% 100%, #a5b4fc 0px, transparent 50%),
        radial-gradient(at 0% 100%, #5eead4 0px, transparent 50%),
        radial-gradient(at 50% 50%, #dbeafe 0px, transparent 50%),
        #f1f5f9;
}

.internship-domains .pill-grid {
    margin-top: 0.5rem;
}

/* Who can apply + what you get, using outcomes-grid */
.internship-outcomes-home {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

/* Responsive hero stacking for internship home */
@media (max-width: 991px) {
    .internship-hero-main-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .internship-hero-main-left {
        text-align: center;
        margin: 0 auto;
    }

    .internship-hero-main-left .internship-hero-subtitle {
        margin: 0 auto 1.4rem;
    }

    .internship-hero-main-right {
        justify-content: center;
    }
}

/* ========================================================= */
/* --- ABOUT US COMPONENT STYLES (IMPORTED FOR INTERNSHIP PAGES) --- */
/* ========================================================= */

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

body,
html {
    line-height: 1.6;
    color: #1e377e;
    /* Midnight Blue - Refined Analogic shade */
    scroll-behavior: smooth;
    background-color: #f8fafc;
    overscroll-behavior: none;
}

h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.1rem, 1.25vw + 0.5rem, 1.35rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #475569;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mesh-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.mesh-orb {
    position: absolute;
    border-radius: 14px;
    filter: blur(120px);
    opacity: 0.6;
    animation: drift 10s infinite alternate ease-in-out;
}

.mesh-orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #fbbf24;
    /* Caribbean Green - Triadic pop */
}

.mesh-orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #f59e0b;
    /* Muted Gold */
}

.mesh-orb-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: #b91cf0;
    /* Electric Violet - Triadic pop */
}

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

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(7, 11, 25, 0.7));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 1000px;
}

/* Shadcn style Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.oversized-hero-text {
    color: white;
    margin-bottom: 2rem;
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: -0.04em;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 0.1em;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #FFFFFF 40%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}


.hero-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    color: #f1f5f9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 0 #1e40af;
}

.btn-primary:hover {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e3a8a, 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    box-shadow: 0 4px 0 #b45309;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    /* Lighter amber shimmer */
    color: #0f172a;
    box-shadow: 0 2px 0 #b45309, 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Mission & Vision Section */
.mission-section {
    padding: 7rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9, #f8fafc);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #0f172a;
    font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.25vw + 0.5rem, 1.25rem);
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mission-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
    .mission-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mission-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mission-card,
.vision-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem 2.5rem;
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(160deg, #ffffff 0%, #fef9ee 40%, #fef3c7 100%);
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-bottom: 5px solid #d97706;
    box-shadow:
        0 4px 24px rgba(245, 158, 11, 0.10),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.vision-card {
    background: linear-gradient(160deg, #ffffff 0%, #f0f5ff 40%, #dbeafe 100%);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-bottom: 5px solid #2563eb;
    box-shadow:
        0 4px 24px rgba(59, 130, 246, 0.10),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.mission-card::before {
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.10), transparent 60%);
}

.vision-card::before {
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 60%);
}



.mission-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px -8px rgba(217, 119, 6, 0.18),
        0 8px 16px -4px rgba(245, 158, 11, 0.10);
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px -8px rgba(37, 99, 235, 0.18),
        0 8px 16px -4px rgba(59, 130, 246, 0.10);
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px -4px rgba(217, 119, 6, 0.35);
    border: none;
}

.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35);
    border: none;
}

.mission-card .card-icon svg,
.vision-card .card-icon svg {
    stroke: #ffffff !important;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(4deg);
}

.mission-card h3 {
    text-align: center;
    color: #92400e;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.vision-card h3 {
    text-align: center;
    color: #1e3a8a;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.mission-card p {
    text-align: center;
    color: #451a03;
    margin: 0;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    line-height: 1.7;
}

.vision-card p {
    text-align: center;
    color: #1e3a5f;
    margin: 0;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    line-height: 1.7;
}

.mission-statement {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 3rem;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 1);
}

.mission-statement p {
    font-size: 1.125rem;
    color: #1e3a8a;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 7rem 1rem;
    background:
        radial-gradient(at 0% 0%, #bae6fd 0px, transparent 50%),
        radial-gradient(at 100% 0%, #7dd3fc 0px, transparent 50%),
        radial-gradient(at 100% 100%, #a5b4fc 0px, transparent 50%),
        radial-gradient(at 0% 100%, #5eead4 0px, transparent 50%),
        radial-gradient(at 50% 50%, #dbeafe 0px, transparent 50%),
        #f1f5f9;
    position: relative;
    overflow: hidden;
}

.what-we-do-section .container {
    position: relative;
    z-index: 10;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 14px;
    filter: blur(80px);
    z-index: 0;
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 14px;
    filter: blur(80px);
    z-index: 0;
}



.what-we-do-section h2,
.what-we-do-section .section-subtitle {
    color: #0f172a;
}

.what-we-do-section .section-subtitle {
    color: #334155;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.what-we-do-image {
    position: relative;
    height: 518px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.what-we-do-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.what-we-do-cards {
    display: grid;
    gap: 1rem;
}

.feature-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 14px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 10px 15px -3px rgba(15, 23, 42, 0.1),
        0 20px 25px -5px rgba(15, 23, 42, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 40px 90px rgba(15, 23, 42, 0.2),
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 0 0 2px rgba(6, 182, 212, 0.15);
    border: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #1e40af, #1e377e);
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #475569;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 7rem 1rem;
    background: linear-gradient(135deg, #fffbeb, #eff6ff, #fffbeb);
}



.why-choose-image {
    order: 1;
}

.why-choose-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid #d5e0ff;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-item.has-bg {
    justify-content: flex-end;
}

.bento-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-standard {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 900px) {
    .why-choose-bento {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .why-choose-bento {
        grid-template-columns: 1fr;
    }

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

.bento-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.bento-item.has-bg:hover .bento-bg {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.2) 100%);
    z-index: 1;
}

.bento-content-floating {
    position: relative;
    z-index: 2;
}

.bento-content-floating h4,
.bento-content-floating p {
    color: white !important;
}

.bento-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.bento-item p {
    color: #475569;
    margin: 0;
}

.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.bento-item:hover .reason-icon {
    transform: rotate(5deg) scale(1.1);
}

.reason-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reason-icon.blue {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.bento-item h4 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bento-item p {
    color: #1d4ed8;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Future Vision Section */
.future-vision-section {
    padding: 7rem 1rem;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #581c87, #1e3a8a);
    overflow: hidden;
}

.future-vision-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.future-vision-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.future-vision-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.future-icon {
    display: inline-flex;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.future-vision-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.future-vision-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 3.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 3.5rem;
    transition: transform 0.3s ease;
}

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

.future-vision-card p:first-of-type {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.future-vision-card p:last-of-type {
    color: #bfdbfe;
    margin: 0;
}

.highlight-text {
    color: #f59e0b;
    font-weight: 600;
}

.future-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .future-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.5rem;
    color: #f59e0b;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #bfdbfe;
    margin: 0;
}

/* Learn by Doing Section */
.learn-section {
    padding: 7rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .learn-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.learn-content h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.learn-content>p {
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 14px;
    transition: all 0.2s ease;
    cursor: default;
}

.learn-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.learn-item span {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 500;
}

.learn-image {
    position: relative;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.learn-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.learn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 10% 20%, #f1f5f9 0px, transparent 50%),
        radial-gradient(at 90% 80%, #f59e0b33 0px, transparent 50%),
        radial-gradient(at 90% 10%, #1e40af 0px, transparent 50%),
        radial-gradient(at 10% 90%, #4338ca 0px, transparent 50%),
        #1e3a8a;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.cta-card h2 {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-card>p {
    color: #334155;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-gradient-yellow {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: #0f172a;
    padding: 1rem 2rem;
    box-shadow: 0 4px 0 #b45309;
    border-radius: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gradient-yellow:hover {
    background: linear-gradient(to right, #fcd34d, #f59e0b);
    /* Brighter shimmer and flip */
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b45309, 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-gradient-blue {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 0 #1e40af;
    border-radius: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gradient-blue:hover {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    /* Brighter rich blue shimmer */
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e3a8a, 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.cta-contact {
    padding-top: 2rem;
    border-top: 1px solid #94a3b8;
    color: #1e40af;
}

/* Icon SVGs */
.icon {
    width: 32px;
    height: 32px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .mission-section,
    .what-we-do-section,
    .why-choose-section,
    .future-vision-section,
    .learn-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .what-we-do-image,
    .why-choose-image,
    .learn-image {
        height: 300px;
    }

    .cta-content {
        margin: 25px auto;
    }

    .mission-statement {
        padding: 1.5rem;
    }

    .future-vision-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem 1.25rem;
    }

    .card-icon {
        margin-bottom: 1.5rem;
    }

    .learn-grid {
        gap: 2rem;
    }

    .learn-item {
        padding: 0.5rem 0;
    }

    .learn-item span {
        font-size: 1rem;
    }

    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .btn-gradient-yellow,
    .btn-gradient-blue {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-internship-primary,
    .btn-internship-outline {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}