/* ===== GLOBAL TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

/* HERO SECTION HEADING EXEMPTION */
.hero .heading {
    font-size: clamp(2.8rem, 6.5vw, 6.2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -3px !important;
    line-height: 1.08 !important;
}

p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f0fa;
    overflow-x: hidden;
    color: #1a1a1a;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(160deg, #faf8fc 0%, #f5f0fa 40%, #f7f3fb 70%, #fcfafd 100%); */
}

/* Canvas wave background */
#waveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== DOODLE DECORATIONS ===== */
.deco {
    position: absolute;
    pointer-events: none;
    z-index: 5;
}

/* Sparkle stars */
.sparkle {
    color: #E5A817;
    font-size: 2rem;
    line-height: 1;
    animation: sparklePulse 2.5s ease-in-out infinite;
}

.sparkle-1 {
    top: 8%;
    left: 8%;
    font-size: 1.8rem;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 6%;
    left: 15%;
    font-size: 1rem;
    animation-delay: 0.8s;
}

.sparkle-3 {
    bottom: 18%;
    right: 30%;
    font-size: 1.6rem;
    animation-delay: 1.2s;
}

.sparkle-4 {
    bottom: 25%;
    left: 6%;
    font-size: 1.2rem;
    animation-delay: 0.4s;
}

.sparkle-5 {
    top: 30%;
    right: 8%;
    font-size: 1rem;
    animation-delay: 1.6s;
}

@keyframes sparklePulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.3) rotate(15deg);
    }
}

/* Rocket doodle */
.rocket-deco {
    bottom: 25%;
    right: 12%;
    width: 110px;
    height: 135px;
    top: auto;
}


/* Dashed trajectory */
.trajectory-deco {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 100%;
    padding: 6rem 3rem 3rem;
    text-align: center;
}

/* ===== MAIN HEADING ===== */
.heading {
    font-size: clamp(2.8rem, 6.5vw, 6.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -3px;
    color: #6c32a8;
}

.heading .highlight {
    color: #E5A817;
    position: relative;
}

.heading-line {
    display: block;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(60px);
}

/* ===== IMAGE CAPSULES ===== */
.capsule {
    display: inline-block;
    border-radius: 100px;
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: scale(0.8);
}

.capsule img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.capsule-md img {
    object-fit: cover;
    object-position: center 25%;
}

.capsule:hover img {
    transform: scale(1.08);
}

.capsule-sm {
    width: 130px;
    height: 72px;
    margin: 0 0.4rem;
}

.capsule-md {
    width: 360px;
    height: 95px;
    margin: 0 0.6rem;
}

.capsule-lg {
    width: 300px;
    height: 88px;
    margin: 0 0.5rem;
}

.capsule-xl {
    width: 200px;
    height: 78px;
    margin: 0 0.5rem;
}

/* ===== SUBTITLE & CTA BELOW HERO ===== */
.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    max-width: 420px;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.hero-subtitle strong {
    color: #1a1a1a;
    font-weight: 600;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #7C3AED 0%, #6c32a8 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(107, 33, 168, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(107, 33, 168, 0.4);
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #999, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== IMPACT SECTION (LARGE SCALE REVEAL) ===== */
.impact-v2-container {
    height: 400vh;
}

.impact-v2-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #f7f8fa;
    /* Corporate soft grey */
}

/* Grid Background */
.impact-structural-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.impact-grid-line {
    position: absolute;
    background: rgba(91, 63, 166, 0.065);
}

.impact-grid-line-h {
    height: 1px;
    width: 100%;
}

.impact-grid-line-v {
    width: 1px;
    height: 100%;
}

#impact-h-line-1 {
    top: 25%;
}

#impact-h-line-2 {
    top: 50%;
}

#impact-h-line-3 {
    top: 75%;
}

#impact-v-line-1 {
    left: 25%;
}

#impact-v-line-2 {
    left: 50%;
}

#impact-v-line-3 {
    left: 75%;
}

/* Map Styling */
.impact-v2-map-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.network-svg {
    width: 100%;
    height: 100%;
}

/* Network Nodes */
.network-node {
    opacity: 0;
}

.network-node.node-primary {
    fill: #6A1BFF;
}

.network-node.node-soft {
    fill: #BFA2FF;
}

.network-node.node-small {
    /* Small nodes - minimal or no glow */
    filter: drop-shadow(0 0 6px currentColor);
}

/* Node Glows (background circles) */
.node-glow {
    opacity: 0;
}

/* Network Lines */
.network-line {
    stroke: #6A1BFF;
    stroke-width: 1;
    opacity: 0;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    fill: none;
}

/* Sparkles */
.sparkles {
    opacity: 0;
}

/* Milestone Text */
.milestone-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    fill: #6A1BFF;
    letter-spacing: 0.5px;
}

.milestone-bg {
    filter: drop-shadow(0 4px 12px rgba(106, 27, 255, 0.15));
}

/* Content Overlay */
.impact-v2-content-overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .impact-v2-content-overlay {
        padding: 0 5rem;
    }
}

.impact-v2-inner {
    width: 100%;
    /* max-width: 1152px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .impact-v2-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* Introduction Hook */
.impact-v2-intro {
    margin-bottom: 3rem;
}

.impact-v2-subtitle {
    color: #6c32a8;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-size: 1.1rem !important;
}

.impact-v2-subtitle2 {
    color: #111827;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1rem !important;
    max-width: 650px;
    width: 100%;
}

.impact-v2-title {
    font-weight: 900;
    color: #111827;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 3.5rem !important;
}


.text-enpowerPurple {
    color: #6c32a8;
}

/* Counter Grid */
.impact-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 3rem; */
    align-items: flex-end;
}

/* @media (min-width: 768px) {
            .impact-v2-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        } */

.impact-v2-left {
    display: flex;
    flex-direction: column;
}

/* Dynamic Numbers */
.impact-v2-number-window {
    overflow: hidden;
    height: 100px;
    /* Reduced for mobile */
}

@media (min-width: 768px) {
    .impact-v2-number-window {
        height: 150px;
    }
}

.impact-v2-number-roller {
    display: flex;
    flex-direction: column;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 80px;
    /* Adjusted to fit layout */
    line-height: 1;
    color: #6c32a8;
    font-family: 'Space Grotesk', sans-serif;
}

@media (min-width: 768px) {
    .impact-v2-number-roller {
        font-size: 90px;
    }
}

.impact-v2-roller-item {
    height: 100px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .impact-v2-roller-item {
        height: 150px;
    }
}

/* Labels */
.impact-v2-label-window {
    overflow: hidden;
    height: 3rem;
    /* margin-top: 1.5rem; */
}

.impact-v2-label-roller {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
    /* text-transform: uppercase; */
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .impact-v2-label-roller {
        font-size: 2.25rem;
    }
}

.impact-v2-label-item {
    height: 3rem;
    display: flex;
    align-items: center;
}

/* Descriptions & Progress */
.impact-v2-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.impact-v2-desc-window {
    position: relative;
    height: 4.8rem;
    overflow: hidden;
}

.impact-v2-desc-roller {
    position: absolute;
    inset: 0;
}

.description-item {
    opacity: 0;
    transform: translateY(2rem);
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 24rem;
    position: absolute;
    top: 0;
    left: 0;
}

.impact-v2-progress {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.progress-dot {
    width: 2rem;
    height: 0.25rem;
    background-color: #e5e7eb;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #6c32a8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .heading {
        font-size: clamp(2.5rem, 5.5vw, 4.5rem);
        letter-spacing: -2px;
    }

    .capsule-md {
        width: 280px;
        height: 80px;
    }

    .capsule-lg {
        width: 240px;
        height: 75px;
    }

    .capsule-xl {
        width: 170px;
        height: 68px;
    }

    .capsule-sm {
        width: 110px;
        height: 62px;
    }

    .rocket-deco {
        width: 90px;
        height: 110px;
        right: 8%;
        bottom: 22%;
        top: auto;
    }


}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        /* Hide standard menu on tablets and below for now */
    }
}

