/* ====banner-section=== */
body {
    background-color: var(--black) !important;
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
}

.gradiantbgleft {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* width: 100%; */
}

.gradiantbgright {
    position: absolute;
    top: 400px;
    right: 0;
    z-index: 1;
    /* width: 100%; */
}

.gradiantcircle1 {
    position: absolute;
    top: 200px;
    right: 0;
    z-index: 2;
}

.gradiantcircle2 {
    position: absolute;
    top: 14%;
    left: 0;
    z-index: 2;
}

.gradiantcircle3 {
    position: absolute;
    bottom: 20%;
    right: 0;
    z-index: 2;
}

.gradiantcircle4 {
    position: absolute;
    bottom: 11%;
    left: 0;
    z-index: 2;
}

main {
    position: relative;
    z-index: 2;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    /* isolation: isolate; */
    padding-top: 170px;
    /* background-image: url(../img/bannerbg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Bright white-green hotspot at center-top */
        radial-gradient(ellipse 35% 30% at 48% 8%,
            rgba(200, 255, 180, 0.9) 0%,
            rgba(140, 255, 100, 0.6) 15%,
            rgba(80, 230, 50, 0.5) 35%,
            rgba(40, 180, 20, 0.25) 55%,
            transparent 80%),
        /* Wide green glow */
        radial-gradient(ellipse 90% 80% at 45% 10%,
            rgba(60, 210, 40, 0.55) 0%,
            rgba(30, 160, 20, 0.4) 20%,
            rgba(10, 100, 10, 0.25) 40%,
            rgba(0, 50, 5, 0.1) 60%,
            transparent 80%);
    z-index: -1;
}

/* Secondary softer fill for the mid-tones */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 100% at 55% 0%,
            rgba(80, 255, 50, 0.3) 0%,
            rgba(40, 180, 30, 0.2) 15%,
            rgba(15, 90, 10, 0.12) 35%,
            transparent 65%),
        radial-gradient(ellipse 60% 50% at 40% 5%,
            rgba(120, 255, 80, 0.25) 0%,
            rgba(50, 200, 30, 0.15) 30%,
            transparent 70%);
    z-index: -1;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* object-position: center; */
    z-index: -3;
    max-width: 1560px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero-content {
    text-align: center;
    max-width: 720px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-medium);
    font-size: clamp(3.2rem, 4vw, 6rem);
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
}

.hero-title .highlight1 {
    font-family: var(--font-semibold);
}

.hero-title .highlight2 {
    font-family: var(--font-sub-italic);
}

.hero-subtitle {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
    max-width: 550px;
    margin: 0px auto;
    margin-top: 2.5rem;
    margin-bottom: 3.4rem;
}

.hero-logo {
    width: 100%;
    height: 100%;
    max-width: 440px;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Powered-by {
    font-family: var(--font-medium);
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 9px;
    flex-direction: column;
}

.Powered-by img {
    max-width: 120px;
    object-fit: contain;
    height: 34px;
}

.Powered-by-wrp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .hero-section {
        min-height: 100svh;
        padding: 2rem 0;
    }

    .hero-content {
        padding-inline: 1.25rem;

    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}




/* <!-- SHIFT SECTION --> */
/* =========================   SHIFT SECTION========================= */
.shift-section {
    position: relative;
    /* background: #000; */
    padding-top: clamp(12rem, 14vw, 20rem);
    overflow: hidden;
}

/* =========================   HEADING========================= */


h2 {
    font-family: var(--font-semibold);
    font-size: clamp(2.8rem, 1.8rem + 2.5vw, 4.5rem) !important;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    position: relative;
    z-index: 3;
}

h2 span {
    font-family: var(--font-sub-italic);
    font-size: clamp(3.2rem, 2rem + 3vw, 5.5rem);
    line-height: 1;
}

.shift-subtitle {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    max-width: 56rem;
    margin-inline: auto;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--pera);
    position: relative;
    z-index: 3;
}

