/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Bengali", sans-serif;
    background: #f5f8fc;
    color: #172033;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* ==========================================
   BACKGROUND
========================================== */

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(13, 110, 150, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(13, 110, 150, .025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .18;
    animation: float 9s infinite ease-in-out;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #00a9df;
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #6c3cff;
    right: -180px;
    bottom: -150px;
    animation-delay: 3s;
}

@keyframes float {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -35px);
    }
}


/* ==========================================
   PAGE
========================================== */

.page {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    padding: 25px 0 35px;
}


/* ==========================================
   TOP BAR
========================================== */

.topbar {
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: white;

    border-radius: 13px;

    background:
        linear-gradient(135deg, #008fc4, #005d98);

    box-shadow:
        0 10px 25px rgba(0, 125, 175, .2);
}

.brand strong {
    display: block;
    font-size: 19px;
    color: #12304a;
}

.brand small {
    display: block;
    color: #8392a5;
    font-size: 10px;
    margin-top: -2px;
}

.secure {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #15926c;

    background: #e9faf4;

    padding: 8px 13px;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
}


/* ==========================================
   HERO
========================================== */

.hero {
    display: grid;
    grid-template-columns: 1.5fr .65fr;
    gap: 35px;

    padding: 42px;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(24, 48, 75, .10);

    backdrop-filter: blur(20px);

    animation: heroIn .8s ease both;
}

@keyframes heroIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #008bbd;
    background: #eaf8fd;

    border-radius: 30px;

    padding: 7px 13px;

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 15px;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.3;

    color: #122c43;

    font-weight: 800;
}

.hero h1 span {
    color: #008fbd;
}

.hero-description {
    color: #718096;
    font-size: 14px;
    margin-top: 12px;
}


/* ==========================================
   REQUIREMENTS
========================================== */

.requirements {
    display: grid;
    gap: 12px;

    margin-top: 27px;
}

.requirement-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 55px 14px 14px;

    background: #fff;

    border: 1px solid #e8eef4;
    border-radius: 15px;

    transition: .35s ease;

    opacity: 0;
    transform: translateY(25px);
}

.requirement-card.show {
    opacity: 1;
    transform: translateY(0);
}

.requirement-card:hover {
    transform: translateX(7px);

    border-color: #a8ddeb;

    box-shadow:
        0 12px 30px rgba(0, 130, 180, .10);
}

.requirement-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #008dbd;
    background: #e9f8fd;
}

.requirement-icon.blue {
    color: #536dfe;
    background: #eef0ff;
}

.requirement-icon.green {
    color: #08a77b;
    background: #e7faf4;
}

.requirement-card h3 {
    font-size: 14px;
    color: #20354a;
}

.requirement-card p {
    color: #7a8796;
    font-size: 12px;
    margin-top: 3px;
}

.step {
    position: absolute;
    right: 15px;

    color: #b3c0cc;
    font-size: 11px;
    font-weight: 800;
}


/* ==========================================
   APPLY CARD
========================================== */

.hero-right {
    display: flex;
}

.apply-card {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px 25px;

    border-radius: 22px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #087fae,
            #07527d
        );

    box-shadow:
        0 25px 45px rgba(0, 92, 135, .25);

    overflow: hidden;

    position: relative;
}

.apply-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    top: -90px;
    right: -70px;
}

.apply-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);

    bottom: -70px;
    left: -50px;
}

.apply-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background: rgba(255,255,255,.14);

    font-size: 24px;

    margin-bottom: 17px;

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255,255,255,0);
    }
}

.apply-card > span {
    font-size: 11px;
    opacity: .75;
}

.apply-card h2 {
    margin-top: 5px;
    font-size: 23px;
}

.apply-card p {
    font-size: 12px;
    line-height: 1.8;
    opacity: .75;
    margin: 10px 0 20px;
}

.primary-btn {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 22px 13px;
    border-radius: 11px;

    color: #07527d;
    background: white;

    font-size: 14px;
    font-weight: 800;

    transition: .35s ease;
}

.primary-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.2);
}

.secure-text {
    margin-top: 14px;

    font-size: 10px;
    opacity: .7;
}


/* ==========================================
   NOTICE
========================================== */