@media (max-width: 768px) {
    .impact-v2-map-container {
        display: none;
        /* Map can get too cluttered on pure mobile */
    }

    .impact-v2-number-roller {
        align-items: center;
    }

    .impact-v2-right {
        align-items: center;
        text-align: center;
    }

    .en-main-nav {
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 5rem 1.5rem 2rem;
    }

    .heading {
        font-size: clamp(2rem, 7vw, 3rem);
        letter-spacing: -1.5px;
    }

    .capsule-md {
        width: 180px;
        height: 58px;
    }

    .capsule-lg {
        width: 160px;
        height: 55px;
    }

    .capsule-xl {
        width: 130px;
        height: 50px;
    }

    .capsule-sm {
        width: 90px;
        height: 48px;
    }

    .capsule {
        margin: 0 0.3rem;
        border-width: 2px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }


    .nav-logo-text {
        font-size: 1.1rem;
    }

    /* Hide some deco on mobile */
    .rocket-deco {
        width: 70px;
        height: 85px;
        bottom: 18%;
        right: 5%;
        top: auto;
    }



    .sparkle {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .en-main-nav {
        padding: 0.8rem 1rem;
    }

    .hero-content {
        padding: 4.5rem 1rem 2rem;
    }

    .heading {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
        letter-spacing: -1px;
    }

    .capsule-md,
    .capsule-lg,
    .capsule-xl {
        width: 120px;
        height: 45px;
    }

    .capsule-sm {
        width: 75px;
        height: 40px;
    }

    .capsule {
        margin: 0 0.2rem;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-cta {
        padding: 0.85rem 1.6rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    .rocket-deco {
        display: none;
    }

    .sparkle-2,
    .sparkle-5 {
        display: none;
    }
}

/* ===== STORIES SECTION ===== */
.stories-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.stories-section .container-fluid {
    overflow: visible;
}

.stories-scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.story-card {
    width: 400px;
    height: 550px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.story-image {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 32px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(101, 43, 125, 0.1);
    color: #6c32a8;
    /* using purple accent */
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.stories-heading-container {
    flex-shrink: 0;
    width: 500px;
    /* Take up space in the horizontal scroll */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stories-heading-container h2 {
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
    font-size: 3.4rem !important;
    text-align: center;
}

/* Fun GIF Elements */
.stories-gif {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.stories-gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Recognition GIF - Left */
.gif-left {
    top: -30px;
    left: -15px;
    width: 120px;
    height: 120px;
}

/* Idea GIF - Right */
.gif-right {
    bottom: -20px;
    right: 10px;
    width: 100px;
    height: 100px;
}

@media (max-width: 1024px) {
    .stories-heading-container {
        width: 350px;
    }

}

@media (max-width: 768px) {
    .stories-section {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .stories-heading-container {
        width: 350px;
    }

    .stories-heading-container h2 {
        font-size: 3rem !important;
    }

    .story-card {
        /* width: 75vw;
        max-width: 280px; */
        height: auto;
    }

    .story-image {
        height: auto;
        aspect-ratio: 4/3;
    }

    .stories-nav-arrows {
        top: 1rem;
        right: 1.5rem;
    }

    .nav-arrow {
        width: 38px;
        height: 38px;
    }

    .starburst-left {
        width: 90px;
        height: 90px;
        left: -20px;
    }

    .circle-right {
        width: 70px;
        height: 70px;
        right: 10px;
    }

    .gif-left {
        width: 70px;
        height: 70px;
        top: -15px;
    }

    .gif-right {
        width: 60px;
        height: 60px;
    }
}

/* Horizontal Scroll */
.horizontal-scroll-section {
    display: flex;
    gap: 2rem;
    will-change: transform;
    padding: 1rem 0 3rem 0;
    padding-left: max(5vw, calc((100vw - 1200px) / 2));
    padding-right: calc((100vw - 400px) / 2);
    align-items: center;
    /* overflow-x: auto; - Removed to let GSAP handle horizontal scroll */
    /* Center items vertically */
}

@media (max-width: 768px) {
    .horizontal-scroll-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .horizontal-scroll-section {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

.snap-center {
    scroll-snap-align: center;
}

/* Navigation Buttons */
.stories-nav-arrows {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: #facc48;
    color: #6c32a8;
    cursor: pointer;
    font-weight: 800;
}

.nav-arrow:hover {
    background: #f9c02e;
}

/* Added layout utilities for stories (replacing Bootstrap) */
.p-4 {
    padding: 1.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-start {
    align-items: flex-start;
}

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

.fw-bold {
    font-weight: 700;
}

.fst-italic {
    font-style: italic;
}


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

.text-secondary {
    color: #6c757d;
}

.h5 {
    margin-top: 0;
    line-height: 1.2;
}

/* ===== ENGAGEMENTS SECTION (BENTO GRID) ===== */
.engagements-section {
    padding: 7rem 2rem;
    background-color: #f5f0fa;
    position: relative;
    z-index: 10;
}

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

.engagements-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.engagements-title {
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    font-size: 3.4rem !important;
}

.engagements-title .italic-blue {
    color: #6c32a8;
    font-weight: 800;
}

.engagements-subtitle {
    line-height: 1.6;
    color: #4b5563;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 340px); */
    gap: 1.5rem;
}

.eng-card {
    position: relative;
    border-radius: 1.5rem;
    background: transparent;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    cursor: pointer;
}

.eng-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    text-align: left;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.eng-card:hover .eng-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* Bottom to top flip for wide card */
.eng-card-wide:hover .eng-card-inner {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.eng-card-front,
.eng-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eng-card-front {
    background: #1a1a1a;
    color: white;
    z-index: 2;
}

.eng-card-back {
    border: 1px solid #6c32a841;
    background: linear-gradient(135deg, #efdeff 0%, #fffce3 100%);
    color: #1a1a1a;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

/* Bottom to top flip back side for wide card */
.eng-card-wide .eng-card-back {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.eng-card-wide {
    grid-column: span 3;
}

/* .eng-card-tall {
            grid-column: 3;
            grid-row: span 2;
        } */

.eng-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s ease;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 67%) 0%, rgb(107 33 168 / 16%) 60%, transparent 100%);
    z-index: 1;
}

.overlay-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1a1a1a8a 0%, rgb(107 33 168 / 16%) 100%);
    z-index: 1;
}

.overlay-purple {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1a1a1a8a 0%, rgb(107 33 168 / 16%) 100%);
    z-index: 1;
}

.eng-card-front:hover .eng-bg {
    transform: scale(1.05);
}

.eng-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.eng-card-wide .eng-content {
    justify-content: center;
    width: 75%;
}

/* .eng-card-light .eng-content {
            justify-content: flex-start;
        } */

.eng-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.eng-icon .material-icons {
    font-size: 28px;
    color: #fff;
}

.eng-content h3 {
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-size: 1.2rem !important;
}


.eng-content p {
    line-height: 1.5;
    opacity: 1;
    font-weight: 900;
    font-size: 0.9rem !important;
}

.eng-card-light {
    background: #e9f5ee;
    color: #111827;
}

.eng-card-light .eng-bg {
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.eng-card-light .eng-icon {
    background: rgba(107, 33, 168, 0.1);
    border: 1px solid rgba(107, 33, 168, 0.2);
}

.eng-card-light .eng-icon .material-icons {
    color: #6c32a8;
}

.eng-card-light .eng-content p {
    color: #4b5563;
    font-weight: 500;
}

/* Back side content styling */
.eng-back-content {
    width: 100%;
}

.eng-back-content h3 {
    font-size: 1.1rem !important;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.eng-back-content p {
    font-size: 0.78rem !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Future Skills Lab - Front Side Font Sizes */
.eng-content h3.eng-content-fsl-head {
    font-size: 1.5rem !important;
    font-weight: 900;
}

.eng-content p.eng-content-fsl-para {
    font-size: 1.2rem !important;
    font-weight: 600;
}

/* Future Skills Lab - Back Side Font Sizes */
.eng-back-content h3.eng-back-content-fsl-head {
    font-size: 1.5rem !important;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.eng-back-content p.eng-back-content-fsl-para {
    font-size: 1.2rem !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

a.eng-back-btn.eng-back-btn-fsl {
    font-size: 1.1rem !important;
}

/* .eng-back-list {
    margin-bottom: 1.5rem;
}

.eng-back-list li {
    font-size: 0.67rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
} */

.eng-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #4a307d;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    border: 1px solid rgba(124, 53, 152, 0.3);
    transition: all 0.3s ease;
    font-size: 0.7rem !important;
}

.eng-back-btn:hover {
    background: rgba(138, 40, 199, 0.3);
    transform: translateX(5px);
    color: #fff;
}

.eng-back-btn .material-icons {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.eng-back-btn:hover .material-icons {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .eng-card-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 380px;
    }

    .eng-card-wide {
        grid-column: span 2;
        min-height: 400px;
    }

    .eng-card {
        min-height: 380px;
    }

    .eng-card-inner {
        min-height: 380px;
    }

    .eng-back-content h3 {
        font-size: 1.5rem !important;
    }

    .eng-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .engagements-section {
        padding: 3.5rem 1rem;
        overflow: hidden;
    }

    .engagements-header {
        margin-bottom: 2.5rem;
    }

    .engagements-title {
        font-size: 2rem !important;
        letter-spacing: -0.5px;
    }

    .engagements-subtitle {
        font-size: 0.9rem;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
        width: 100%;
        overflow: hidden;
        gap: 1rem;
    }

    .eng-card {
        min-height: 300px;
    }

    .eng-card-inner {
        min-height: 300px;
    }

    .eng-card-wide {
        grid-column: 1;
        min-height: 300px;
    }

    .eng-card-wide .eng-content {
        width: 100%;
        justify-content: flex-end;
    }

    .eng-content {
        padding: 1.5rem;
    }

    .eng-content h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem;
    }

    .eng-content p {
        font-size: 0.8rem !important;
    }

    .eng-content h3.eng-content-fsl-head {
        font-size: 1.15rem !important;
    }

    .eng-content p.eng-content-fsl-para {
        font-size: 0.9rem !important;
    }

    .eng-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .eng-icon .material-icons {
        font-size: 22px;
    }

    .overlay-side {
        background: linear-gradient(to top, rgb(107 33 168 / 41%) 0%, rgb(107 33 168 / 17%) 60%, transparent 100%);
    }

    .eng-card-back {
        padding: 1.5rem;
    }

    .eng-back-content {
        padding: 0;
    }

    .eng-back-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    .eng-back-content p {
        font-size: 0.75rem !important;
        margin-bottom: 1rem;
    }

    .eng-back-content h3.eng-back-content-fsl-head {
        font-size: 1.12rem !important;
    }

    .eng-back-content p.eng-back-content-fsl-para {
        font-size: 0.9rem !important;
    }

    .eng-features li {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .eng-back-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem !important;
    }

    a.eng-back-btn.eng-back-btn-fsl {
        font-size: 0.85rem !important;
    }

    /* Disable flip on mobile - use tap instead */
    .eng-card:hover .eng-card-inner,
    .eng-card-wide:hover .eng-card-inner {
        transform: none;
    }

    .eng-card.flipped .eng-card-inner {
        transform: rotateY(180deg);
    }

    .eng-card-wide.flipped .eng-card-inner {
        transform: rotateX(180deg);
    }
}

@media (max-width: 480px) {
    .engagements-section {
        padding: 2.5rem 0.75rem;
    }

    .engagements-title {
        font-size: 1.6rem !important;
    }

    .engagements-subtitle {
        font-size: 0.85rem;
    }

    .eng-card,
    .eng-card-inner,
    .eng-card-wide {
        min-height: 260px;
    }

    .eng-content {
        padding: 1.2rem;
    }

    .eng-content h3 {
        font-size: 0.95rem !important;
    }

    .eng-content p {
        font-size: 0.75rem !important;
    }

    .eng-card-back {
        padding: 1.2rem;
    }

    .eng-back-content h3 {
        font-size: 1rem !important;
    }

    .eng-back-content p {
        font-size: 0.7rem !important;
    }
}

/* ===== IMPACT PROGRAMS SECTION ===== */
.ip-scroll-container {
    position: relative;
}

.ip-sticky-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    /* background-color: #f4f1eb; */
}

@media (max-width: 991px) {
    .ip-sticky-wrapper {
        align-items: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
        height: auto;
        min-height: auto;
        overflow-y: visible;
    }

    .ip-scroll-container {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .ip-sticky-wrapper {
        padding: 2.5rem 1rem;
    }

    .ip-headline {
        font-size: 1.78rem !important;
        line-height: 1.25;
    }

    .ip-subtext {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .ip-badge {
        font-size: 0.85rem;
        padding: 0.35rem 0.8rem;
    }

    .ip-glass-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .ip-slideshow {
        border-radius: 14px;
    }

    .ip-program-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .ip-module-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .ip-module-icon-wrap svg {
        width: 20px;
        height: 20px;
    }

    .ip-module-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.35rem;
    }

    .ip-module-desc {
        font-size: 0.82rem !important;
        line-height: 1.5;
    }

    .ip-blob {
        display: none;
    }

    .ip-structural-grid {
        display: none;
    }

    .ip-connector-v,
    .ip-connector-h {
        display: none;
    }
}

@media (max-width: 480px) {
    .ip-sticky-wrapper {
        padding: 2rem 0.75rem;
    }

    .ip-headline {
        font-size: 1.5rem !important;
    }

    .ip-subtext {
        font-size: 0.85rem;
    }

    .ip-module-title {
        font-size: 1rem !important;
    }

    .ip-module-desc {
        font-size: 0.78rem !important;
    }

    .ip-program-card {
        padding: 1.2rem;
    }
}

/* Grid Lines */
.ip-structural-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ip-grid-line {
    position: absolute;
    background: rgba(91, 63, 166, 0.08);
}

.ip-grid-line-h {
    height: 1px;
    width: 100%;
    opacity: 0;
}

.ip-grid-line-v {
    width: 1px;
    height: 100%;
    opacity: 0;
}

#ip-h-line-1 {
    top: 25%;
}

#ip-h-line-2 {
    top: 50%;
}

#ip-h-line-3 {
    top: 75%;
}

#ip-v-line-1 {
    left: 25%;
}

#ip-v-line-2 {
    left: 50%;
}

#ip-v-line-3 {
    left: 75%;
}

/* Badge */
.ip-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid #c5b5f0;
    background: #ede8f9;
    color: #6c32a8;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Top Row: Left text + Right slideshow */
.ip-top-row {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1180px;
    margin: 0 auto;
}

.ip-top-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
}

.ip-top-right {
    flex: 1;
    max-width: 500px;
}

.ip-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
}

.ip-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ip-slide.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .ip-top-row {
        flex-direction: column;
        gap: 30px;
    }

    .ip-top-left {
        align-items: center;
        text-align: center;
    }

    .ip-top-right {
        max-width: 100%;
    }
}

/* Headline */
.ip-headline {
    line-height: 1.15;
    color: #1c1430;
    margin: 0;
}

.ip-headline span {
    color: #6c32a8;
}

.ip-subtext {
    color: #6b6580;
    line-height: 1.7;
    max-width: 700px;
}

/* CTA Button */
.ip-glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    background: #6c32a8;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(91, 63, 166, 0.25);
}

.ip-glass-btn:hover {
    background: #4a307d;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 63, 166, 0.35);
}

.ip-glass-btn svg {
    width: 18px;
    height: 18px;
}

/* Program Matrix Wrapper */
.ip-program-matrix-wrap {
    position: relative;
}

.ip-connector-v {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(91, 63, 166, 0.35), transparent);
    height: 0;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.ip-connector-h {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 63, 166, 0.35), transparent);
    width: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}