.shift-mini-title {
    font-family: var(--font-semibold);
    font-size: clamp(2rem, 1.5rem + 1vw, 2.6rem);
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.shift-mini-title span {
    font-family: var(--font-sub-italic);
}

/* =========================   GRID========================= */
.shift-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    min-width: 100%;
    max-width: 535px;
    margin: 0px auto;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* =========================   CARD========================= */
.shift-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.shift-card:hover {
    transform: translateY(-6px);
}

.shift-card-title {
    font-family: var(--font-sub-italic);
    font-size: clamp(3.2rem, 2rem + 3vw, 6rem);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;

    background: linear-gradient(180deg,
            #ffffff 32.76%,
            rgba(153, 153, 153, 0) 100%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    -webkit-font-smoothing: antialiased;
    margin-bottom: 0;
}

.shift-card.active .shift-card-title {
    background: linear-gradient(180deg,
            #99d313 32.76%,
            rgba(153, 211, 19, 0) 100%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    -webkit-font-smoothing: antialiased;
}

.shift-card-text {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
}

/* =========================   MOBILE========================= */
@media (max-width: 767px) {
    .shift-section {
        padding: 7rem 0;
    }

    .shift-grid {
        margin-top: 3rem;
    }

    .shift-card-title {
        margin-bottom: 1rem;
    }
}



/* < !-- momentum SECTION --> */
.momentum-section {
    /* padding: clamp(6rem, 10vw, 12rem) 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.sub-heading {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    max-width: 80rem;
    margin-inline: auto;
    margin-top: 1.8rem;
    margin-bottom: 4rem;
    color: var(--pera);
}

.ecosystem-container {
    margin-bottom: 2.4rem;
}

.label-text {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
    margin-bottom: 1rem;
}

.stat-title {
    font-family: var(--font-medium);
    font-size: clamp(2.8rem, 1.8rem + 2.5vw, 4.5rem) !important;
    line-height: 1.4;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 1rem;
}

.stat-title span {
    font-family: var(--font-sub-italic);
    font-size: clamp(2.8rem, 5.6vw, 6.0rem);
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
}

.description-text {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
}

.engagement-footer p {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
    margin-bottom: 1.5rem;
}

/* Accessibility: High contrast & focus states */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


/* < !-- unlocks SECTION --> */

.unlocks-section {
    /* background-color: #000; */
    padding: 10rem 0;
    color: #fff;
    text-align: center;
}

.unlocks-title {
    max-width: 355px;
    margin: 0px auto;
    position: relative;
    top: 70px;
}

/* The Grid Logic */
.unlocks-section .shift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.unlock-card {
    /* padding: 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Box Styling */
.icon-box {
    width: 8.8rem;
    height: 8.8rem;
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
        linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
    border-image-source: linear-gradient(180deg, #2E2E2E 0%, rgba(46, 46, 46, 0) 100%);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.card-heading {
    font-family: var(--font-semibold);

    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.3;

    letter-spacing: 0%;
    text-transform: capitalize;

    color: var(--white);
}

.card-text {
    font-family: var(--font-regular);

    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 150%;

    letter-spacing: -0.06rem;

    color: #E6E6E6;
}

/* Desktop Shift Effect */
@media (min-width: 992px) {
    .unlock-card.shifted {
        transform: translateY(14rem);
        -webkit-transform: translateY(14rem);
        -moz-transform: translateY(14rem);
        -ms-transform: translateY(14rem);
        -o-transform: translateY(14rem);
    }

    .shift-grid {
        /* Ensure enough space at the bottom for the shifted card */
        margin-bottom: 15rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .unlock-card.shifted,
    .unlock-card:hover {
        transform: none;
    }
}


/* ======================= */

.industry-section {
    padding: 9rem 1.5rem;
    position: relative;
    z-index: 3;
    padding-top: 12rem;
}

.custom-tab-wrapper {
    /* background: linear-gradient(180deg, rgba(36, 36, 36, 0.2) 0%, rgba(138, 138, 138, 0) 100%); */
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%),
        linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 1550px;
    margin: 0px auto;
    position: relative;
    z-index: 3;
}



/* NAV */
.custom-tabs {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}


.custom-tabs .nav-link {
    width: 100%;

    background-color: #141414;

    padding: clamp(1.2rem, 2vw, 2rem);

    font-family: var(--font-semibold);

    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

    color: #606060 !important;

    border-radius: clamp(0.6rem, 1vw, 1rem) clamp(0.6rem, 1vw, 1rem) 0 0;

    border: 0.1rem solid #141414;
    border-bottom: 0.2rem solid #141414;
}

.custom-tabs .nav-link.active {
    background-color: #1E2412;
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

.custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.3rem;
    background-color: var(--primary-green);
}

/* TAB CONTENT */
.tab-pane-content {
    padding: 6rem 4rem 4rem;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    row-gap: 4rem;
}

.tab-title {
    font-family: var(--font-semibold);

    font-size: clamp(2.4rem, 4vw, 3.5rem);
    /* 24px → 35px */
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

    color: var(--white);

    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.feature-grid {
    row-gap: 3rem;
    margin-bottom: 5rem;
}

.feature-text {
    font-family: var(--font-medium);

    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

    color: var(--pera);

    max-width: clamp(24rem, 80vw, 30rem);

    margin-inline: auto;
}

.custom-btn {
    background-color: var(--primary);

    width: min(100%, 33rem);
    height: clamp(5.6rem, 5vw, 6.5rem);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: clamp(0.4rem, 1vw, 0.6rem);

    font-family: var(--font-semibold);

    font-size: clamp(1.6rem, 2vw, 2.5rem);
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;

    color: var(--black);

    margin-inline: auto;
    margin-top: clamp(2rem, 8vw, 7rem);
}


/* MOBILE */
@media (max-width: 767.98px) {
    .industry-section {
        padding: 7rem 1.5rem;
        padding-bottom: 7rem;
    }

    .tab-pane-content {
        padding: 4rem 2rem 5rem;
    }

    .custom-tabs .nav-link {
        font-size: 1.3rem;
        padding: 1.8rem 1rem;
    }

    .tab-title {
        margin-bottom: 4rem;
    }

    .feature-grid {
        margin-bottom: 4rem;
    }

    .feature-text {
        max-width: 100%;
    }

    .custom-btn {
        width: 100%;
        max-width: 28rem;
    }
}


/* ========discussion-section========== */
.discussion-section {
    padding: 0 1.5rem;
}

.discussion-box {
    position: relative;
    background: linear-gradient(97.29deg, rgba(122, 122, 122, 0) 14.26%, rgba(69, 69, 69, 0.45) 58.76%, rgba(20, 20, 20, 0) 100.04%);
    padding: 4.5rem 2rem;
    z-index: 3;
}

.discussion-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.discussion-heading {
    font-family: var(--font-semibold);

    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

    color: var(--white);

    margin-bottom: 0;

    position: relative;
}

.discussion-content h3 {
    font-family: var(--font-semibold);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
}

.discussion-flow {
    display: flex;
    flex-direction: column;
    /* gap: 1.8rem; */
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.flow-item:nth-child(2) {
    margin-left: 60px;
}


.flow-text {
    font-family: var(--font-medium);

    font-size: clamp(1.6rem, 2vw, 2.2rem);
    /* 16px → 22px */
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

    color: var(--pera);
}

.flow-line {
    background-color: var(--line-color);
    position: relative;
}

.flow-line svg {
    width: 100%;
}


.flow-highlight {
    font-family: var(--font-sub-italic);

    font-size: clamp(2.8rem, 5vw, 4.5rem);
    /* 28px → 45px */
    line-height: 1.3;

    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

    background: linear-gradient(110.61deg, #99D313 -14.07%, #183309 110%);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    -webkit-font-smoothing: antialiased;
}

/* ==========================================
           SECTION 02
        ========================================== */
.intent-section {
    padding: 9rem 1.5rem 12rem;
    text-align: center;
    background-image: url(../img/footerbg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.intent-container {
    max-width: 82rem;
    margin: 0 auto;
}

.brand-logo {
    width: 100%;
    height: 100%;
    max-width: 380px;
    margin: 0px auto;
}

.intent-title {
    font-family: var(--font-regular) !important;
    font-size: clamp(3.2rem, 5vw, 6rem) !important;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--white);
}

.intent-title .accent {
    font-family: var(--font-sub-italic);
}

.intent-description {
    text-align: center;
    margin-top: 3rem;
}

.intent-description p {
    font-family: var(--font-regular);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.5;
    letter-spacing: -0.006em;
    text-align: center;
    color: #E6E6E6;
    margin-bottom: 0;
}

/* ==========================================
           WCAG FOCUS
        ========================================== */
a:focus-visible,
button:focus-visible {
    outline: 0.3rem solid #ffffff;
    outline-offset: 0.4rem;
}




.mobility-section {
    position: relative;
    overflow: hidden;
    padding: 12rem 1rem;
    z-index: 3;
}

.mobility-section h2 {
    margin-bottom: 34px;
}


.section-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1560px;
    margin: 0 auto;
}

/* Content Box */
.event-box {
    width: 100%;
    border: 1px solid #99D313;
    border-radius: 18px;
    background-color: var(--black);
    max-width: 1560px;
    margin: 0 auto;
    aspect-ratio: 39/22;
    max-height: 880px;
    overflow: hidden;
    position: relative;
}

.play-btn {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: clamp(7.4rem, 6vw, 10rem);
    height: clamp(7.4rem, 6vw, 10rem);
    border: none;
    border-radius: 50%;
    background: rgba(157, 255, 0, 0.95);
    color: #000;
    font-size: clamp(2.4rem, 3vw, 4rem);
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
    -webkit-transition: transform 0.3s ease, background 0.3s ease;
    -moz-transition: transform 0.3s ease, background 0.3s ease;
    -ms-transition: transform 0.3s ease, background 0.3s ease;
    -o-transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-overly:has(.hidden) {
    display: none;
}

.ytmCuedOverlayPlayButton {
    display: none !important;
}

.play-btn svg {
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%;
    height: 100%;
}

.play-btn.hidden {
    display: none !important;
}

.btn_primary {
    background-color: var(--primary);
    font-family: var(--font-semibold);
    /*25px*/
    font-size: clamp(1.8rem, 1.4rem + 0.8vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: capitalize;
    /*15px70px*/
    padding: clamp(1.2rem, 1rem + 0.3vw, 1.5rem) clamp(3rem, 2rem + 3vw, 7rem);
    border-radius: clamp(0.4rem, 0.3rem + 0.2vw, 0.6rem);
    margin-top: clamp(2.5rem, 1.5rem + 2vw, 4rem);
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}

.btn_primary:hover {
    background-color: transparent;
    color: var(--primary) !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .mobility-section {
        padding: 7rem 1rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .mobility-section {
        padding: 7rem 1rem;
    }

}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }
}



.event-section {
    position: relative;
    overflow: hidden;
    padding: 0px 10px;
}

.event-wrapper {
    /* max-width: 120rem;
    margin: 0 auto; */
    position: relative;
    z-index: 2;
}

/* =========================
       EVENT INFO CARDS
    ========================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    max-width: 1250px;
    margin: 0 auto;
}

.info-card,
.venue-card {

    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%), linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 16px;

}

.info-label {
    font-family: var(--font-semibold);

    /* 45px */
    font-size: clamp(2.4rem, 1.8vw, 4.5rem);

    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--white);
}

.info-value {
    font-family: var(--font-regular);

    /* 60px */
    font-size: clamp(3rem, 3vw, 6rem);

    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;

    color: var(--primary);
}

.venue-card {
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%), linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 25px;
    max-width: 1250px;
    margin: 0 auto;
    margin-top: 15px;
}

.venue-text {
    font-family: var(--font-semibold);
    font-size: clamp(2.4rem, 1.8vw, 4.5rem);
    color: var(--white);
    text-align: center;
    margin: 0px !important;
    line-height: normal;

}

/* =========================
       BENEFITS SECTION
    ========================== */
.benefits-section {
    padding: 140px 0px;
}

.benefits-section h2 {
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

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

.benefit-icon {
    width: 100%;
    max-width: 50px;
    height: 50px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%), linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.benefit-icon i {
    font-size: clamp(2rem, 1.6vw, 3rem);
    color: var(--primary);
}

.benefit-icon svg {
    width: 100%;
    max-width: 20px;
}

.benefit-text {
    font-family: var(--font-semibold);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    max-width: 130px;
    margin: 0px auto;
    margin-bottom: 1.2rem;

}

.benefit-card p {
    font-family: var(--font-regular);
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    font-size: clamp(1.4rem, 1.2vw, 2rem);
}




/* =========================
           FORM LAYOUT
        ========================== */
.custom-form .row {
    --bs-gutter-x: 0px !important;
    --bs-gutter-y: clamp(3rem, 4vw, 5rem);
    /* max-width: 1200px;
        margin: 0px auto; */
    width: 100%;
}

/* =========================
           FORM GROUP
        ========================== */
.form-group {
    position: relative;
}

/* =========================
           LABEL
        ========================== */
.form-label {
    display: block;

    margin-bottom: 1.4rem;

    font-size: clamp(1.5rem, 1.1vw, 2rem);
    font-weight: 400;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.9);
}

/* =========================
           INPUT
        ========================== */
.form-control-custom {
    width: 100%;
    font-family: var(--font-medium) !important;
    font-size: 22px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #C3C3C3 !important;
    height: 50px;
    border: none !important;
    background-color: transparent !important;
    border-radius: 0px !important;
    border-bottom: 3px solid #99D313 !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    padding: 0px !important;
    padding-bottom: 20px !important;
}

.form-control-custom::placeholder {
    color: #C3C3C3 !important;
}

/* Focus State */
.form-control-custom:focus {
    border-bottom-color: #c6ff4d;

    box-shadow:
        0 0.8rem 1.6rem rgba(157, 255, 0, 0.08);

    background: transparent;
}

/* Autofill Fix */
.form-control-custom:-webkit-autofill,
.form-control-custom:-webkit-autofill:hover,
.form-control-custom:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}

/* =========================
           ACCESSIBILITY
        ========================== */
.form-control-custom:focus-visible {
    outline: none !important;
}

.tab-pane-content button {
    margin-top: 6rem !important;
}

.custom-form .col-md-6 {
    width: 100% !important;
    padding: 0px !important;
    padding-right: 20px !important;
}

.tab-pane-content .row:has(.benefit-card) {
    row-gap: 20px;
    align-items: start;
    justify-content: center;
}

.tab-pane-content .row:has(.benefit-card) .col-lg-4 {
    padding: 0px 10px;
}

.tab-pane-content .row:has(.benefit-card) h5 {
    font-family: var(--font-semibold);
    font-size: clamp(1.4rem, 0.8vw, 2rem);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    margin-top: clamp(2.5rem, 2rem + 2vw, 6rem);
    display: flex;
    gap: 5px;
}

.tab-pane-content .row:has(.benefit-card) h5 ol li {
    list-style: decimal;
    text-align: left;
    margin-bottom: 7px;
}

.benefits-title {
    margin-bottom: 5rem;
}

.tab-pane-content h6 {
    font-family: var(--font-semibold);
    font-size: clamp(1.8rem, 1.4rem + 0.8vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 4rem;
}

.tab-pane-content h6 span {
    font-family: var(--font-sub-italic);
    font-size: clamp(2.2rem, 1.7rem + 1.2vw, 3.4rem);
    line-height: 1.1;
}

.custom-form h5 {
    font-family: var(--font-semibold);

    /* 25px */
    font-size: clamp(1.4rem, 1.4rem + 0.8vw, 2.5rem);

    line-height: 1;
    letter-spacing: 0;

    text-align: center;
    text-transform: capitalize;

    color: var(--white);

    margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.custom-form .wpcf7-form-control.wpcf7-submit {
    background-color: var(--primary);
    font-family: var(--font-semibold);
    font-size: clamp(1.8rem, 1.4rem + 0.8vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: clamp(1.2rem, 1rem + 0.3vw, 1.5rem) clamp(3rem, 2rem + 3vw, 7rem);
    border-radius: clamp(0.4rem, 0.3rem + 0.2vw, 0.6rem);
    margin-top: clamp(2.5rem, 1.5rem + 2vw, 4rem);
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    margin-top: 6rem;
}

.custom-form .wpcf7-form-control.wpcf7-submit:hover {
    background-color: transparent !important;
    color: var(--primary);
}

.custom-form>p {
    max-width: 1200px;
    margin: 0px auto;
    text-align: left;
}

.wpcf7-not-valid-tip {
    text-align: left;
}

.wpcf7 form .wpcf7-response-output {
    border-color: gainsboro !important;
    padding: 10px !important;
    font-family: var(--font-regular) !important;
}

/* =========================
           MOBILE
        ========================== */
@media (max-width: 767.98px) {

    .form-label {
        margin-bottom: 1rem;
    }

    .form-control-custom {
        font-size: 16px !important;
    }
}

/* =========================
           REDUCED MOTION
        ========================== */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}




/* =========================
   SECTOR SHOWCASE SECTION
========================== */

.sector-showcase {
    overflow: hidden;
    position: relative;
    z-index: 4;
}


/* =========================
   SECTOR GRID
========================== */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.1rem;

    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   SECTOR CARD
========================== */

.sector-card {
    position: relative;
    overflow: hidden;

    min-height: clamp(18rem, 20vw, 28rem);

    background-color: #111;

    text-decoration: none;
    color: var(--white);

    isolation: isolate;
}

/* Image */

.sector-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(100%) brightness(0.7);

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

/* Overlay */

.sector-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 5%,
            rgba(0, 0, 0, 0.2) 55%,
            rgba(0, 0, 0, 0.1) 100%);

    z-index: 1;
}

/* Content */

.sector-content {
    position: absolute;

    left: clamp(2.5rem, 1.5vw, 5rem);
    bottom: clamp(2.5rem, 1.5vw, 4rem);

    z-index: 2;
}

.sector-title {
    margin: 0;
    font-family: var(--font-semibold);
    font-size: clamp(2.2rem, 2vw, 2.8rem);
    line-height: 1.2;
    color: var(--white);
}

/* Hover */

.sector-card:hover .sector-image,
.sector-card:focus-visible .sector-image {
    transform: scale(1.05);

    filter:
        grayscale(0%) brightness(0.95);
}

/* Accessibility */

.sector-card:focus-visible {
    outline: 0.3rem solid rgba(120, 255, 0, 0.7);
    outline-offset: 0.2rem;
}


body:has(.hero-section) .site-header,
body:has(.hero-section) .site-footer {
    display: none !important;
}

main {
    overflow: hidden;
}

/* =========================
   TABLET
========================== */

@media (max-width: 991.98px) {

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

/* =========================
   MOBILE
========================== */

@media (max-width: 575.98px) {

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

    .sector-card {
        min-height: 33rem;
    }
}







/* =========================
       TABLET
    ========================== */
@media (max-width: 991.98px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

/* =========================
       MOBILE
    ========================== */
@media (max-width: 767.98px) {

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .info-card,
    .venue-card {
        padding: 2rem 1.6rem;
    }

    .benefit-text {
        max-width: 28rem;
    }
}

/* =========================
       ACCESSIBILITY
    ========================== */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}



.investment_pool {
    padding: 86px 20px;
    background-color: rgba(153, 211, 19, 1);
    margin-top: 11rem;
}

.investment_pool_content {
    max-width: 1000px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
    row-gap: 1rem;
    column-gap: 4rem;
}


.investment_pool_content h2 {
    font-family: var(--font-bold) !important;
    font-size: clamp(6rem, 10vw, 14.776rem) !important;
    line-height: 1.4 !important;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #143D04 !important;
    margin-bottom: 0px !important;
}

.investment_pool_content h3 {
    font-family: var(--font-bold) !important;
    font-size: clamp(3.5rem, 6vw, 6.128rem);
    line-height: 1.1;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #143D04 !important;
    margin-bottom: 0px !important;
}




.selection-section {
    padding: 80px 0;
    padding-bottom: 10px;
}

.selection_sub {
    font-family: var(--font-medium);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    margin-top: 10px;
    color: var(--white);
}

.selection-step-wrp {
    margin-top: 7rem;
}

.step-card {
    width: 100%;
    max-width: 210px;
    position: relative;
}

.step-title {
    font-family: var(--font-semibold);
    font-size: clamp(2.2rem, 1.5vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--primary);
    margin-bottom: 17px;
}

.step-text {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1vw, 2rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 0px;
    max-width: 200px;
}

.selection-step-wrp {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 9rem;
    row-gap: 3rem;
}


.step-card::after {
    content: "";
    position: absolute;
    top: 13%;
    right: -60px;
    width: 49px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='49' height='8' viewBox='0 0 49 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48.3536 4.03544C48.5488 3.84018 48.5488 3.5236 48.3536 3.32834L45.1716 0.146355C44.9763 -0.0489074 44.6597 -0.0489074 44.4645 0.146355C44.2692 0.341617 44.2692 0.658199 44.4645 0.853462L47.2929 3.68189L44.4645 6.51032C44.2692 6.70558 44.2692 7.02216 44.4645 7.21742C44.6597 7.41268 44.9763 7.41268 45.1716 7.21742L48.3536 4.03544ZM0 3.68188L-4.37114e-08 4.18188L48 4.18189L48 3.68189L48 3.18189L4.37114e-08 3.18188L0 3.68188Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.step-card:last-child:after {
    display: none;
}



.investors-section .selection_sub {
    max-width: 626px;
    margin: 0px auto;
    margin-top: 14px;
}


.investors-section {
    padding: 2rem 0;
    background: #000;
    overflow: hidden;
}

.section-title {
    font-size: clamp(3.2rem, 2vw + 1rem, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: var(--white);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-subtitle {
    max-width: 62rem;
    margin: 0 auto 6rem;
    font-size: clamp(1.6rem, 1vw + 1rem, 2rem);
    line-height: 1.6;
    color: var(--text-gray);
}

.investors-slider {
    margin-top: 7rem;
}

.investor-card {
    width: 100%;
    max-width: 165px;
    object-fit: contain;
    margin: 0px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investor-card:hover,
.investor-card:focus-within {}

.investor-logo {
    width: auto !important;
    height: auto;
    object-fit: contain;
}

.investor-card:hover .investor-logo {
    opacity: 0.9;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}




.organized-section {
    padding: 11rem 0;
    background: #000;
    overflow: hidden;
    padding-top: 2rem;
}

.organization-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-top: 5rem;
}

/* LEFT SIDE */
.organization-left {
    flex: 1 1 40rem;
    display: flex;
    align-items: center;
    column-gap: 6rem;
    row-gap: 3rem;
}

.organization-left img {
    width: 100% !important;
    max-width: 192px !important;
    height: auto !important;
}

.organization-left h3 {
    font-family: var(--font-semibold);
    font-size: clamp(2.4rem, 2vw + 1rem, 4.5rem);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-transform: capitalize;
    color: var(--white);
}

.organization-left p {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1vw + 0.8rem, 2rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--white);
    margin-top: 19px;
    max-width: 370px;
}

/* RIGHT SIDE */
.stats-grid {
    flex: 1 1 48rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border-color);
    /* min-height: 42rem; */
}

.stats-grid::before,
.stats-grid::after {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--primary) 50%,
            transparent 100%);
    opacity: 0.5;
}

/* Vertical line */
.stats-grid::before {
    width: 2.5px;
    height: 150%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* Horizontal line */
.stats-grid::after {
    width: 130%;
    height: 2.5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: linear-gradient(to right,
            transparent 0%,
            var(--primary) 50%,
            transparent 100%);
}

.stats-item {
    position: relative;
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    z-index: 2;
}


.stats-item:nth-child(odd) {
    padding-left: 60px;
    padding-bottom: 25px;
}


.stats-item h3 {
    font-family: var(--font-semibold);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
    max-width: 200px;
}

.stats-item p {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1vw + 0.8rem, 2rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 0px;
    max-width: 200px;
}

/* CENTER GLOW */
.center-glow {
    position: absolute;
    width: 109px;
    height: 109px;
    background-color: #97C600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: path('M 54.5 0 C 54.5 40, 69 54.5, 109 54.5 C 69 54.5, 54.5 69, 54.5 109 C 54.5 69, 40 54.5, 0 54.5 C 40 54.5, 54.5 40, 54.5 0 Z');
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .organization-wrapper {
        flex-direction: column;
    }

    .stats-grid {
        width: 100%;
    }
}




/* Base Section Styling */
.organizers-section {
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 11rem;
}


/* Card Structure and Background Glow */
.organizer-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    -webkit-transition: transform 0.3s ease, border-color 0.3s ease;
    -moz-transition: transform 0.3s ease, border-color 0.3s ease;
    -ms-transition: transform 0.3s ease, border-color 0.3s ease;
    -o-transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.organizer-card:hover {
    transform: translateY(-5px);
    border-color: #8cb805;
}

/* Image treatment (Adding subtle dark radial gradient behind portraits) */
.image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: flex-end;
}

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

/* Text Overlay Positioning */
.card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.organizer-name {
    font-family: var(--font-bold);
    font-size: 23.98px;
    line-height: 1.1;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--primary);
}

.organizer-role {
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--white);
    margin-top: 5px;
    margin-bottom: 0px;
    min-height: 28px;
}

/* Custom Owl Navigation Styling (Matching the green chevrons) */
.organizers-slider .owl-nav button.owl-prev,
.organizers-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    color: #8cb805 !important;
    font-size: 2.5rem !important;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
    padding: 0 10px !important;
}

.organizers-slider .owl-nav button.owl-prev:hover,
.organizers-slider .owl-nav button.owl-next:hover {
    color: #ffffff !important;
}

/* Position chevrons outside the carousel bounds on desktop layout */
.organizers-slider .owl-nav button.owl-prev {
    left: -80px;
}

.organizers-slider .owl-nav button.owl-next {
    right: -80px;
}

/* Hide default Owl dots to keep look clean like screenshot */
.organizers-slider .owl-dots {
    display: none !important;
}

.organizers-slider.owl-carousel .owl-stage {
    padding: 20px 10px;
}

.organizers-slider.owl-carousel .owl-nav.disabled {
    display: block;
}

.organizers-slider.owl-carousel .owl-nav.disabled button,
.organizers-slider.owl-carousel .owl-nav button {
    background: transparent !important;
    border: none !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: transparent !important;
    border: none !important;
}

/* Adjustments for responsive view constraints */
@media (max-width: 1200px) {
    .organizers-slider .owl-nav button.owl-prev {
        left: -15px;
        background: transparent !important;
        border: none !important;
    }

    .organizers-slider .owl-nav button.owl-next {
        right: -15px;
        background: transparent !important;
        border: none !important;
    }
}


.sponsors-section {
    padding-bottom: 11rem;
}

.sponsors-slider {
    margin-top: 6rem;
}

.sponsors-card img {
    max-width: 150px;
    margin: 0px auto;
    object-fit: contain;
    height: 72px;
}

.sponsors-card p {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1vw + 0.8rem, 2rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--white);
    text-align: center;
    max-width: 230px;
    margin: 0px auto;
    margin-top: 15px;
    min-height: 44px;
}

.for-mobile {
    display: none;
}

/* ================== */

.sponsor-logo-sections {
    padding-bottom: 11rem;
}

.sponsor-logo-sections h2 {
    margin-bottom: 6rem;
}

/* GRID */
.sponsor-grid {
    display: grid;
    gap: 30px;
    position: relative;
    padding-bottom: 32px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
    max-width: 1200px;
    margin: 0px auto;
    margin-bottom: 32px;
}

/* Bottom Border using ::after */
.sponsor-grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.sponsor-grid-1 {
    grid-template-columns: 1fr;
    padding-bottom: 15px;
}

.sponsor-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0px auto;
}