.notice {
    margin-top: 30px;

    padding: 32px;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 18px 55px rgba(25, 45, 65, .08);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 22px;
}

.title-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #008bb9;
    background: #e9f8fd;

    font-size: 18px;
}

.section-title span {
    color: #008dbb;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.section-title h2 {
    color: #203449;
    font-size: 23px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 13px;

    border-radius: 12px;

    background: #f8fafc;

    opacity: 0;
    transform: translateY(15px);

    transition: .3s ease;
}

.notice-item.show {
    opacity: 1;
    transform: translateY(0);
}

.notice-item:hover {
    background: #eff9fc;
}

.notice-item > i {
    color: #0aae83;
    margin-top: 4px;
    font-size: 12px;
}

.notice-item p {
    color: #687789;
    font-size: 12px;
    line-height: 1.7;
}


/* ==========================================
   VIDEO SECTION
========================================== */

.videos {
    margin-top: 45px;
}

.heading {
    text-align: center;
    margin-bottom: 25px;
}

.heading > span {
    color: #008bb8;
    font-size: 11px;
    font-weight: 800;
}

.heading h2 {
    margin-top: 4px;
    font-size: 28px;
    color: #182f44;
}

.heading p {
    color: #81909e;
    font-size: 12px;
    margin-top: 4px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.video-card {
    background: white;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 18px 50px rgba(20,40,60,.10);

    transition: .4s ease;

    opacity: 0;
    transform: translateY(25px);
}

.video-card.show {
    opacity: 1;
    transform: translateY(0);
}

.video-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(20,40,60,.16);
}

.video {
    position: relative;

    aspect-ratio: 16 / 9;

    background: #111;
}

.video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-label {
    position: absolute;
    left: 15px;
    top: 15px;

    padding: 5px 10px;

    border-radius: 20px;

    color: white;
    background: #008fbd;

    font-size: 9px;
    font-weight: 800;
}

.video-label.red {
    background: #ed3546;
}

.video-info {
    padding: 20px;
}

.video-info > span {
    color: #008fbd;
    font-size: 10px;
    font-weight: 800;
}

.video-info h3 {
    margin-top: 5px;

    color: #203449;
    font-size: 17px;
}

.video-info p {
    margin-top: 4px;

    color: #84909d;
    font-size: 11px;
}

.video-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;

    color: #008ab7;

    font-size: 11px;
    font-weight: 800;

    transition: .3s;
}

.video-info a:hover {
    gap: 13px;
}


/* ==========================================
   QUICK ACTIONS
========================================== */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin-top: 30px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 20px;

    border-radius: 17px;

    color: white;

    box-shadow:
        0 12px 30px rgba(20,40,60,.12);

    transition: .35s ease;

    opacity: 0;
    transform: translateY(20px);
}

.quick-card.show {
    opacity: 1;
    transform: translateY(0);
}

.quick-card:hover {
    transform: translateY(-5px);
}

.quick-card > div {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: rgba(255,255,255,.15);
}

.quick-card span {
    flex: 1;

    font-size: 13px;
    font-weight: 800;
}

.quick-card small {
    display: block;

    opacity: .7;

    font-size: 9px;
    margin-bottom: 2px;
}

.quick-card .arrow {
    opacity: .7;
}

.quick-card.cyan {
    background: linear-gradient(135deg,#08a7c9,#007aa8);
}

.quick-card.red {
    background: linear-gradient(135deg,#fa414e,#d91627);
}


/* ==========================================
   FINAL CTA
========================================== */

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 30px;

    padding: 30px 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #0b263d,
            #074b6e
        );

    color: white;

    box-shadow:
        0 20px 45px rgba(5,45,70,.20);

    opacity: 0;
    transform: translateY(20px);
}

.final-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.final-cta span {
    color: #67dfff;
    font-size: 10px;
    font-weight: 800;
}

.final-cta h2 {
    font-size: 25px;
    margin-top: 2px;
}

.final-cta p {
    font-size: 11px;
    opacity: .65;
}

.final-cta > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 10px;

    color: #07527d;
    background: white;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    transition: .35s;
}

.final-cta > a:hover {
    transform: scale(1.04);
}


/* ==========================================
   HOME
========================================== */