/* Program Cards */
.ip-program-card {
    background: #ffffff;
    border: 1px solid rgba(91, 63, 166, 0.15);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(91, 63, 166, 0.10);
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

.ip-program-card:hover {
    box-shadow: 0 16px 56px rgba(91, 63, 166, 0.18);
}

.ip-module-icon-wrap {
    width: 52px;
    height: 52px;
    background: #ede8f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ip-module-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #6c32a8;
}

.ip-module-title {
    font-weight: 700;
    color: #1c1430;
    margin-bottom: 0.5rem;
    font-size: 1.25rem !important;
}

.ip-module-desc {
    color: #6b6580;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem !important;
}

/* Decorative Blobs */
.ip-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ip-blob-1 {
    width: 380px;
    height: 380px;
    background: rgba(91, 63, 166, 0.07);
    top: -80px;
    right: -80px;
}

.ip-blob-2 {
    width: 380px;
    height: 380px;
    background: rgba(59, 130, 246, 0.05);
    bottom: -80px;
    left: -80px;
}

.ip-pos-relative {
    position: relative;
}

.ip-z-10 {
    z-index: 10;
}

/* Impact Programs Scroll Animations */
.ip-fade-in-content {
    opacity: 1;
    transform: translateY(0);
}

.ip-fade-in-content.ip-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ip-slide-in-card {
    opacity: 1;
    transform: translateY(0);
}

.ip-slide-in-card.ip-card-animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
           PARTNERS SECTION STYLES
           ======================== */

.partners-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    background-color: rgba(249, 249, 249, 0.4);
}

.partners-section .section-label {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-size: 2.8rem;
    font-weight: 800;
}