.sponsor-grid-4.sponsor-grid::after {
    width: 50%;
}

.sponsor-grid-4 {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.1fr 1.3fr;
    gap: 30px;
    max-width: 1300px;
    margin: 0px auto;
}

.sponsor-grid-4 .sponsor-logo img,
.sponsor-grid-3 .sponsor-logo img {
    max-width: 100%;
}

.sponsor-grid-1 .sponsor-label {
    font-size: clamp(1.6rem, 1vw + 0.8rem, 2.4rem);
}

.sponsor-grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 668px;
}

.sponsor-grid-5 {
    grid-template-columns: 1.1fr 1.1fr 1.1fr 0.8fr 0.8fr;
}

.sponsor-grid-second.sponsor-grid::after {
    max-width: 668px;
}

.sponsor-grid-third.sponsor-grid::after {
    max-width: 440px;
}

.sponsor-grid-third.sponsor-grid-6 {
    grid-template-columns: 1.2fr 1.2fr 1.2fr 0.8fr 0.8fr 0.8fr;
    max-width: 1200px;
}

.sponsor-grid-third.sponsor-grid-6 .sponsor-logo img {
    max-width: 170px;
}

.sponsor-grid.sponsor-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-grid-2 .sponsor-logo {
    height: 84px;
}

.sponsor-grid-2 .sponsor-logo img {
    max-width: 293px;
    max-height: 84px;
}