.home-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    padding: 12px;

    border-radius: 9px;

    background: #08b68e;

    color: white;

    font-size: 13px;
    font-weight: 800;

    transition: .3s;
}

.home-btn:hover {
    background: #079c7a;
    transform: translateY(-3px);
}


/* ==========================================
   FOOTER
========================================== */

footer {
    display: flex;
    justify-content: space-between;

    padding: 20px 5px 5px;

    color: #98a5b3;

    font-size: 10px;
}

footer strong {
    color: #607285;
}


/* ==========================================
   TABLET
========================================== */

@media(max-width: 850px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        width: 100%;
    }

    .apply-card {
        min-height: 330px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width: 600px) {

    .page {
        width: min(100% - 20px, 520px);
        padding-top: 12px;
    }

    .topbar {
        height: auto;
    }

    .brand small {
        display: none;
    }

    .secure {
        font-size: 9px;
        padding: 7px 9px;
    }

    .hero {
        padding: 22px 16px;
        border-radius: 20px;
        gap: 20px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero-description {
        font-size: 12px;
    }

    .requirement-card {
        padding: 12px 45px 12px 10px;
    }

    .requirement-card h3 {
        font-size: 12px;
    }

    .requirement-card p {
        font-size: 10px;
    }

    .requirement-icon {
        width: 37px;
        height: 37px;
    }

    .notice {
        padding: 20px 15px;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 19px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .heading h2 {
        font-size: 23px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
    }

    .final-cta > a {
        width: 100%;
        justify-content: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width: 380px) {

    .brand strong {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .apply-card h2 {
        font-size: 20px;
    }

    .video-info h3 {
        font-size: 15px;
    }

}

/* =========================================
   PREMIUM ANIMATION & EFFECTS
========================================= */

/* ---------- Smooth Selection ---------- */

::selection {
    background: #008fbd;
    color: #fff;
}


/* ---------- Page Loading ---------- */

body {
    animation: pageLoad 1s ease both;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* =========================================
   PREMIUM BACKGROUND LIGHT
========================================= */

.background::after {
    content: "";

    position: absolute;
    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 180, 240, .12),
            transparent 65%
        );

    left: 50%;
    top: 35%;

    transform: translate(-50%, -50%);

    animation: backgroundPulse 6s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 1;
    }
}


/* =========================================
   TOPBAR ANIMATION
========================================= */

.topbar {
    animation: topbarIn .8s cubic-bezier(.2,.8,.2,1);
}

@keyframes topbarIn {

    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.brand-icon {
    transition: .4s ease;
}

.brand:hover .brand-icon {
    transform:
        rotate(-8deg)
        scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 145, 200, .35);
}


/* =========================================
   HERO PREMIUM EFFECT
========================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 500px;

    top: -100px;
    left: -220px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.65),
            transparent
        );

    transform: rotate(20deg);

    animation: heroShine 7s infinite;
}

@keyframes heroShine {

    0% {
        left: -250px;
    }

    30%,
    100% {
        left: 120%;
    }
}


/* =========================================
   EYEBROW GLOW
========================================= */

.eyebrow {
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* =========================================
   HERO TITLE
========================================= */

.hero h1 {
    animation: titleReveal 1s .2s both;
}

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =========================================
   REQUIREMENT CARD
========================================= */

.requirement-card {
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: "";

    position: absolute;

    width: 4px;
    height: 0;

    left: 0;
    top: 50%;

    background:
        linear-gradient(
            #00b9ef,
            #0074aa
        );

    transform: translateY(-50%);

    transition: .4s ease;
}

.requirement-card:hover::before {
    height: 70%;
}

.requirement-card:hover .requirement-icon {
    transform:
        rotate(8deg)
        scale(1.1);
}

.requirement-icon {
    transition: .4s cubic-bezier(.2,.8,.2,1);
}


/* =========================================
   STEP NUMBER
========================================= */

.step {
    transition: .4s ease;
}

.requirement-card:hover .step {
    color: #008fbd;

    transform:
        scale(1.25)
        rotate(-8deg);
}


/* =========================================
   APPLY CARD GLOW
========================================= */

.apply-card {
    isolation: isolate;
}

.apply-card::before {
    animation: applyOrb 7s ease-in-out infinite;
}

@keyframes applyOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-35px, 30px);
    }
}