.marquee-container {
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.marquee-row-rtl,
.marquee-row-ltr {
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .marquee-row-rtl,
    .marquee-row-ltr {
        gap: 2rem;
    }

    .partners-section .section-label {
        font-size: 2rem !important;
    }
}

.marquee-row-rtl {
    animation: scroll-rtl 30s linear infinite;
}

.marquee-row-ltr {
    animation: scroll-ltr 30s linear infinite;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c757d;
    transition: color 0.3s ease;
    cursor: pointer;
}

.partner-name:hover {
    color: #FFD700;
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 180px;
    height: 100px;
    animation: fadeInLogo 0.8s ease-in-out;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 5px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.partner-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── Lets Connect Card Styles ── */
.cta-section {
    padding: 80px 20px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lets-connect-card {
    position: relative;
    width: 100%;
    max-width: 1100px;
    border-radius: 40px;
    background: linear-gradient(135deg, #efdeff 0%, #fffce3 100%);
    border: 1px solid #e9d5ff;
    cursor: default;
    overflow: visible;
}

.glow-border {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 5px solid rgba(107, 33, 168, 0.04);
    z-index: 10;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 40px;
    background: radial-gradient(300px circle at var(--mx, -9999px) var(--my, -9999px),
            rgba(107, 33, 168, 0.4),
            transparent 70%);
    -webkit-mask:
        linear-gradient(#000, #000) content-box exclude,
        linear-gradient(#000, #000);
    mask:
        linear-gradient(#000, #000) content-box exclude,
        linear-gradient(#000, #000);
    padding: 5px;
}

#arrow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

#arrow-path {
    fill: none;
    stroke: #6c32a8;
    stroke-width: 2;
    stroke-dasharray: 6 8;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 95px 60px;
}

@media (max-width: 768px) {
    .card-body {
        padding: 30px 20px;
    }
}

.card-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 22px;
}

.card-subtext {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    max-width: 800px;
}

.card-subtext p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: #374151;
}

.card-subtext p.bold {
    font-weight: 700;
    color: #111827;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border-radius: 100px;
    background: rgba(245, 245, 245, 0.9);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 3;
    box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 2px 0;
    transition: background 0.25s, transform 0.2s;
}

.connect-btn:hover {
    background: #fff;
    transform: scale(1.04);
    color: #000;
}

/* ===== CINEMATIC SERIES VIDEO SECTION ===== */
:root {
    --blue-accent: #3565E0;
    --dark-heading: #1a1f36;
    --body-text: #5a6178;
    --light-bg: #f3f5f9;
    --card-radius: 20px;
    --white: #ffffff;
}

.cinematic-section {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    padding: 60px 0 60px 80px;
    gap: 0;
    background: var(--white);
}

/* LEFT CONTENT */
.left-content {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.label-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.label-line {
    width: 48px;
    height: 3px;
    background: var(--blue-accent);
    border-radius: 2px;
}

.label-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--blue-accent);
    text-transform: uppercase;
}

.main-heading {
    font-size: 44px !important;
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark-heading);
    margin-bottom: 32px;
}

.main-heading .italic-blue {
    font-style: italic;
    color: #6c32a8;
    font-weight: 800;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 32px;
    max-width: 380px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--dark-heading);
    margin-bottom: 80px;
}

.channel-link span {
    font-weight: 400;
}

.channel-link a {
    color: var(--dark-heading);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--blue-accent);
    text-decoration-thickness: 2px;
}

.channel-link .arrow {
    font-size: 14px;
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

/* Navigation */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0px 20px 0px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d0d5dd;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f9c02e;
}

.nav-btn:hover {
    border-color: #f9c02e;
    background-color: #f9c02e;
    color: #730092;
}

.nav-btn svg {
    width: 16px;
    height: 16px;
}

.slide-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-left: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.slide-counter .current {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-heading);
}

.slide-counter .divider {
    font-size: 16px;
    color: #b0b5c3;
    margin: 0 2px;
}

.slide-counter .total {
    font-size: 16px;
    color: #b0b5c3;
    font-weight: 400;
}

/* RIGHT CAROUSEL */
.right-carousel {
    flex: 1;
    background: #f5f0fa;
    border-radius: 32px 0 0 32px;
    padding: 50px 0 50px 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card {
    flex: 0 0 300px;
    height: 440px;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.video-card .card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.play-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
    margin-left: 2px;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
}

.card-title {
    font-size: 22px !important;
    font-weight: 700;
    color: white;
    line-height: 1.25;
}

/* Progress bar */
.progress-bar {
    position: absolute;
    bottom: 30px;
    left: 50px;
    width: 120px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: #4a307d;
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Mobile Layout */
@media (max-width: 1024px) {
    .cinematic-section {
        flex-direction: column;
        padding: 40px 24px;
    }

    .left-content {
        flex: none;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .right-carousel {
        border-radius: 24px;
        padding: 30px 0 30px 30px;
    }

    .main-heading {
        font-size: 48px;
    }
}

/* ===== NEW COUNTER SECTION ===== */
.new-counter-section {
    padding: 80px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.new-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.new-counter-item {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease;
}

.new-counter-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            #9333EA 0deg,
            #F59E0B 90deg,
            #9333EA 180deg,
            #F59E0B 270deg,
            #9333EA 360deg);
    opacity: 0;
    animation: rotateBorder 4s linear infinite, fadeInOut 8s ease-in-out infinite;
}

.new-counter-item:nth-child(1) {
    animation: hideBorder 8s ease-in-out infinite;
    animation-delay: 0s;
}

.new-counter-item:nth-child(1)::before {
    animation-delay: 0s, 0s;
}

.new-counter-item:nth-child(2) {
    animation: hideBorder 8s ease-in-out infinite;
    animation-delay: 2s;
}

.new-counter-item:nth-child(2)::before {
    animation-delay: 0s, 2s;
}

.new-counter-item:nth-child(3) {
    animation: hideBorder 8s ease-in-out infinite;
    animation-delay: 4s;
}

.new-counter-item:nth-child(3)::before {
    animation-delay: 0s, 4s;
}

.new-counter-item:nth-child(4) {
    animation: hideBorder 8s ease-in-out infinite;
    animation-delay: 6s;
}

.new-counter-item:nth-child(4)::before {
    animation-delay: 0s, 6s;
}

.new-counter-item::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 18px;
    z-index: 1;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hideBorder {
    0% {
        border-color: #e0e0e0;
    }

    12.5% {
        border-color: transparent;
    }

    25% {
        border-color: #e0e0e0;
    }

    100% {
        border-color: #e0e0e0;
    }
}

.new-counter-item>* {
    position: relative;
    z-index: 2;
}

.new-counter-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-counter-number::after {
    content: '+';
    font-size: 32px;
    color: #f9c02e;
    margin-left: 4px;
}

.new-counter-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--body-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .new-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 0 20px;
    }
}

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

    .new-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .new-counter-item {
        padding: 28px 14px;
        border-radius: 16px;
    }

    .new-counter-item::after {
        border-radius: 14px;
    }

    .new-counter-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .new-counter-number::after {
        font-size: 22px;
    }

    .new-counter-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .new-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }

    .new-counter-item {
        padding: 22px 10px;
    }

    .new-counter-number {
        font-size: 30px;
    }

    .new-counter-number::after {
        font-size: 18px;
    }

    .new-counter-label {
        font-size: 10px;
    }
}

/* Training & Certificates Section - CSS REMOVED */

/* ===== ARCHITECTURE SCROLL SECTION ===== */
/* ===== IFT SECTION ===== */
.ift-section {
    padding: 100px 20px;
    background: #ffffff;
}

.ift-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem !important;
    font-weight: 800;
    color: #1a1a1a !important;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 40px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    color: #6c32a8 !important;
}

.ift-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ift-left {
    flex: 1;
}

.ift-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d2549;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ift-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(18, 18, 18, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ift-explore-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6c32a8 0%, #8a4fc5 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 50, 168, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ift-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 50, 168, 0.4);
    color: white;
}

.ift-right {
    flex: 1;
}

.ift-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ift-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ift-video-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #6c32a8;
    opacity: 0.7;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ift-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .ift-title {
        font-size: 2rem !important;
        letter-spacing: -1px;
    }

    .ift-section {
        padding: 50px 16px;
    }

    .ift-subtitle {
        font-size: 0.95rem;
    }

    .ift-desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .ift-explore-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .ift-video-wrapper {
        width: 400px;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .ift-title {
        font-size: 1.6rem !important;
    }
}

.arch-scroll-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

.arch-scroll-spacer {
    width: 100%;
    height: 0.5vh;
}

.arch-scroll {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    max-width: 1280px;
    margin-inline: auto;
}