.sponsor-grid-5 .sponsor-logo {
    height: 70px;
}

.sponsor-grid-5 .sponsor-logo img {
    max-width: 293px !important;
    max-height: 70px;
}

.sponsor-grid-5 .sponsor-item {
    padding: 10px 5px;
}


.sponsor-grid-third .sponsor-logo img {
    max-width: 120px;
    max-height: 50px;
}

.sponsor-grid-four {
    max-width: 362px;
}

/* ITEM */
.sponsor-item {
    text-align: center;
    position: relative;
    padding: 10px 20px;
}

/* Vertical Divider */
.sponsor-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 70%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #fff;
}


.sponsor-label {
    font-family: var(--font-medium);
    font-size: clamp(1.6rem, 1vw + 0.8rem, 2rem);
    line-height: normal;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--pera);
    margin-bottom: 2.5rem;
}

.sponsor-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    transition: 0.3s ease;
}

.support-logos img {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.sponsor-logo img:hover,
.support-logos img:hover {
    transform: scale(1.05);
}

/* SUPPORT */
.support-wrapper {
    text-align: center;
}

.support-logos {
    /* margin-top: 25px; */
    position: relative;
}



.support-logos:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 33px;
    background: #fff;
}

.sponsor-grid-four {
    padding-bottom: 0;
    margin-bottom: 0;
}