/* =========================================
   APPLY CARD BORDER GLOW
========================================= */

.apply-card {
    border: 1px solid rgba(255,255,255,.12);

    animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.primary-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 200%;

    left: -100px;
    top: -50%;

    transform: rotate(25deg);

    background:
        rgba(255,255,255,.75);

    transition: .7s ease;
}

.primary-btn:hover::before {
    left: 130%;
}

.primary-btn i {
    transition: .35s ease;
}

.primary-btn:hover i {
    transform: translateX(6px);
}


/* =========================================
   NOTICE ITEM
========================================= */

.notice-item {
    position: relative;
    overflow: hidden;
}

.notice-item::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(0,160,210,.05);

    right: -40px;
    bottom: -50px;

    transform: scale(0);

    transition: .5s ease;
}

.notice-item:hover::after {
    transform: scale(2);
}


/* =========================================
   NOTICE CHECK ICON
========================================= */

.notice-item > i {
    transition: .35s ease;
}

.notice-item:hover > i {
    transform:
        scale(1.3)
        rotate(10deg);
}


/* =========================================
   VIDEO CARD
========================================= */

.video-card {
    position: relative;
}

.video-card .video {
    overflow: hidden;
}

.video-card .video iframe {
    transition:
        transform .7s cubic-bezier(.2,.8,.2,1),
        filter .7s ease;
}

.video-card:hover .video iframe {
    transform: scale(1.04);

    filter:
        brightness(1.08)
        contrast(1.03);
}


/* =========================================
   VIDEO LABEL
========================================= */

.video-label {
    transition: .35s ease;
}

.video-card:hover .video-label {
    transform:
        translateY(-3px)
        scale(1.05);

    box-shadow:
        0 8px 20px rgba(0,0,0,.2);
}


/* =========================================
   VIDEO CONTENT
========================================= */

.video-info h3 {
    transition: .35s ease;
}

.video-card:hover .video-info h3 {
    color: #008bb9;
}


/* =========================================
   QUICK CARD
========================================= */

.quick-card {
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 300%;

    top: -100%;
    left: -180px;

    transform: rotate(25deg);

    background:
        rgba(255,255,255,.12);

    transition: .8s ease;
}

.quick-card:hover::before {
    left: 130%;
}

.quick-card > div {
    transition: .4s ease;
}

.quick-card:hover > div {
    transform:
        rotate(-8deg)
        scale(1.1);
}

.quick-card .arrow {
    transition: .35s ease;
}

.quick-card:hover .arrow {
    transform: translateX(7px);
}


/* =========================================
   FINAL CTA GLOW
========================================= */

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        rgba(0, 190, 240, .13);

    right: -70px;
    top: -100px;

    animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }
}

.final-cta > div,
.final-cta > a {
    position: relative;
    z-index: 2;
}


/* =========================================
   CTA BUTTON PULSE
========================================= */

.final-cta > a {
    position: relative;
}

.final-cta > a::after {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 13px;

    border: 1px solid rgba(255,255,255,.5);

    animation: buttonPulse 2.2s infinite;
}

@keyframes buttonPulse {

    0% {
        opacity: .8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}


/* =========================================
   HOME BUTTON
========================================= */

.home-btn {
    position: relative;
    overflow: hidden;
}

.home-btn::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 200%;

    left: -150px;
    top: -50%;

    transform: rotate(25deg);

    background:
        rgba(255,255,255,.25);

    transition: .7s ease;
}

.home-btn:hover::before {
    left: 120%;
}

.home-btn i {
    transition: .35s ease;
}

.home-btn:hover i {
    transform:
        translateY(-2px)
        rotate(-8deg);
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eef3f7;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            #00a5d5,
            #006e9f
        );

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005f8d;
}


/* =========================================
   MOBILE PERFORMANCE
========================================= */

@media(max-width:600px) {

    .hero::before {
        animation-duration: 10s;
    }

    .apply-card {
        animation-duration: 6s;
    }

    .video-card:hover {
        transform: translateY(-4px);
    }

    .requirement-card:hover {
        transform: translateX(3px);
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}