.arch-scroll__left {
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

@media (max-width: 768px) {
    .arch-scroll__left {
        min-width: 100%;
    }
}

.arch-scroll__left .arch-scroll__info {
    max-width: 456px;
    height: 100vh;
    display: grid;
    place-items: center;
}

.arch-scroll__left .arch-scroll__info h2.header {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.84px;
}

.arch-scroll__left .arch-scroll__info p.desc {
    color: rgba(18, 18, 18, 0.8);
    font-size: 18px;
    letter-spacing: -0.54px;
    margin-block: 6px 28px;
    line-height: normal;
}

.arch-scroll__left .arch-scroll__info a.link {
    text-decoration: none;
    padding: 16px 18px;
    color: inherit;
    border-radius: 40px;
    display: flex;
    gap: 4px;
    width: fit-content;
    align-items: center;
}

.arch-scroll__right {
    flex-shrink: 1;
    height: 100vh;
    width: 100%;
    max-width: 540px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.arch-scroll__right .img-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 400px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.arch-scroll__right .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .arch-scroll {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .arch-scroll {
        flex-direction: column;
        gap: 20px;
    }

    .arch-scroll__left,
    .arch-scroll__right {
        display: contents;
    }

    .arch-scroll__right {
        height: auto;
        max-width: 100%;
    }

    .arch-scroll__right .img-wrapper {
        position: static;
        transform: none;
        height: 360px;
        width: 100%;
        margin-bottom: 20px;
    }

    .arch-scroll__left .arch-scroll__info {
        height: auto;
        padding: 20px 0;
    }
}

@media (max-width: 560px) {
    .arch-scroll {
        gap: 12px;
    }

    .arch-scroll-container {
        padding: 10px;
    }

    .arch-scroll__right .img-wrapper {
        border-radius: 10px;
        height: 280px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 5rem 0 2.5rem;
    position: relative;
    z-index: 10;
}

footer .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1400px) {
    footer .container {
        max-width: 1320px;
    }
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #1e1022;
}

.footer-social:hover {
    background: #6c32a8;
    color: white;
}

.footer-link {
    color: #666 !important;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif !important;
}

.footer-link:hover {
    color: #6c32a8 !important;
}

footer h4,
footer .h5 {
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif !important;
}

footer p {
    color: #666;
    font-size: 0.95rem !important;
    line-height: 1.6;
}

/* ===== ALLIANCE SECTION STYLES ===== */
.alliance-grid-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(91, 63, 166, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.alliance-glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(91, 63, 166, 0.1);
    border-radius: 1rem;
}

.alliance-hero-section {
    position: relative;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

.alliance-hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.alliance-orb {
    position: absolute;
    border-radius: 50%;
}

.alliance-orb-1 {
    top: 25%;
    left: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(91, 63, 166, 0.1);
    filter: blur(100px);
}

.alliance-orb-2 {
    bottom: 25%;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(91, 63, 166, 0.2);
    filter: blur(120px);
}

.alliance-partnership-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background: rgba(91, 63, 166, 0.1);
    color: #6c32a8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.alliance-hero-heading {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .alliance-hero-heading {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    .alliance-hero-heading {
        font-size: 2.5rem !important;
    }

    .alliance-hero-section {
        height: 40vh;
    }

    .alliance-tags-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
}

.alliance-text-primary {
    color: #6c32a8;
}

.alliance-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.alliance-scroll-indicator span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.alliance-scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, #6c32a8, transparent);
}

.alliance-assembly-section {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    padding-bottom: 4rem;
    /* background: #f5f0fa; */
}

.alliance-wrapper {
    margin-top: 10rem;
    margin-bottom: 10rem;
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.alliance-wrapper-with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .alliance-wrapper-with-image {
        flex-direction: row;
        gap: 3rem;
        align-items: stretch;
    }
}

.alliance-image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 1024px) {
    .alliance-image-container {
        flex: 0 0 32%;
        max-width: none;
    }
}

.alliance-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.alliance-wrapper-with-image .alliance-glass-content {
    flex: 1;
    text-align: left;
}

.alliance-glass-content {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .alliance-glass-content {
        padding: 4rem;
    }
}

.alliance-glass-content .alliance-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(91, 63, 166, 0.05);
    border-bottom-left-radius: 9999px;
    pointer-events: none;
}

.alliance-quote-text {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
}

@media (min-width: 768px) {
    .alliance-quote-text {
        font-size: 1.5rem;
    }
}

.alliance-tags-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.alliance-tag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.alliance-tag-item .material-symbols-outlined {
    color: #6c32a8;
}

.alliance-tag-item span:last-child {
    font-size: 0.875rem;
    font-weight: 700;
}

.alliance-main-wrapper {
    position: relative;
    overflow: hidden;
}

/* ===== ENPOWER PHILOSOPHY SECTION ===== */
.enpower-section {
    position: relative;
    z-index: 50;
    width: 100%;
    background: #f5f0fa;
    padding: 0;
    margin: 0;
}

.enpower-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enpower-container {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1360px;
    height: calc(100vh - 80px);
    border-radius: 32px;
    /* background: #ffffff; */
    display: flex;
    align-items: center;
    overflow: visible;
    /* border: 1px solid rgba(0, 0, 0, .06); */
    /* box-shadow: 0 4px 60px rgba(0, 0, 0, .04), 0 1px 3px rgba(0, 0, 0, .03); */
}

.enpower-left-content {
    width: 40%;
    padding: 60px 40px 60px 70px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .enpower-left-content .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: #7c3aed;
            margin-bottom: 22px;
            opacity: 0;
            transform: translateY(16px);
        } */

.enpower-left-content .tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #7c3aed;
    border-radius: 1px;
}

.enpower-left-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4rem !important;
    font-weight: 700;
    line-height: 1.18;
    color: #1e1b2e;
    margin-bottom: 24px;
}

.enpower-left-content h2 span {
    color: #6c32a8;
}

.enpower-left-content .desc {
    font-size: .92rem;
    line-height: 1.75;
    color: #5c566d;
    font-weight: 400;
}

.enpower-left-content .desc p+p {
    margin-top: 14px;
}

.enpower-left-content .cta-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 13px 32px;
    background: #6c32a8;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s, transform .2s;
    width: fit-content;
}

.enpower-left-content .cta-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px) !important;
}

.enpower-right-cards {
    width: 60%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enpower-philosophy-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.enpower-card-stack {
    position: relative;
    width: 320px;
    height: 330px;
}

.enpower-benefit-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 34px;
    will-change: transform, opacity;
    overflow: hidden;
    transform-origin: 50% 50%;
}

.enpower-benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    pointer-events: none;
}