.sponsor-grid-four::after {
    display: none;
}


/* RESPONSIVE */
/* @media(max-width:991px) {

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

    .sponsors-title {
        font-size: 42px;
    }

    .sponsor-item:nth-child(2)::after {
        display: none;
    }
} */



/* @media(max-width:576px) {

    .sponsor-grid-2,
    .sponsor-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .sponsors-title {
        font-size: 34px;
    }

    .sponsor-label {
        font-size: 15px;
    }

} */

.sponsor-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 950px;
    margin: 0px auto;
}

.mobilesponsor {
    display: none;
}


/* ==========================================
           RESPONSIVE
        ========================================== */
@media (max-width: 991.98px) {
    .discussion-box {
        padding: 5rem 3rem;
    }

    .discussion-content {
        flex-direction: column;
        text-align: center;
    }

    .discussion-heading {
        white-space: normal;
    }

    .flow-item {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .discussion-section {
        padding: 0rem 1.5rem;
    }

    .intent-section {
        padding: 5rem 1.5rem 8rem;
    }

    .discussion-box {
        padding: 4rem 2rem;
    }

    .discussion-flow {
        gap: 2.4rem;
    }

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

    .intent-title {
        line-height: 1.3;
    }
}


@media only screen and (max-width: 1399px) {
    .hero-content {
        text-align: center;
        max-width: 663px;
    }

    .organization-left img {
        width: 100% !important;
        max-width: 150px !important;
        height: auto !important;
    }

}


@media only screen and (max-width: 1199px) {
    .hero-section {
        padding-top: 120px;
    }

    .shift-section {
        padding-top: 100px;
    }

    .shift-grid {
        margin-bottom: 12rem;
    }

    .unlock-card.shifted {
        transform: translateY(0rem);
        -webkit-transform: translateY(0rem);
        -moz-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
        -o-transform: translateY(0rem);
    }

    .unlocks-title {
        top: 0;
        margin-bottom: 3rem;
    }

    .unlocks-section .shift-grid {
        margin-bottom: 0px;
    }

    .custom-tab-wrapper {
        background-color: #141414;
    }

    .hero-logo {
        max-width: 350px;
    }

    .shift-grid {
        margin-bottom: 10rem;
    }

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

    .sponsor-grid-5,
    .sponsor-grid-third.sponsor-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media only screen and (max-width: 991px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .brand-logo {
        max-width: 300px;
    }

    .gradiantbgleft {

        width: 100%;
    }

    .gradiantbgright {
        width: 100%;
    }

    .tab-pane-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .investment_pool_content {
        flex-direction: column;
    }

    .investment_pool_content h2,
    .investment_pool_content h3 {
        text-align: center;
    }

    .investment_pool {
        padding: 50px 20px;
        margin-top: 6rem;
    }

    .selection-step-wrp {
        grid-template-columns: repeat(3, 1fr);
    }

    .organization-left,
    .stats-grid {
        flex: unset;
    }

    .organization-wrapper {
        margin-top: 7rem;
    }

    .sponsor-grid-5 .sponsor-logo img,
    .sponsor-grid-third.sponsor-grid-6 .sponsor-logo img {
        max-width: 100% !important;
    }


}


@media only screen and (max-width: 767px) {
    .shift-section {
        padding-top: 70px;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-logo {
        max-width: 250px;
    }

    .brand-logo {
        max-width: 300px;
    }

    .shift-grid {
        margin-bottom: 2rem;
    }

    .unlocks-section {
        padding: 7rem 0;
    }

    .flow-item:nth-child(2) {
        margin-left: 0px;
    }

    .flow-item {
        justify-content: start;
    }

    .intent-section {
        padding: 5rem 1.5rem;
    }

    .benefits-section {
        padding: 70px 0px;
    }

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

    .step-card {
        max-width: 150px;
    }

    .organized-section {
        padding: 7rem 0;
        padding-top: 1rem;
    }

    .sponsors-section,
    .organizers-section {
        padding-bottom: 7rem;
    }

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

    .sponsor-grid-2 .sponsor-logo img {
        max-width: 100%;
    }

    .sponsor-grid-5,
    .sponsor-grid-third.sponsor-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-four {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsor-grid {
        row-gap: 15px;
    }

    .sponsor-item:has(.sponsor-logo):nth-child(even):after {
        display: none;
    }

    .mobilesponsor {
        display: block;
    }

    .desktopsponsor {
        display: none;
    }
}


@media only screen and (max-width: 575px) {
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .selection-step-wrp {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 5rem;
    }

    .step-card {
        max-width: 280px;
        margin: 0px auto;
        text-align: center;
    }

    .step-text {
        margin: 0px auto;
    }

    .step-card::after {
        top: auto;
        right: auto;
        bottom: -35px;
        left: 44%;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        width: 41px;
        height: 6px;
    }

    .stats-item h3 {
        font-size: 20px;
    }

    .stats-item {
        padding: 5rem 2.5rem;
    }

    .stats-item:nth-child(odd) {
        padding-left: 40px;
    }

    .organization-left,
    .stats-grid {
        flex-direction: column;

    }

    .organization-left {
        gap: 3rem;
    }

    .organization-left h3,
    .organization-left p {
        text-align: center;
    }

    .organizers-section {
        padding-top: 0rem;
    }

    .sponsors-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tab-pane-content {
        flex-direction: column-reverse;
        display: flex;
    }

    .benefit-text {
        font-size: 14px;
        max-width: 80px;
        margin-bottom: 1rem;
    }

    .benefit-card p {
        font-size: 12px;
        max-width: 110px;
        line-height: 1.5;
        margin: 0px auto;
    }

    .benefit-icon {
        border: 0.47px solid;
        border-image-source: linear-gradient(180deg, #2E2E2E 0%, #2E2E2E 100%);
    }

    .benefit-card {
        max-width: 110px;
        margin: 0px auto;
    }

    .industry-section {
        padding: 7rem 2.5rem;
        padding-bottom: 7rem;
    }

    .tab-pane-content .row .col-lg-4:nth-child(1) .benefit-card,
    .tab-pane-content .row .col-lg-4:nth-child(4) .benefit-card {
        margin: 0px;
    }

    .tab-pane-content .row .col-lg-4:nth-child(2) .benefit-card,
    .tab-pane-content .row .col-lg-4:nth-child(5) .benefit-card {
        margin: 0px;
        margin-left: auto;
    }

    .tab-pane-content .row .col-lg-4:nth-child(3) .benefit-card {
        margin-top: -68px;
    }

    .tab-pane-content .row .col-lg-4:nth-child(4) .benefit-card,
    .tab-pane-content .row .col-lg-4:nth-child(5) .benefit-card {
        margin-top: -68px;
    }

    .tab-pane-content h6 {
        margin-bottom: 2rem;
    }

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

    .tab-pane-content {
        padding: 4rem 0;
        padding-bottom: 0px;
    }

    .tab-pane-content>div:has(.benefit-card) {
        padding: 0px 2rem;
    }

    .custom-form {
        background-color: rgba(153, 211, 19, 0.3);
        padding: 15px 10px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        height: 48px !important;
        border: 1px solid rgba(153, 211, 19, 0.6) !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        -webkit-border-radius: 10px !important;
        -moz-border-radius: 10px !important;
        -ms-border-radius: 10px !important;
        -o-border-radius: 10px !important;
        color: rgba(153, 211, 19, 0.6) !important;
        background-color: rgba(24, 25, 23, 0.6) !important;
    }

    .form-control-custom::placeholder {
        font-size: 17px !important;
        color: rgba(153, 211, 19, 0.6) !important;
    }

    .custom-form .row {
        --bs-gutter-y: none !important;
    }

    .custom-form .col-md-6 {
        padding-right: 0px !important;

    }

    .custom-form .wpcf7-form-control.wpcf7-submit {
        margin-top: 2rem !important;
        width: 100% !important;
    }

    .wpcf7-not-valid-tip {
        color: var(--white);
        font-size: 13px !important;
    }

    .for-mobile {
        display: block;
    }

    .for-desktop {
        display: none;
    }

    .tab-pane-content .row:has(.benefit-card) h5 {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .sponsor-item:has(.sponsor-logo):nth-child(even):after {
        display: none;
    }
}


@media only screen and (max-width: 400px) {
    .industry-section {
        padding: 7rem 0.5rem;
    }

    .tab-pane-content>div:has(.benefit-card) {
        padding: 0px 1rem;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.signup_head {
    max-width: 720px;
    margin: 0px auto;
    padding: 20px 0px;
}

.signup_head h1 {
    font-family: "Raleway", sans-serif;
    font-size: clamp(3.2rem, 2.4rem + 2vw, 4.8rem);
    font-weight: 700;
    line-height: normal;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.signup_head h2 {
    font-family: "Inter" !important;
    font-size: clamp(2.2rem, 1.8rem + 1vw, 3.2rem) !important;
    line-height: normal !important;
    text-transform: capitalize !important;
    color: var(--white) !important;
    text-align: center !important;
    padding-bottom: clamp(1.2rem, 1rem + 0.5vw, 2rem);
    margin-bottom: clamp(1.2rem, 1rem + 0.5vw, 2rem);
    border-bottom: 1px dotted #262626;
    font-weight: 500;
}

.signup_head h4 {
    font-family: "Inter" !important;
    font-weight: 500;
    font-size: clamp(1.8rem, 1.5rem + 0.8vw, 2.4rem) !important;
    line-height: normal !important;
    color: var(--white);
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
    opacity: 75%;
}


.progress-bar {
    position: sticky;
    top: 100px;
    z-index: 99;
    background: #0C0C0C !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #1A1A1A;
    padding: 17px 24px !important;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
}

.progress-steps {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: max-content;
    max-width: 720px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.progress-step.active .step-num {
    background: #A2E02B;
    border-color: #A2E02B;
    color: #000000 !important;
}

.step-num {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid #333;
    color: #707070 !important;
    transition: all 0.3s;
    flex-shrink: 0;
}

.step-label {
    font-size: 12px;
    color: #707070;
    font-weight: 500;
    transition: color 0.3s;
}

.progress-step.active .step-label {
    color: #fff !important;
}

.step-connector {
    width: 17px !important;
    height: 2px;
    background: #707070 !important;
    flex-shrink: 0;
    border-radius: 1px;
}


.main-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 80px;
}


.form-section {
    scroll-margin-top: 120px;
}

.form-section {
    background: #1A1A1A;
    border: 1px solid #262626;
    border-radius: 12px !important;
    padding: 29px 25px !important;
    margin-bottom: 50px !important;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    -ms-border-radius: 12px !important;
    -o-border-radius: 12px !important;
}

.section-header {
    margin-bottom: 70px !important;
    padding-bottom: 0px !important;
    border-bottom: none !important;
}

.section-title {
    font-family: "Raleway", sans-serif !important;
    font-size: clamp(2.8rem, 2.2rem + 1vw, 3.9rem) !important;
    font-weight: 700 !important;
    color: #fff;
    letter-spacing: 0 !important;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    font-size: 14px;
    color: var(--white) !important;
    line-height: 1.5;
    text-align: center;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 6px;
}

.field-label .req {
    color: #A2E02B;
    margin-left: 2px;
}



.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="url"],
.form-section input[type="tel"],
.form-section input[type="number"],
.form-section select,
.form-section textarea {
    width: 100%;
    background: #222222 !important;
    border: 1px solid #333;
    border-radius: 8px !important;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}


.radio-option .option-label,
.checkbox-option .option-label {
    display: inline-block;
    padding: 8px 16px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 13px;
    color: #ccc;
    transition: all 0.2s;
    user-select: none;
}

.radio-option input:checked+.option-label,
.checkbox-option input:checked+.option-label {
    background: rgba(162, 224, 43, 0.15) !important;
    border-color: #A2E02B;
    color: #A2E02B;
}

.form-section select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    border-color: #A2E02B;
    box-shadow: 0 0 0 3px rgba(162, 224, 43, 0.1);
}

.form-section select option {
    background: #222;
    color: #fff;
}

.file-upload {
    border: 1px dashed #333;
    border-radius: 8px !important;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #1a1a1a;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}

.field-helper {
    font-size: 12px;
    color: #555555 !important;
    margin-top: 4px;
    line-height: 1.4;
    font-weight: 500;
}

.field-error {
    font-size: 12px;
    color: #e04040;
    margin-top: 4px;
    display: none;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-text {
    font-size: 14px;
    color: #555555 !important;
    font-weight: 500;
}

.file-upload-text strong {
    color: #A2E02B;
}

.agreement-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px !important;
    background: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    padding-bottom: 25px !important;
    cursor: pointer;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    margin-top: 40px !important;
}

.agreement-box label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #E4E4E4 !important;
}

.agreement-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #555;
    border-radius: 4px;
    background: #1A1A1A;
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agreement-text {
    font-size: 13px;
    color: #E4E4E4 !important;
    line-height: 1.5;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #A2E02B;
    color: #000 !important;
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    font-family: "Raleway", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0 !important;
    -webkit-transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    -moz-transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    -ms-transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    -o-transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    margin-top: 70px !important;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(162, 224, 43, 0.25);
}

@media only screen and (max-width: 575px) {
    .form-section {
        padding: 29px 15px !important;
    }
}




:root {
    /* ====fonts==== */
    --font-regular: "Exo2-Regular";
    --font-medium: "Exo2-Medium";
    --font-semibold: "Exo2-SemiBold";
    --font-bold: "Exo2-Bold";
    --font-extrabold: "Exo2-ExtraBold";
    --font-black: "Exo2-Black";

    --font-sub-italic: "InstrumentSerif-Italic";
    --font-sub-regular: "InstrumentSerif-Regular";

    /* ====colors==== */
    --black: #000000;
    --white: #fff;
    --primary: #99D313;
    --pera: #C3C3C3;
    --gradient1: linear-gradient(180deg, #99D313 32.76%, rgba(153, 211, 19, 0) 100%);
    --gradient2: linear-gradient(180deg, #FFFFFF 32.76%, rgba(153, 153, 153, 0) 100%);

}

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

html {
    font-size: 62.5%;
}

body {
    background-color: var(--black);
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}