.enpower-benefit-card[data-index="0"] {
    background: linear-gradient(155deg, #9e44c5 0%, #7f379d 50%, #652b7d 100%);
    box-shadow: 0 12px 45px rgba(124, 58, 237, .25);
}

.enpower-benefit-card[data-index="1"] {
    background: linear-gradient(155deg, #fcd664 0%, #f7ce55 50%, #facd48 100%);
    box-shadow: 0 10px 40px rgba(245, 158, 11, .25);
}

.enpower-benefit-card[data-index="2"] {
    background: linear-gradient(155deg, #5b21b6 0%, #4c1d95 50%, #3b0f85 100%);
    box-shadow: 0 8px 35px rgba(91, 33, 182, .25);
}

.enpower-benefit-card[data-index="3"] {
    background: linear-gradient(155deg, #fbd870 0%, #ffd967 50%, #facd48 100%);
    box-shadow: 0 6px 30px rgba(234, 179, 8, .25);
}

.enpower-benefit-card[data-index="4"] {
    background: linear-gradient(155deg, #6d28d9 0%, #5b21b6 50%, #4c1d95 100%);
    box-shadow: 0 4px 25px rgba(109, 40, 217, .25);
}

.enpower-benefit-card .card-icon {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1;
    opacity: 0.9;
}

.enpower-benefit-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.enpower-benefit-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.22;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.enpower-benefit-card[data-index="1"] .card-title,
.enpower-benefit-card[data-index="3"] .card-title {
    color: #1e1b2e;
}

.card-subpoints {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.card-subpoints li {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.card-subpoints li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.enpower-benefit-card[data-index="1"] .card-subpoints,
.enpower-benefit-card[data-index="3"] .card-subpoints {
    color: rgba(30, 27, 46, 0.85);
}

.enpower-benefit-card[data-index="1"] .card-subpoints li::before,
.enpower-benefit-card[data-index="3"] .card-subpoints li::before {
    color: rgba(30, 27, 46, 0.6);
}

/* Radial Scroll Visualization Styles */

@media(max-width:1024px) {
    .enpower-container {
        width: calc(100% - 40px);
        height: calc(100vh - 40px);
    }

    .enpower-left-content {
        padding: 40px 30px 40px 40px;
    }

    .enpower-card-stack {
        width: 270px;
        height: 280px;
    }

    .enpower-benefit-card .card-title {
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
    }

    .card-subpoints {
        font-size: 0.75rem;
    }

    .card-subpoints li {
        margin-bottom: 0.4rem;
    }
}

@media(max-width:768px) {
    .enpower-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }

    .enpower-container {
        flex-direction: column;
        width: calc(100% - 24px);
        height: auto;
        min-height: auto;
        border-radius: 24px;
    }

    .enpower-left-content {
        width: 100%;
        padding: 34px 26px 16px;
    }

    .enpower-left-content .desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .enpower-right-cards {
        width: 100%;
        height: auto;
        min-height: 320px;
    }

    .enpower-card-stack {
        width: 220px;
        height: 230px;
    }

    .enpower-benefit-card .card-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .enpower-benefit-card .card-icon {
        width: 50px;
        height: 50px;
        top: 26px;
        right: 26px;
    }

    .card-subpoints {
        font-size: 0.7rem;
    }

    .card-subpoints li {
        margin-bottom: 0.35rem;
        padding-left: 1rem;
    }

    .enpower-left-content h2 {
        font-size: 1.7rem;
    }

}

@media(max-width:480px) {
    .enpower-left-content {
        padding: 24px 18px 12px;
    }

    .enpower-left-content h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .enpower-left-content .desc {
        font-size: 0.8rem;
    }

}


/* ===== ENGAGEMENTS SECTION (BENTO GRID) ===== */
/* ===== PARTNER FORM POPUP ===== */
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.form-popup-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 2rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(107, 33, 168, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.form-popup-overlay.active .form-popup-container {
    transform: scale(1);
}

.form-popup-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    background: #f5f3ff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c32a8;
    transition: all 0.3s ease;
}

.form-popup-close:hover {
    background: #6c32a8;
    color: white;
    transform: rotate(90deg);
}

.form-popup-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-popup-header h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.form-popup-header p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.88rem !important;
    color: #666;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #1a1a1a;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6c32a8;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.form-group .error-message {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.75rem !important;
    color: #e74c3c;
    margin-top: 0.2rem;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

.form-submit-btn {
    width: 30%;
    padding: 0.85rem 2rem;
    background: #6c32a8;
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(107, 33, 168, 0.3); */
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: #7C3AED;
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 25px rgba(107, 33, 168, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-popup-container {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }

    .form-popup-header h2 {
        font-size: 1.5rem !important;
    }

    .form-popup-header p {
        font-size: 0.9rem !important;
    }

    .form-popup-close {
        width: 35px;
        height: 35px;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }

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

    .form-submit-btn {
        width: 40%;
    }
}

/* ===== PREMIUM FEATURE CARDS SECTION (TIMELINE ROADMAP DESIGN) ===== */
.premium-features-section {
    position: relative;
    width: 100%;
    background: #f5f0fa;
    padding: 120px 20px;
    overflow: hidden;
}

.premium-features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.premium-features-header {
    text-align: center;
    /* margin-bottom: 80px; */
}

.premium-features-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.premium-features-title .gradient-text {
    /* background: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: #6c32a8;
}

.premium-features-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.15rem !important;
    color: rgba(0, 0, 0, 0.6);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Optimized Grid Layout for 5 Cards */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* margin-top: 60px; */
    grid-auto-rows: minmax(280px, auto);
    width: 100%;
    max-width: 1200px;
}

/* Timeline/Roadmap Card Design */
.premium-feature-card {
    position: relative;
    border-radius: 24px;
    padding: 32px 28px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* First card spans 2 rows for better layout */
.premium-feature-card:nth-child(1) {
    grid-row: span 2;
    justify-content: flex-end;
}

/* Fourth card also spans 2 rows */
.premium-feature-card:nth-child(4) {
    grid-row: span 1;
}

/* Decorative circle in top-right - Expands on hover to cover card */
.card-deco-circle {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

.premium-feature-card:hover .card-deco-circle {
    transform: scale(12);
    opacity: 1;
    border-radius: 24px;
}

/* Large date/number display */
.card-date {
    position: relative;
    z-index: 3;
}

.date-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 12px;
}

/* Pill badge */
.card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

/* Card title */
.card-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.3;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
}

/* Card description */
.card-description {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

/* === COLOR SCHEMES === */

/* Purple Card */
.card-purple {
    background: linear-gradient(135deg, #e8dff5 0%, #d5c4e8 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-purple .card-deco-circle {
    background: #c8b5dc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-purple .date-number {
    color: #7d5fa0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-purple .card-badge {
    background: rgba(107, 33, 168, 0.12);
    color: #6c32a8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-purple .card-title {
    color: #3d2860;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-purple .card-description {
    color: rgba(61, 40, 96, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.94rem !important;
}

.card-purple:hover {
    background: linear-gradient(135deg, #f5f0fa 0%, #e8dff5 100%);
}

.card-purple:hover .card-deco-circle {
    background: #d5c4e8;
}

.card-purple:hover .date-number {
    color: #5a4470;
}

.card-purple:hover .card-badge {
    background: rgba(107, 33, 168, 0.15);
    color: #5a4470;
}

.card-purple:hover .card-title {
    color: #2a1e3e;
}

.card-purple:hover .card-description {
    color: rgba(42, 30, 62, 0.85);
}

/* Brown Card */
.card-brown {
    background: linear-gradient(135deg, #f0e8dc 0%, #e8d8c0 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown .card-deco-circle {
    background: #d9c4a8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown .date-number {
    color: #8a6f52;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown .card-badge {
    background: rgba(139, 111, 78, 0.12);
    color: #6b5643;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown .card-title {
    color: #4a3d32;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown .card-description {
    color: rgba(74, 61, 50, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-brown:hover {
    background: linear-gradient(135deg, #faf5ee 0%, #f0e8dc 100%);
}

.card-brown:hover .card-deco-circle {
    background: #e8d8c0;
}

.card-brown:hover .date-number {
    color: #5a4835;
}

.card-brown:hover .card-badge {
    background: rgba(107, 86, 67, 0.15);
    color: #5a4835;
}

.card-brown:hover .card-title {
    color: #2e2520;
}

.card-brown:hover .card-description {
    color: rgba(46, 37, 32, 0.85);
}

/* Pink Card */
.card-pink {
    background: linear-gradient(135deg, #f5e6f0 0%, #f0d8e4 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink .card-deco-circle {
    background: #e4c4d4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink .date-number {
    color: #a0687c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink .card-badge {
    background: rgba(157, 72, 108, 0.12);
    color: #7d5469;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink .card-title {
    color: #5a3d52;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink .card-description {
    color: rgba(90, 61, 82, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pink:hover {
    background: linear-gradient(135deg, #faf5f8 0%, #f5e6f0 100%);
}

.card-pink:hover .card-deco-circle {
    background: #f0d8e4;
}

.card-pink:hover .date-number {
    color: #6a4858;
}

.card-pink:hover .card-badge {
    background: rgba(125, 84, 105, 0.15);
    color: #6a4858;
}

.card-pink:hover .card-title {
    color: #3e2a3a;
}

.card-pink:hover .card-description {
    color: rgba(62, 42, 58, 0.85);
}

/* Teal Card */
.card-teal {
    background: linear-gradient(135deg, #d8f0ea 0%, #c0e8d8 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal .card-deco-circle {
    background: #a8d9c8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal .date-number {
    color: #3d7d6b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal .card-badge {
    background: rgba(45, 125, 110, 0.12);
    color: #2d6b5f;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal .card-title {
    color: #2d4a4a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal .card-description {
    color: rgba(45, 74, 74, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-teal:hover {
    background: linear-gradient(135deg, #e8f8f3 0%, #d8f0ea 100%);
}

.card-teal:hover .card-deco-circle {
    background: #c0e8d8;
}

.card-teal:hover .date-number {
    color: #2d5550;
}

.card-teal:hover .card-badge {
    background: rgba(45, 85, 80, 0.15);
    color: #2d5550;
}

.card-teal:hover .card-title {
    color: #1e3333;
}

.card-teal:hover .card-description {
    color: rgba(30, 51, 51, 0.85);
}

/* Blue Card */
.card-blue {
    background: linear-gradient(135deg, #e0ecf5 0%, #d0dce8 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue .card-deco-circle {
    background: #b8cce0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue .date-number {
    color: #5a7a9d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue .card-badge {
    background: rgba(74, 95, 125, 0.12);
    color: #4a5f7d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue .card-title {
    color: #2e3d52;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue .card-description {
    color: rgba(46, 61, 82, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-blue:hover {
    background: linear-gradient(135deg, #f0f5fa 0%, #e0ecf5 100%);
}

.card-blue:hover .card-deco-circle {
    background: #d0dce8;
}

.card-blue:hover .date-number {
    color: #3d5268;
}

.card-blue:hover .card-badge {
    background: rgba(61, 82, 104, 0.15);
    color: #3d5268;
}

.card-blue:hover .card-title {
    color: #1a2633;
}

.card-blue:hover .card-description {
    color: rgba(26, 38, 51, 0.85);
}

/* Gold Card */
.card-gold {
    background: linear-gradient(135deg, #f5f0e5 0%, #e8dcc0 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold .card-deco-circle {
    background: #d9cca8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold .date-number {
    color: #8a7a52;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold .card-badge {
    background: rgba(139, 120, 78, 0.12);
    color: #6b5d43;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold .card-title {
    color: #4a4032;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold .card-description {
    color: rgba(74, 64, 50, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gold:hover {
    background: linear-gradient(135deg, #faf8f0 0%, #f5f0e5 100%);
}

.card-gold:hover .card-deco-circle {
    background: #e8dcc0;
}

.card-gold:hover .date-number {
    color: #5a4d38;
}

.card-gold:hover .card-badge {
    background: rgba(90, 77, 56, 0.15);
    color: #5a4d38;
}

.card-gold:hover .card-title {
    color: #2e2a1e;
}

.card-gold:hover .card-description {
    color: rgba(46, 42, 30, 0.85);
}

/* Hover Image */
.card-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 24px;
}

/* Color overlay on top of image — fades out on hover */
.premium-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    z-index: 2;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 1;
}

.card-purple::after {
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.85), rgba(213, 196, 232, 0.85));
}

.card-brown::after {
    background: linear-gradient(135deg, rgba(240, 232, 220, 0.85), rgba(232, 216, 192, 0.85));
}

.card-pink::after {
    background: linear-gradient(135deg, rgba(245, 230, 240, 0.85), rgba(240, 216, 228, 0.85));
}

.card-blue::after {
    background: linear-gradient(135deg, rgba(224, 236, 245, 0.85), rgba(208, 220, 232, 0.85));
}

.card-teal::after {
    background: linear-gradient(135deg, rgba(216, 240, 234, 0.85), rgba(192, 232, 216, 0.85));
}

.premium-feature-card:hover::after {
    opacity: 0;
}

.premium-feature-card:hover .card-hover-img {
    opacity: 1;
}

.premium-feature-card:hover .card-deco-circle {
    transform: scale(1) !important;
    opacity: 0 !important;
}

.premium-feature-card:hover .date-number,
.premium-feature-card:hover .card-title,
.premium-feature-card:hover .card-description {
    /* color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); */
    display: none;
}

/* Hover Effect */
.premium-feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .premium-features-section {
        padding: 80px 20px;
    }

    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        grid-auto-rows: minmax(240px, auto);
    }

    .premium-features-title {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    .date-number {
        font-size: 3.5rem;
    }

    .card-title {
        font-size: 1.35rem !important;
    }

    /* Adjust spanning for 2-column layout */
    .premium-feature-card:nth-child(1),
    .premium-feature-card:nth-child(4) {
        grid-row: span 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-features-section {
        padding: 60px 16px;
    }

    .premium-features-container {
        gap: 30px;
    }

    .premium-features-title {
        font-size: 2rem !important;
        letter-spacing: -1px;
    }

    .premium-features-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }

    .premium-features-header {
        margin-bottom: 0;
    }

    .premium-features-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .premium-feature-card {
        padding: 24px 20px;
        border-radius: 18px;
        min-height: 220px;
    }

    /* All cards single row on mobile */
    .premium-feature-card:nth-child(1),
    .premium-feature-card:nth-child(4) {
        grid-row: span 1;
    }

    .date-number {
        font-size: 2.8rem;
        letter-spacing: -2px;
        margin-bottom: 8px;
    }

    .card-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
    }

    .card-title {
        font-size: 1.15rem !important;
    }

    .card-description {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }

    .card-deco-circle {
        width: 80px;
        height: 80px;
        top: -30px;
        right: -30px;
    }

    .card-hover-img {
        border-radius: 18px;
    }

    .premium-feature-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .premium-features-section {
        padding: 50px 12px;
    }

    .premium-features-title {
        font-size: 1.4rem !important;
    }

    .premium-features-subtitle {
        font-size: 0.85rem !important;
    }

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

    .card-title {
        font-size: 1.05rem !important;
    }

    .card-description {
        font-size: 0.8rem !important;
    }

    .premium-feature-card {
        padding: 20px 16px;
    }
}

/* ===== Resources Section (Articles, Newsletter, Media Corner) ===== */
.resources-section {
    position: relative;
    width: 100%;
    background: #f5f0fa;
    padding: 100px 40px;
    overflow: hidden;
}

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

/* Resources Header */
.resources-header {
    text-align: center;
    margin-bottom: 60px;
}

.resources-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin: 0;
}

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

/* Resource Card */
.resource-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Thumbnail Area */
.resource-thumbnail {
    position: relative;
    width: 100%;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f0f0f0;
}

/* Resource Image */
.resource-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover .resource-image {
    transform: scale(1.05);
}

/* Content Area */
.resource-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.resource-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem !important;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.resource-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* CTA Button */
.resource-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #c5b5f0;
    border-radius: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.resource-cta:hover {
    background: #6c32a8;
    border-color: #6c32a8;
    color: #ffffff;
    transform: translateX(4px);
}

.resource-cta .material-icons {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-cta:hover .material-icons {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resources-section {
        padding: 80px 30px;
    }

    .resources-header {
        margin-bottom: 50px;
    }

    .resources-heading {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .resource-thumbnail {
        height: 220px;
    }

    .resource-content {
        padding: 28px 24px;
    }

    .resource-title {
        font-size: 1.5rem;
    }

    .resource-description {
        font-size: 0.9rem;
    }
}

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

    .resources-header {
        margin-bottom: 40px;
    }

    .resources-heading {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .resources-grid {
        gap: 20px;
    }

    .resource-thumbnail {
        height: 200px;
    }

    .resource-content {
        padding: 24px 20px;
    }

    .resource-title {
        font-size: 1.35rem;
    }

    .resource-description {
        font-size: 0.85rem;
    }

    .resource-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ── Toast Notification ── */
.enp-toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enp-toast-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enp-toast-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enp-toast-overlay.active .enp-toast-box {
    transform: scale(1) translateY(0);
}

.enp-toast-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.enp-toast-icon.success {
    background: linear-gradient(135deg, #efdeff 0%, #fffce3 100%);
    color: #6c32a8;
}

.enp-toast-icon.error {
    background: #ffe0e0;
    color: #d32f2f;
}

.enp-toast-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3d2549;
    margin-bottom: 8px;
}

.enp-toast-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.enp-toast-btn {
    padding: 12px 36px;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #6c32a8;
    color: #fff;
}

.enp-toast-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* ================= Hiring Section (We Are Hiring) ================= */
.hi-wrapper {
    font-family: 'Montserrat', sans-serif;
    background:
        linear-gradient(rgba(122, 46, 206, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 46, 206, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #efdeff 0%, #fffce3 100%);
    background-size: 38px 38px, 38px 38px, 100% 100%;
    color: #3d2549;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.hi-sparkle {
    position: absolute;
    color: #e5a93e;
    font-size: 1.8rem;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    animation: hi-sparklePulse 2.5s ease-in-out infinite;
}

.hi-sparkle-1 {
    top: 10%;
    left: 8%;
    font-size: 1.6rem;
    animation-delay: 0s;
}

.hi-sparkle-2 {
    top: 18%;
    right: 10%;
    font-size: 2.2rem;
    color: #6c32a8;
    animation-delay: 0.6s;
}

.hi-sparkle-3 {
    bottom: 14%;
    left: 12%;
    font-size: 2rem;
    color: #6c32a8;
    animation-delay: 1.2s;
}

.hi-sparkle-4 {
    bottom: 8%;
    right: 7%;
    font-size: 1.4rem;
    animation-delay: 0.9s;
}

.hi-sparkle-5 {
    top: 50%;
    left: 4%;
    font-size: 1.2rem;
    animation-delay: 1.8s;
}

@keyframes hi-sparklePulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .hi-sparkle-5 {
        display: none;
    }

    .hi-sparkle {
        font-size: 1rem !important;
    }
}

.hi-wrapper *,
.hi-wrapper *::before,
.hi-wrapper *::after {
    box-sizing: border-box;
}

.hi-wrapper h1,
.hi-wrapper h2,
.hi-wrapper h3,
.hi-wrapper .hi-font-headline {
    font-family: 'Space Grotesk', sans-serif;
}

.hi-hero-section {
    max-width: 1024px;
    width: 100%;
    position: relative;
    padding: 0rem 1rem;
    text-align: center;
    border-radius: 2.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hi-hero-section {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.hi-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #fdebff, #fff3fe, #f9e0ff);
    opacity: 0.6;
}

/* .hi-glass-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 162, 206, 0.25);
} */

/* .hi-whisper-shadow {
    box-shadow:
        0 8px 24px rgba(61, 37, 73, 0.08),
        0 20px 60px rgba(122, 46, 206, 0.12);
} */

.hi-hero-card {
    position: relative;
    border-radius: 2rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 896px;
    margin: 0 auto;
    z-index: 2;
}

@media (min-width: 768px) {
    .hi-hero-card {
        padding: 5rem;
    }
}

.hi-card-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: rgba(122, 46, 206, 0.3);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
}

.hi-corner-tl {
    top: 20px;
    left: 20px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: 1rem;
}

.hi-corner-tr {
    top: 20px;
    right: 20px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-top-right-radius: 1rem;
}

.hi-corner-bl {
    bottom: 20px;
    left: 20px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-bottom-left-radius: 1rem;
}

.hi-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-right-radius: 1rem;
}

.hi-hiring-badge {
    position: relative;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(237, 194, 255, 0.5), rgba(189, 135, 255, 0.3), rgba(237, 194, 255, 0.5));
    background-size: 200% 100%;
    color: #7e3fa0;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(189, 135, 255, 0.3);
    animation: hi-shimmer 3s linear infinite;
    overflow: hidden;
}

.hi-hiring-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-100%);
    animation: hi-shimmerSlide 3s linear infinite;
}

@keyframes hi-shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes hi-shimmerSlide {
    0% {
        transform: translateX(-100%);
    }

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

.hi-hiring-badge .material-symbols-outlined {
    font-size: 1rem;
    font-variation-settings: 'FILL' 1;
    position: relative;
    z-index: 1;
}

.hi-hiring-badge span:last-child {
    position: relative;
    z-index: 1;
}

.hi-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #3d2549;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    position: relative;
}

@media (min-width: 768px) {
    .hi-hero-title {
        font-size: 3.75rem;
    }
}

.hi-hero-title .hi-highlight {
    color: #6c32a8;
    position: relative;
}

.hi-hero-subtitle {
    font-size: 1.125rem;
    color: #6c5279;
    max-width: 576px;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hi-hero-subtitle {
        font-size: 1.25rem;
    }
}

.hi-btn-gradient {
    position: relative;
    background: linear-gradient(135deg, #7a2ece 0%, #6c32a8 100%);
    color: #faefff;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(122, 46, 206, 0.35);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.hi-btn-gradient::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7a2ece, #6c32a8);
    opacity: 0.5;
    z-index: -1;
    animation: hi-buttonGlow 2.5s ease-in-out infinite;
}

.hi-btn-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 229, 0.3), transparent);
    animation: hi-shine 3s ease-in-out infinite;
}

@keyframes hi-buttonGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes hi-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hi-btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px -5px rgba(122, 46, 206, 0.5);
    color: #faefff;
}

.hi-btn-gradient:active {
    transform: scale(0.95);
}

.hi-btn-gradient .material-symbols-outlined {
    transition: transform 0.3s;
}

.hi-btn-gradient:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.hi-btn-submit {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #7a2ece 0%, #6c32a8 100%);
    color: #faefff;
    padding: 1.25rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(122, 46, 206, 0.3);
    transition: all 0.3s;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.hi-btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: hi-shine 3s ease-in-out infinite;
}

.hi-btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px -3px rgba(122, 46, 206, 0.4);
}

.hi-btn-submit:active {
    transform: scale(0.95);
}

.hi-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.hi-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(194, 162, 206, 0.3);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3d2549;
    backdrop-filter: blur(10px);
    transition: transform 0.2s;
}

.hi-stat-chip:hover {
    transform: translateY(-2px);
}

.hi-stat-chip .material-symbols-outlined {
    font-size: 1rem;
    color: #7a2ece;
    font-variation-settings: 'FILL' 1;
}

#hi-apply-modal-toggle {
    display: none;
}

.hi-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
}

#hi-apply-modal-toggle:checked~.hi-modal-overlay {
    display: flex;
    animation: hi-modalFadeIn 0.3s ease-out;
}

@keyframes hi-modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hi-modal-backdrop-custom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hi-modal-content-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 100vh;
    border-radius: 24px 0 0 24px;
    padding: 2rem;
    z-index: 10;
    overflow-y: auto;
    animation: hi-modalSlideRight 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    background: #fff;
}

@keyframes hi-modalSlideRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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

@media (min-width: 768px) {
    .hi-modal-content-custom {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hi-modal-content-custom {
        max-width: 100%;
        border-radius: 0;
        justify-content: center;
    }
}

.hi-modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.hi-modal-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #3d2549;
    letter-spacing: -0.025em;
    margin: 0;
    background: #1a1a1a;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hi-modal-subtitle {
    color: #6c5279;
    font-weight: 500;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.hi-modal-close-btn {
    padding: 0.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: transparent;
    display: inline-flex;
}

.hi-modal-close-btn:hover {
    background: #f3d1ff;
    transform: rotate(90deg);
}

.hi-form-group-custom {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.hi-form-group-custom-cv {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hi-form-group-custom-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hi-form-label-custom {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(61, 37, 73, 0.7);
    margin-left: 0.25rem;
}

.hi-form-input-custom {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8f1ff;
    border: none;
    border-bottom: 2px solid rgba(194, 162, 206, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #3d2549;
}

.hi-form-input-custom::placeholder {
    color: rgba(108, 82, 121, 0.4);
}

.hi-form-input-custom:focus {
    outline: none;
    border-bottom-color: #7a2ece;
    box-shadow: 0 4px 12px rgba(122, 46, 206, 0.1);
}

.hi-required {
    color: #e11d48;
    font-weight: 700;
}

.hi-error-message {
    display: none;
    color: #e11d48;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.35rem;
    margin-left: 0.25rem;
    line-height: 1.3;
}

.hi-error-message.show {
    display: block;
    animation: hi-errorFade 0.25s ease-out;
}

@keyframes hi-errorFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

.hi-form-input-custom.hi-invalid {
    border-bottom-color: #e11d48;
    background: rgba(225, 29, 72, 0.04);
}

.hi-form-input-custom.hi-invalid:focus {
    border-bottom-color: #e11d48;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.1);
}

.hi-file-upload-area.hi-invalid {
    border-color: #e11d48;
    background: rgba(225, 29, 72, 0.04);
}

.hi-file-upload-text.hi-file-selected {
    color: #7a2ece;
    font-weight: 600;
    word-break: break-all;
}

.hi-file-upload-wrapper {
    position: relative;
}

.hi-file-input-hidden {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.hi-file-upload-area {
    width: 100%;
    padding: 2rem 1.25rem;
    border: 2px dashed rgba(194, 162, 206, 0.4);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #ffffff;
    transition: all 0.3s;
}

.hi-file-upload-wrapper:hover .hi-file-upload-area {
    border-color: rgba(122, 46, 206, 0.6);
    background: rgba(253, 235, 255, 0.5);
    transform: translateY(-2px);
}

.hi-file-upload-icon {
    font-size: 1.875rem;
    color: rgba(122, 46, 206, 0.7);
    transition: transform 0.3s;
}

.hi-file-upload-wrapper:hover .hi-file-upload-icon {
    transform: translateY(-4px);
}

.hi-file-upload-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c5279;
}

.hi-privacy-text {
    text-align: center;
    font-size: 0.625rem !important;
    color: #6c5279;
    padding: 0 1rem;
    line-height: 1.625;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hi-apply-label {
    cursor: pointer;
}

.hi-hero-card>*:not(.hi-card-corner) {
    animation: hi-fadeUp 0.8s ease-out backwards;
}

.hi-hero-card>*:nth-child(5) {
    animation-delay: 0.1s;
}

.hi-hero-card>*:nth-child(6) {
    animation-delay: 0.2s;
}

.hi-hero-card>*:nth-child(7) {
    animation-delay: 0.3s;
}

.hi-hero-card>*:nth-child(8) {
    animation-delay: 0.4s;
}

.hi-hero-card>*:nth-child(9) {
    animation-delay: 0.5s;
}

@keyframes hi-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== Hiring Section — Mobile Optimization ===== */
@media (max-width: 640px) {
    .hi-wrapper {
        padding: 3rem 0.75rem;
        background-size: 28px 28px, 28px 28px, 100% 100%;
    }

    .hi-hero-section {
        padding: 0 0.25rem;
        border-radius: 1.5rem;
    }

    .hi-hero-card {
        padding: 2.5rem 1.25rem;
        border-radius: 1.25rem;
    }

    .hi-card-corner {
        width: 36px;
        height: 36px;
    }

    .hi-corner-tl,
    .hi-corner-tr {
        top: 12px;
    }

    .hi-corner-bl,
    .hi-corner-br {
        bottom: 12px;
    }

    .hi-corner-tl,
    .hi-corner-bl {
        left: 12px;
    }

    .hi-corner-tr,
    .hi-corner-br {
        right: 12px;
    }

    .hi-hiring-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.03em;
    }

    .hi-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hi-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hi-btn-gradient {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        gap: 0.5rem;
    }

    .hi-btn-gradient .material-symbols-outlined {
        font-size: 1.125rem;
    }

    .hi-sparkle-1 {
        top: 5%;
        left: 5%;
    }

    .hi-sparkle-2 {
        top: 7%;
        right: 5%;
    }

    .hi-sparkle-3 {
        bottom: 7%;
        left: 6%;
    }

    .hi-sparkle-4 {
        bottom: 5%;
        right: 5%;
    }

    /* Right Sidebar Modal */
    .hi-modal-content-custom {
        padding: 1.5rem 1.25rem;
        border-radius: 0;
        max-width: 100%;
        justify-content: center;
    }

    .hi-modal-header-custom {
        margin-bottom: 1.5rem;
    }

    .hi-modal-title {
        font-size: 1.5rem;
    }

    .hi-modal-subtitle {
        font-size: 0.875rem;
    }

    /* Stack Name + Email vertically on mobile */
    .hi-form-group-custom {
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .hi-form-input-custom {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .hi-form-label-custom {
        font-size: 0.8125rem;
    }

    .hi-file-upload-area {
        padding: 1.5rem 1rem;
    }

    .hi-file-upload-icon {
        font-size: 1.5rem;
    }

    .hi-file-upload-text {
        font-size: 0.8125rem;
        text-align: center;
    }

    .hi-btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }

    .hi-privacy-text {
        font-size: 0.5625rem !important;
        padding: 0 0.5rem;
        margin-top: 0.75rem;
    }
}

/* ===== END: Resources Section ===== */