* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f10;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 88px;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

section {
    width: 100%;
    background: #0f0f10;
}

h1,
h2,
h3,
h4 {
    color: #ffffff;
}

p {
    color: #dddddd;
}


/* =========================================================
COMMON
========================================================= */

.section-heading {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.section-heading > p:last-child {
    color: #dddddd;
    font-size: 16px;
    line-height: 1.5;
}

.small-heading {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 15px;
    background: #ffad00;
    color: #111111 !important;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-button {
    text-align: center;
    margin-top: 25px;
}


/* =========================================================
BUTTONS
========================================================= */

.cta-button {
    display: inline-block;
    padding: 14px 24px;
    background: #3218ff;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cta-button:hover {
    background: #4b35ff;
    transform: translateY(-2px);
}

.yellow-cta {
    background: #ffad00 !important;
    color: #111111 !important;
}

.yellow-cta:hover {
    background: #ffbd2e !important;
    color: #111111 !important;
}


/* =========================================================
CTA ANIMATION
========================================================= */

.cta-button {
    animation: strongButtonShake 2s infinite;
}

@keyframes strongButtonShake {

    0%,
    75%,
    100% {
        transform: translateX(0);
    }

    78% {
        transform: translateX(-6px);
    }

    81% {
        transform: translateX(6px);
    }

    84% {
        transform: translateX(-6px);
    }

    87% {
        transform: translateX(6px);
    }

    90% {
        transform: translateX(-3px);
    }

    93% {
        transform: translateX(3px);
    }

    96% {
        transform: translateX(0);
    }
}


/* =========================================================
HERO
========================================================= */

.hero {
    width: 100%;
    padding: 20px 20px 50px;
    background: #0f0f10;
}

.hero-content {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 28px;
    text-align: center;
}

.hero-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: #ffad00;
    color: #111111 !important;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
HERO TITLE
Increased by approximately 2 sizes
========================================================= */

.hero h1 {
    max-width: 950px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 4.6vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero h1 .yellow-text {
    color: #ffad00 !important;
    background: transparent !important;
    padding: 0 !important;
    display: inline !important;
}

.hero h1 .blue-highlight {
    display: inline !important;
    padding: 0 6px !important;
    background: #3218ff !important;
    color: #ffffff !important;
    border-radius: 3px;
}

.hero-content > p {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #eeeeee;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
HERO IMAGE + SIDE CONTENT
========================================================= */

.hero-learning {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    background: #0f0f10;
}

.hero-image {
    width: 100%;
    background: #0f0f10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image picture {
    display: block;
    width: 100%;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}


/* =========================================================
HERO SIDE CONTENT
========================================================= */

.hero-side-content {
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(
        135deg,
        #100d38 0%,
        #080813 100%
    );
    border-left: 1px solid #292942;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-side-content h2 {
    margin: 0 0 20px;
    color: #ffffff;
    text-align: center;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.hero-feature {
    margin-bottom: 13px;
}

.hero-feature h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.hero-feature p {
    margin: 0;
    color: #eeeeee;
    font-size: 13px;
    line-height: 1.4;
}

.hero-side-content .cta-button {
    width: 100%;
    margin-top: 4px;
    padding: 12px 18px;
    background: #ffad00;
    color: #111111;
}

.hero-side-content .cta-button:hover {
    background: #ffbd2e;
}


/* =========================================================
CTA BELOW HERO IMAGE
========================================================= */

.hero-bottom-cta {
    width: 100%;
    max-width: 1050px;
    margin: 20px auto 0;
    text-align: center;
}

.hero-bottom-cta .cta-button {
    min-width: 280px;
}


/* =========================================================
CERTIFICATIONS
========================================================= */

.certifications {
    padding: 45px 20px;
    background: #0f0f10;
}

.certificate-grid {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.certificate-card {
    padding: 6px;
    background: #11111a;
    border: 2px solid #ffad00;
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.certificate-card:hover {
    transform: translateY(-4px);
    border-color: #ffbd2e;
}

.certificate-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 7px;
}


/* =========================================================
WHO IS THIS PROGRAM FOR
========================================================= */

.who-program {
    padding: 50px 20px;
    background: #0f0f10;
}

.audience-grid {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.audience-card {
    padding: 23px;
    background: linear-gradient(
        135deg,
        #11112b,
        #080810
    );
    border: 2px solid #ffad00;
    border-radius: 14px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: #ffbd2e;
}

.audience-icon {
    margin-bottom: 11px;
    font-size: 27px;
}

.audience-card h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.25;
}

.audience-card p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
STUDENT REVIEWS
========================================================= */

.reviews {
    padding: 45px 20px;
    background: #0f0f10;
}

.review-grid {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.review-card {
    padding: 6px;
    background: #11111a;
    border: 2px solid #ffad00;
    border-radius: 13px;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: #ffbd2e;
}

.review-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
}


/* =========================================================
FOUNDER
========================================================= */

.founder {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 55px 20px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 45px;
    align-items: center;
    background: #0f0f10;
}

.founder-image img {
    width: 100%;
    border-radius: 16px;
}

.founder-content h2 {
    margin-bottom: 17px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.founder-content p {
    margin-bottom: 14px;
    color: #dddddd;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
CAREER PROGRAMS
========================================================= */

.programs {
    padding: 55px 20px;
    background: #0f0f10;
}

.program-grid {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.program-card {
    padding: 25px;
    background: #11111a;
    border: 1px solid #292942;
    border-radius: 14px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    border-color: #3218ff;
}

.program-number {
    margin-bottom: 12px;
    color: #ffad00;
    font-size: 13px;
    font-weight: 700;
}

.program-card h3 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

.program-card p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
}

.program-final-cta {
    margin-top: 25px;
}

.program-final-cta .cta-button {
    min-width: 280px;
}


/* =========================================================
CAREER PATH
========================================================= */

.career-path {
    padding: 55px 20px;
    background: #0f0f10;
}

.path-container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 17px 0;
    border-bottom: 1px solid #292942;
}

.path-number {
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3218ff;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.path-content {
    flex: 1;
}

.path-content h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

.path-content p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
TESTIMONIAL VIDEOS
========================================================= */

.testimonials {
    padding: 55px 20px;
    background: #0f0f10;
}

.video-grid {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.video-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #11111a;
    border: 1px solid #292942;
    border-radius: 13px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #3218ff;
    border-radius: 50%;
    font-size: 20px;
    padding-left: 4px;
    transition: transform 0.2s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}


/* =========================================================
WHY REACHX
========================================================= */

.why-reachx {
    padding: 55px 20px;
    background: #0f0f10;
}

.why-grid {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    padding: 23px;
    background: #11111a;
    border: 1px solid #292942;
    border-radius: 13px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: #3218ff;
}

.why-icon {
    margin-bottom: 12px;
    font-size: 29px;
}

.why-card h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

.why-card p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
FINAL CTA
========================================================= */

.final-cta {
    padding: 70px 20px;
    background: #0a0a0c;
    text-align: center;
}

.final-cta-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.final-cta-content > p:not(.small-heading):not(.cta-note) {
    margin-bottom: 22px;
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.5;
}

.cta-note {
    margin-top: 12px;
    color: #9ca3af;
    font-size: 12px;
}


/* =========================================================
LAPTOP / SMALL DESKTOP
901px - 1200px
========================================================= */

@media screen and (min-width: 901px) and (max-width: 1200px) {

    .hero {
        padding: 18px 18px 45px;
    }

    .hero-content {
        max-width: 850px;
        margin-bottom: 25px;
    }

    .hero h1 {
        max-width: 850px;
        font-size: 42px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-learning {
        max-width: 900px;
    }

    .hero-side-content {
        padding: 20px;
    }

    .hero-side-content h2 {
        font-size: 20px;
    }

    .hero-feature {
        margin-bottom: 12px;
    }

    .hero-feature h3 {
        font-size: 13px;
    }

    .hero-feature p {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .everything,
    .who-program,
    .programs,
    .career-path,
    .testimonials,
    .why-reachx {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .certificate-card img {
        height: 170px;
    }

    .review-card img {
        height: 210px;
    }

    .founder {
        max-width: 950px;
        grid-template-columns: 310px 1fr;
        gap: 40px;
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .founder-content h2 {
        font-size: 30px;
    }

    .founder-content p {
        font-size: 14px;
    }

    .final-cta {
        padding: 70px 20px;
    }

    .final-cta h2 {
        font-size: 34px;
    }
}


/* =========================================================
TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .founder {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .certificate-grid,
    .review-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
TABLET HERO
========================================================= */

@media screen and (max-width: 850px) {

    .hero {
        padding: 20px 15px 45px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-learning {
        grid-template-columns: 1fr 1fr;
    }

    .hero-side-content {
        padding: 20px;
    }

    .hero-side-content h2 {
        font-size: 21px;
    }

    .hero-feature p {
        font-size: 12px;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .section-heading > p:last-child {
        font-size: 14px;
    }

    .small-heading {
        margin-bottom: 10px;
        padding: 5px 12px;
        font-size: 10px;
    }

    .section-button {
        margin-top: 25px;
    }


    /* HERO */

    .hero {
        padding: 22px 12px 40px;
    }

    .hero-content {
        margin-bottom: 25px;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 24px !important;
        line-height: 1.18 !important;
        letter-spacing: 0 !important;
    }

    .hero-content > p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 18px;
    }


    /* HERO IMAGE */

    .hero-learning {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero-image {
        width: 100%;
        height: auto;
        display: block;
        overflow: hidden;
    }

    .hero-image picture {
        width: 100%;
        height: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 16px;
    }


    /* HERO SIDE */

    .hero-side-content {
        width: 100%;
        padding: 25px 18px 22px;
        border-left: none;
        border-top: 1px solid #292942;
    }

    .hero-side-content h2 {
        font-size: 21px;
        margin-bottom: 22px;
    }

    .hero-feature {
        margin-bottom: 16px;
    }

    .hero-feature h3 {
        font-size: 15px;
    }

    .hero-feature p {
        font-size: 13px;
        line-height: 1.45;
    }

    .hero-side-content .cta-button {
        padding: 13px 16px;
        font-size: 13px;
    }

    .hero-bottom-cta {
        margin-top: 16px;
    }

    .hero-bottom-cta .cta-button {
        width: 100%;
        max-width: 350px;
    }


    /* SECTIONS */

    .certifications,
    .who-program,
    .reviews,
    .programs,
    .career-path,
    .testimonials,
    .why-reachx {
        padding: 45px 16px;
    }


    /* CERTIFICATES */

    .certificate-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 13px;
    }

    .certificate-card {
        padding: 5px;
        border-width: 2px;
    }

    .certificate-card img {
        height: auto;
        max-height: 330px;
    }


    /* AUDIENCE */

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .audience-card {
        padding: 20px;
    }

    .audience-card h3 {
        font-size: 18px;
    }

    .audience-card p {
        font-size: 14px;
    }


    /* REVIEWS */

    .review-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 13px;
    }

    .review-card {
        padding: 5px;
        border-width: 2px;
    }

    .review-card img {
        height: auto;
        max-height: 400px;
    }


    /* FOUNDER */

    .founder {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 45px 16px;
    }

    .founder-image {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .founder-content h2 {
        font-size: 25px;
    }

    .founder-content p {
        font-size: 14px;
        line-height: 1.5;
    }


    /* PROGRAMS */

    .program-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .program-card {
        padding: 21px;
    }

    .program-card h3 {
        font-size: 18px;
    }

    .program-card p {
        font-size: 14px;
    }

    .program-final-cta {
        margin-top: 22px;
    }

    .program-final-cta .cta-button {
        width: 100%;
        max-width: 350px;
    }


    /* CAREER PATH */

    .path-step {
        gap: 13px;
        padding: 16px 0;
    }

    .path-number {
        min-width: 38px;
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .path-content h3 {
        font-size: 17px;
    }

    .path-content p {
        font-size: 13px;
    }


    /* VIDEOS */

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-thumbnail {
        border-radius: 11px;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .why-card {
        padding: 20px;
    }


    /* FINAL CTA */

    .final-cta {
        padding: 55px 16px;
    }

    .final-cta h2 {
        font-size: 27px;
    }

    .final-cta-content > p:not(.small-heading):not(.cta-note) {
        font-size: 14px;
    }
}


/* =========================================================
SMALL MOBILE
========================================================= */

@media screen and (max-width: 400px) {

    body {
        padding-bottom: 108px;
    }

    .hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero h1 {
        font-size: 22px !important;
        line-height: 1.18 !important;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .final-cta h2 {
        font-size: 25px;
    }
}


/* =========================================================
STICKY COUNTDOWN BAR
========================================================= */

.sticky-countdown {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;

    width: 100%;
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;

    padding: 10px 20px;

    background: #ffffff;
    border-top: 2px solid #3218ff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-message {
    color: #3218ff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.time-box {
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-box span {
    color: #ff3b30;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.time-separator {
    color: #ff3b30;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 700;
}

.sticky-watch-button {
    width: 360px;
    min-height: 56px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #ffad00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.sticky-watch-button:hover {
    background: #ffbd2e;
    transform: translateY(-2px);
}


@media screen and (max-width: 1100px) {

    .sticky-countdown {
        gap: 20px;
    }

    .sticky-message {
        font-size: 14px;
    }

    .sticky-watch-button {
        width: 300px;
        font-size: 14px;
    }
}


@media screen and (max-width: 700px) {

    body {
        padding-bottom: 112px;
    }

    .sticky-countdown {
        min-height: auto;
        flex-wrap: wrap;
        gap: 8px 15px;
        padding: 9px 12px 10px;
    }

    .sticky-message {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .countdown {
        gap: 3px;
    }

    .time-box {
        min-width: 24px;
    }

    .time-box span {
        font-size: 15px;
    }

    .time-separator {
        font-size: 14px;
    }

    .sticky-watch-button {
        width: 100%;
        max-width: 330px;
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
    }
}


/* =========================================================
SOCIAL MEDIA ICONS
========================================================= */

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    object-fit: contain;
    display: block;
}
/* =========================================================
   PROFESSIONAL FOOTER
========================================================= */

/* =========================================================
   PROFESSIONAL 4-COLUMN FOOTER
   REACHX INFOTECH
========================================================= */

.footer {
    width: 100%;
    padding: 28px 20px 24px;

    background:
        linear-gradient(
            135deg,
            #100d38 0%,
            #080813 100%
        );

    border-top: 1px solid #292942;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        1.35fr
        1.15fr
        1fr
        1fr;

    background:
        linear-gradient(
            135deg,
            #11103b 0%,
            #080813 100%
        );

    border: 1px solid #292942;
    border-radius: 22px;

    overflow: hidden;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
    padding: 30px 30px 28px;

    border-right: 1px solid #292942;
}

.footer-column:last-child {
    border-right: none;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-column h3,
.footer-heading {
    position: relative;

    margin: 0 0 28px;

    color: #ffffff !important;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 700;
    text-align: center;
}


/* Blue line below heading */

.footer-column h3::after,
.footer-heading::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin: 12px auto 0;

    background: #2196ff;
    border-radius: 3px;

    box-shadow:
        0 0 8px rgba(33, 150, 255, 0.45);
}


/* =========================================================
   FOOTER TOP ICON
   Works with .footer-column h3
========================================================= */

.footer-column h3::before,
.footer-heading::before {
    display: block;

    width: 48px;
    height: 48px;

    margin: 0 auto 12px;

    border: 1px solid #2468d8;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #07142f 0%,
            #080813 70%
        );

    color: #2196ff;

    font-size: 23px;
    line-height: 46px;

    text-align: center;

    box-shadow:
        0 0 12px rgba(33, 110, 255, 0.18);
}


/* Different icon for each column */

.footer-column:nth-child(1) h3::before {
    content: "●";
}

.footer-column:nth-child(2) h3::before {
    content: "☎";
}

.footer-column:nth-child(3) h3::before {
    content: "✎";
}

.footer-column:nth-child(4) h3::before {
    content: "♣";
}


/* =========================================================
   OFFICE CONTENT
========================================================= */

.footer-office {
    text-align: left;
}

.footer-office h4 {
    margin: 0 0 7px;

    color: #2196ff !important;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 700;
}

.footer-office p {
    margin: 0 0 20px;

    color: #eeeeee !important;

    font-size: 13px;
    line-height: 1.65;
}


/* Divider between offices */

.footer-office-divider {
    width: 100%;
    height: 1px;

    margin: 0 0 20px;

    background:
        repeating-linear-gradient(
            to right,
            #4b4b61 0,
            #4b4b61 2px,
            transparent 2px,
            transparent 5px
        );

    opacity: 0.55;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 58px;

    color: #eeeeee;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.4;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-contact-item + .footer-contact-item {
    border-top: 1px solid #292942;
}

.footer-contact-item:hover {
    color: #2196ff;

    transform: translateX(3px);
}


/* Contact icons */

.footer-contact-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2468d8;
    border-radius: 50%;

    color: #2196ff;

    font-size: 17px;

    background: #080b20;
}


/* Existing images used as contact icons */

.footer-contact-item img {
    width: 38px !important;
    height: 38px !important;

    max-width: 38px !important;
    max-height: 38px !important;

    padding: 8px;

    object-fit: contain;

    border: 1px solid #2468d8;
    border-radius: 50%;

    background: #080b20;
}


/* =========================================================
   BLOG SECTION
========================================================= */

.footer-blog {
    display: flex;
    flex-direction: column;
}

.footer-blog a {
    display: flex;
    align-items: center;

    min-height: 44px;

    padding: 7px 0;

    color: #eeeeee;

    text-decoration: none;

    font-size: 13px;
    line-height: 1.4;

    border-bottom: 1px solid #292942;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-blog a:last-child {
    border-bottom: none;
}

.footer-blog a::before {
    content: "›";

    margin-right: 9px;

    color: #2196ff;

    font-size: 20px;
    font-weight: 700;
}

.footer-blog a:hover {
    color: #2196ff;
    padding-left: 5px;
}


/* =========================================================
   FOLLOW US
========================================================= */

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* Social link */

.footer-social-link {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 52px;

    padding: 8px 0;

    gap: 12px;

    color: #eeeeee !important;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid #292942;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-social-link:last-child {
    border-bottom: none;
}

.footer-social-link:hover {
    color: #2196ff !important;

    transform: translateX(4px);
}


/* =========================================================
   SOCIAL ICON CIRCLES
========================================================= */

.footer-social-link img {
    width: 40px !important;
    height: 40px !important;

    max-width: 40px !important;
    max-height: 40px !important;

    min-width: 40px;

    padding: 8px;

    object-fit: contain;

    display: block;

    border: 1px solid #2468d8;

    border-radius: 50%;

    background: #080b20;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.footer-social-link:hover img {
    transform: scale(1.08);

    border-color: #2196ff;
}


/* =========================================================
   SOCIAL ICONS WITHOUT IMAGE
   Optional fallback
========================================================= */

.footer-social-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2468d8;
    border-radius: 50%;

    background: #080b20;

    color: #2196ff;

    font-size: 18px;
}


/* =========================================================
   FOOTER BOTTOM AREA
========================================================= */

.footer-bottom {
    width: 100%;

    margin: 18px auto 0;

    text-align: center;
    padding: 0 !important;
}


/* Disclaimer */

.footer-disclaimer {
    max-width: 800px;

    margin: 0 auto 12px;

    color: #9ca3af !important;

    font-size: 11px;

    line-height: 1.6;
}


/* Copyright */

.footer-copyright {
    color: #777b87 !important;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   IF YOUR CURRENT FOOTER USES .footer-links
   Hide old horizontal styling
========================================================= */

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 0;

    margin: 0;

    text-align: left;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .footer-container {
        grid-template-columns:
            1.2fr
            1fr
            1fr
            1fr;
    }

    .footer-column {
        padding: 25px 20px;
    }

    .footer-column h3,
    .footer-heading {
        font-size: 19px;
    }

    .footer-office p,
    .footer-social-link,
    .footer-contact-item,
    .footer-blog a {
        font-size: 12px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .footer {
        padding: 25px 12px 22px;
    }

    .footer-container {
        display: grid;

        grid-template-columns: 1fr 1fr;

        border-radius: 16px;
    }

    .footer-column {
        padding: 28px 18px;
    }

    .footer-column:nth-child(2) {
        border-right: none;
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        border-top: 1px solid #292942;
    }

    .footer-column:nth-child(4) {
        border-right: none;
    }

    .footer-column h3,
    .footer-heading {
        font-size: 18px;

        margin-bottom: 23px;
    }

    .footer-column h3::before,
    .footer-heading::before {
        width: 42px;
        height: 42px;

        line-height: 40px;

        font-size: 20px;
    }

    .footer-office h4 {
        font-size: 14px;
    }

    .footer-office p {
        font-size: 12px;
        line-height: 1.55;
    }

    .footer-contact-item,
    .footer-social-link {
        font-size: 12px;
    }

    .footer-social-link img,
    .footer-social-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        max-width: 36px !important;
        max-height: 36px !important;
    }

    .footer-blog a {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 500px) {

    .footer-container {
        display: block;
    }

    .footer-column {
        border-right: none !important;

        border-bottom: 1px solid #292942;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        border-top: none;
    }

    .footer-column h3,
    .footer-heading {
        font-size: 20px;
    }

    .footer-office {
        text-align: left;
    }

    .footer-office p {
        font-size: 13px;
    }

    .footer-contact-item,
    .footer-social-link {
        min-height: 58px;
        font-size: 13px;
    }

    .footer-blog a {
        min-height: 48px;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 0 10px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}
/* =========================================================
   CAREER GUIDANCE SECTION
========================================================= */

.career-guidance-section {
    width: 100%;
    padding: 55px 20px;
    background: #0f0f10;
}

.career-guidance-card {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    padding: 55px 65px;

    background: linear-gradient(
        135deg,
        #120d4a 0%,
        #0c0a29 50%,
        #07070d 100%
    );

    border: 1px solid #3218ff;
    border-radius: 5px;

    text-align: center;

    box-shadow:
        0 0 30px rgba(50, 24, 255, 0.08);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.career-guidance-card h2 {
    max-width: 780px;
    margin: 0 auto 25px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;

    font-weight: 800;
    letter-spacing: -0.6px;
}


/* =========================================================
   SECOND HEADING
========================================================= */

.career-guidance-card h3 {
    max-width: 800px;
    margin: 0 auto 28px;

    color: #ffffff;

    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.3;

    font-weight: 800;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.career-guidance-card p {
    max-width: 800px;
    margin: 0 auto 30px;

    color: #eeeeee;

    font-size: 18px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   IMPORTANT TEXT
========================================================= */

.career-guidance-card strong {
    color: #ffffff;
    font-weight: 800;
}


/* =========================================================
   YELLOW CTA HEADING
========================================================= */

.career-guidance-highlight {
    margin: 8px auto 30px;

    color: #ffad00;

    font-size: 24px;
    line-height: 1.3;

    font-weight: 800;
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.career-guidance-final-text {
    margin-top: 5px !important;

    color: #ffffff !important;

    font-size: 18px !important;
    line-height: 1.6 !important;

    font-weight: 600 !important;
}


/* =========================================================
   BUTTON
========================================================= */

.career-guidance-card .cta-button {
    display: inline-block;

    margin-top: 8px;

    padding: 14px 28px;

    background: #3218ff;
    color: #ffffff;

    border: none;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.career-guidance-card .cta-button:hover {
    background: #4b35ff;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 768px) {

    .career-guidance-section {
        padding: 40px 15px;
    }

    .career-guidance-card {
        padding: 40px 25px;
        border-radius: 5px;
    }

    .career-guidance-card h2 {
        margin-bottom: 22px;

        font-size: 29px;
        line-height: 1.2;
    }

    .career-guidance-card h3 {
        margin-bottom: 25px;

        font-size: 23px;
        line-height: 1.3;
    }

    .career-guidance-card p {
        margin-bottom: 27px;

        font-size: 16px;
        line-height: 1.6;
    }

    .career-guidance-highlight {
        margin-bottom: 27px;

        font-size: 21px;
    }

    .career-guidance-final-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .career-guidance-card .cta-button {
        width: 100%;
        max-width: 350px;

        padding: 14px 18px;

        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 400px) {

    .career-guidance-section {
        padding: 35px 10px;
    }

    .career-guidance-card {
        padding: 32px 18px;
    }

    .career-guidance-card h2 {
        font-size: 26px;
    }

    .career-guidance-card h3 {
        font-size: 21px;
    }

    .career-guidance-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .career-guidance-highlight {
        font-size: 19px;
    }

    .career-guidance-final-text {
        font-size: 15px !important;
    }
}
/* =========================================================
   WHO THIS IS DESIGNED FOR
========================================================= */

.who-program {
    width: 100%;
    padding: 55px 20px 65px;
    background: #0f0f10;
    box-sizing: border-box;
}

.who-program-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.who-program h2 {
    margin: 0;
    text-align: center;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.who-program-subtitle {
    margin: 18px 0 55px;

    text-align: center;

    color: #eeeeee;

    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================================
   LIST
========================================================= */

.who-program-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 28px;

    margin: 0 auto;
}


/* =========================================================
   LIST ITEM
========================================================= */

.who-program-item {
    display: flex;
    align-items: flex-start;

    width: 100%;

    gap: 14px;
}


/* =========================================================
   CHECKMARK
========================================================= */

.who-check {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    margin-top: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffad00;

    color: #111111;

    font-size: 19px;
    line-height: 1;
    font-weight: 900;
}


/* =========================================================
   TEXT
========================================================= */

.who-program-item p {
    margin: 0;

    color: #eeeeee;

    font-size: 21px;
    line-height: 1.65;
    font-weight: 400;
}

.who-program-item strong {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   BUTTON POSITION ONLY
   Your existing .cta-button styling remains unchanged.
========================================================= */

.who-program .section-button {
    margin-top: 65px;
    text-align: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .who-program {
        padding: 45px 22px 55px;
    }

    .who-program h2 {
        font-size: 29px;
    }

    .who-program-subtitle {
        margin-top: 16px;
        margin-bottom: 48px;
        font-size: 22px;
    }

    .who-program-list {
        gap: 25px;
    }

    .who-program-item {
        gap: 12px;
    }

    .who-check {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .who-program-item p {
        font-size: 20px;
        line-height: 1.6;
    }

    .who-program .section-button {
        margin-top: 60px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 400px) {

    .who-program {
        padding-left: 18px;
        padding-right: 18px;
    }

    .who-program h2 {
        font-size: 27px;
    }

    .who-program-subtitle {
        font-size: 20px;
        margin-bottom: 42px;
    }

    .who-program-list {
        gap: 22px;
    }

    .who-program-item p {
        font-size: 18px;
        line-height: 1.55;
    }

    .who-check {
        flex: 0 0 26px;
        width: 26px;
        height: 26px;
        font-size: 17px;
    }

    .who-program .section-button {
        margin-top: 50px;
    }
}
/* =========================================================
   FOUNDER IMAGE + STATS
========================================================= */

.founder-image {
    width: 100%;
}

.founder-image > img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Stats card directly under founder image */
.founder-stats {
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    background: linear-gradient(
        135deg,
        #171044 0%,
        #080813 100%
    );

    border-radius: 7px;
    border: 1px solid #3218ff;
}

/* Individual stat */
.founder-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stat icon */
.founder-stat-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}

/* Stat text */
.founder-stat-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

/* Mobile */
@media screen and (max-width: 768px) {

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-image > img {
        border-radius: 9px;
    }

    .founder-stats {
        margin-top: 8px;
        padding: 9px 10px;
        gap: 7px;
    }

    .founder-stat-icon {
        width: 25px;
        min-width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .founder-stat-text {
        font-size: 11px;
    }
}

/* Very small phones */
@media screen and (max-width: 400px) {

    .founder-image {
        max-width: 270px;
    }

    .founder-stats {
        padding: 8px 9px;
    }

    .founder-stat-text {
        font-size: 10px;
    }
}
.cta-button {
    background: #ffad00 !important;
    color: #111111 !important;
}

.cta-button:hover {
    background: #ffbd2e !important;
    color: #111111 !important;
}
/* Center button only in Founder section */
.founder-content .cta-button {
    display: block;
    margin: 25px auto 0 !important;
}
/* =========================================================
   REACHX INFOTECH
   PROFESSIONAL 4-COLUMN FOOTER
   ========================================================= */

.footer {
    width: 100%;
    padding: 55px 20px 25px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(50, 24, 255, 0.14),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #08091d 0%,
            #070711 55%,
            #050509 100%
        );

    border-top: 1px solid #292942;
    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================================
   FOOTER MAIN BOX
   ========================================================= */

.footer-main {
    width: 100%;

    display: grid;
    grid-template-columns:
        1.2fr
        1fr
        0.9fr
        1fr;

    border: 1px solid #30345d;
    border-radius: 20px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(18, 15, 60, 0.95),
            rgba(7, 8, 22, 0.98)
        );

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   FOOTER COLUMN
   ========================================================= */

.footer-column {
    min-width: 0;
    padding: 35px 30px;

    border-right: 1px solid #303248;
}

.footer-column:last-child {
    border-right: none;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer-column h3 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin: 12px auto 0;

    background: #2196ff;
    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(33, 150, 255, 0.45);
}


/* =========================================================
   OFFICE SECTION
   ========================================================= */

.footer-office {
    text-align: left;
}

.footer-office h3 {
    text-align: center;
}

.footer-office h4 {
    margin: 0 0 7px;

    color: #2196ff;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.footer-office p {
    margin: 0;

    color: #dddddd;

    font-size: 14px;
    line-height: 1.6;
}

.footer-office-location {
    margin-bottom: 25px;
}

.footer-office-location:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT US
   ========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact-item:last-child {
    border-bottom: none;
}


/* =========================================================
   FOOTER ICON CIRCLE
   ========================================================= */

.footer-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2454a8;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(33, 150, 255, 0.18),
            rgba(7, 8, 22, 0.8)
        );

    box-shadow:
        0 0 12px rgba(33, 150, 255, 0.15);

    overflow: hidden;
}

.footer-icon img {
    width: 26px !important;
    height: 26px !important;

    max-width: 26px !important;
    max-height: 26px !important;

    object-fit: contain;
    display: block;
}

.footer-contact-text {
    min-width: 0;
}

.footer-contact-text a {
    color: #eeeeee;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    word-break: break-word;

    transition:
        color 0.2s ease;
}

.footer-contact-text a:hover {
    color: #2196ff;
}


/* =========================================================
   BLOG SECTION
   ========================================================= */

.footer-blog {
    display: flex;
    flex-direction: column;
}

.footer-blog-list {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-blog-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-blog-list li:last-child {
    border-bottom: none;
}

.footer-blog-list a {
    display: flex;
    align-items: center;

    min-height: 48px;

    color: #dddddd;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-blog-list a::before {
    content: "›";

    margin-right: 10px;

    color: #2196ff;

    font-size: 20px;
    font-weight: 700;
}

.footer-blog-list a:hover {
    padding-left: 5px;
    color: #2196ff;
}


/* =========================================================
   FOLLOW US
   ========================================================= */

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #dddddd;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-social-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2454a8;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(33, 150, 255, 0.16),
            rgba(7, 8, 22, 0.9)
        );

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social-icon img {
    width: 27px !important;
    height: 27px !important;

    max-width: 27px !important;
    max-height: 27px !important;

    object-fit: contain;
    display: block;
}

.footer-social-link:hover .footer-social-icon {
    border-color: #2196ff;

    transform: scale(1.06);

    box-shadow:
        0 0 14px rgba(33, 150, 255, 0.25);
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.footer-whatsapp .footer-social-icon {
    border-color: #1d9b57;
}

.footer-whatsapp:hover {
    color: #25d366;
}

.footer-whatsapp:hover .footer-social-icon {
    border-color: #25d366;

    box-shadow:
        0 0 15px rgba(37, 211, 102, 0.25);
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.footer-instagram:hover {
    color: #e1306c;
}

.footer-instagram:hover .footer-social-icon {
    border-color: #e1306c;

    box-shadow:
        0 0 15px rgba(225, 48, 108, 0.25);
}


/* =========================================================
   YOUTUBE
   ========================================================= */

.footer-youtube:hover {
    color: #ff0000;
}

.footer-youtube:hover .footer-social-icon {
    border-color: #ff0000;

    box-shadow:
        0 0 15px rgba(255, 0, 0, 0.25);
}


/* =========================================================
   LINKEDIN
   ========================================================= */

.footer-linkedin:hover {
    color: #0a66c2;
}

.footer-linkedin:hover .footer-social-icon {
    border-color: #0a66c2;

    box-shadow:
        0 0 15px rgba(10, 102, 194, 0.25);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    width: 100%;

    margin-top: 25px;
    padding-top: 22px;

    border-top: 1px solid #292942;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.footer-disclaimer {
    max-width: 800px;

    margin: 0 auto 15px;

    color: #9ca3af;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copyright {
    color: #777b87;

    font-size: 12px;
    line-height: 1.5;
}

.footer-copyright strong {
    color: #dddddd;
    font-weight: 600;
}


/* =========================================================
   FOOTER SHIELD / TRUST ICON
   ========================================================= */

.footer-trust-icon {
    width: 38px;
    height: 38px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #2196ff;

    border-radius: 7px;

    color: #2196ff;

    font-size: 19px;
}


/* =========================================================
   TABLET FOOTER
   ========================================================= */

@media screen and (max-width: 950px) {

    .footer {
        padding: 45px 18px 25px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column {
        padding: 30px 25px;

        border-right: 1px solid #303248;
        border-bottom: 1px solid #303248;
    }

    .footer-column:nth-child(2) {
        border-right: none;
    }

    .footer-column:nth-child(3) {
        border-bottom: none;
    }

    .footer-column:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }
}


/* =========================================================
   MOBILE FOOTER
   ========================================================= */

@media screen and (max-width: 650px) {

    .footer {
        padding: 35px 12px 20px;
    }

    .footer-main {
        display: flex;
        flex-direction: column;

        border-radius: 15px;
    }

    .footer-column {
        width: 100%;

        padding: 28px 22px;

        border-right: none;
        border-bottom: 1px solid #303248;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column h3 {
        margin-bottom: 22px;

        font-size: 19px;
    }

    .footer-office {
        text-align: left;
    }

    .footer-office h3 {
        text-align: center;
    }

    .footer-office-location {
        margin-bottom: 22px;
    }

    .footer-office h4 {
        font-size: 15px;
    }

    .footer-office p {
        font-size: 13px;
    }

    .footer-contact {
        gap: 12px;
    }

    .footer-contact-item {
        padding: 10px 0;
    }

    .footer-icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .footer-icon img {
        width: 24px !important;
        height: 24px !important;

        max-width: 24px !important;
        max-height: 24px !important;
    }

    .footer-blog-list a {
        min-height: 45px;
        font-size: 13px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social-link {
        font-size: 13px;
    }

    .footer-social-icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
    }

    .footer-social-icon img {
        width: 25px !important;
        height: 25px !important;

        max-width: 25px !important;
        max-height: 25px !important;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 18px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 400px) {

    .footer {
        padding-left: 9px;
        padding-right: 9px;
    }

    .footer-column {
        padding: 25px 17px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-office p {
        font-size: 12px;
    }

    .footer-contact-text a {
        font-size: 12px;
    }

    .footer-social-link {
        font-size: 12px;
    }
}
/* =========================================================
   FOLLOW US - FINAL FIX
   Forces every social link into its own organized row
   ========================================================= */

/* Main Follow Us container */
.footer-social,
.footer-socials {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: stretch !important;
    justify-content: flex-start !important;

    gap: 12px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   EACH SOCIAL LINK
   ========================================================= */

/* This is the important part */
.footer-social > a,
.footer-socials > a,
.footer-social > .footer-social-link,
.footer-socials > .footer-social-link {
    width: 100% !important;
    max-width: 100% !important;

    min-height: 56px !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-start !important;

    flex: none !important;

    gap: 14px !important;

    margin: 0 !important;
    padding: 7px 12px !important;

    box-sizing: border-box !important;

    color: #eeeeee !important;
    text-decoration: none !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    background: rgba(255, 255, 255, 0.035) !important;

    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 12px !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease !important;
}


/* Hover */
.footer-social > a:hover,
.footer-socials > a:hover,
.footer-social > .footer-social-link:hover,
.footer-socials > .footer-social-link:hover {
    transform: translateX(4px) !important;

    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.075) !important;

    border-color: rgba(255, 255, 255, 0.18) !important;
}


/* =========================================================
   ICON
   ========================================================= */

.footer-social-icon {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;

    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;

    flex: 0 0 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 11px !important;

    overflow: hidden !important;

    box-sizing: border-box !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}


/* Icon image */
.footer-social-icon img {
    width: 24px !important;
    height: 24px !important;

    min-width: 24px !important;
    min-height: 24px !important;

    max-width: 24px !important;
    max-height: 24px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;

    object-fit: contain !important;

    background: transparent !important;
}


/* =========================================================
   SOCIAL TEXT
   ========================================================= */

.footer-social-link span:last-child {
    display: block !important;

    flex: 1 1 auto !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;

    white-space: nowrap !important;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.footer-whatsapp .footer-social-icon {
    background: #25D366 !important;

    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.30) !important;
}

.footer-whatsapp:hover {
    color: #25D366 !important;

    border-color: rgba(37, 211, 102, 0.45) !important;

    background: rgba(37, 211, 102, 0.07) !important;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.footer-instagram .footer-social-icon {
    background:
        radial-gradient(
            circle at 30% 110%,
            #FFD600 0%,
            #FF7A00 25%,
            #FF0069 55%,
            #D300C5 75%,
            #7638FA 100%
        ) !important;

    box-shadow:
        0 4px 12px rgba(225, 48, 108, 0.30) !important;
}

.footer-instagram:hover {
    color: #ff4f91 !important;

    border-color: rgba(225, 48, 108, 0.45) !important;

    background: rgba(225, 48, 108, 0.07) !important;
}


/* =========================================================
   YOUTUBE
   ========================================================= */

.footer-youtube .footer-social-icon {
    background: #FF0000 !important;

    box-shadow:
        0 4px 12px rgba(255, 0, 0, 0.30) !important;
}

.footer-youtube:hover {
    color: #ff5555 !important;

    border-color: rgba(255, 0, 0, 0.45) !important;

    background: rgba(255, 0, 0, 0.07) !important;
}


/* =========================================================
   LINKEDIN
   ========================================================= */

.footer-linkedin .footer-social-icon {
    background: #0A66C2 !important;

    box-shadow:
        0 4px 12px rgba(10, 102, 194, 0.30) !important;
}

.footer-linkedin:hover {
    color: #4da3ff !important;

    border-color: rgba(10, 102, 194, 0.50) !important;

    background: rgba(10, 102, 194, 0.08) !important;
}


/* =========================================================
   FACEBOOK
   ========================================================= */

.footer-facebook .footer-social-icon {
    background: #1877F2 !important;

    box-shadow:
        0 4px 12px rgba(24, 119, 242, 0.30) !important;
}

.footer-facebook:hover {
    color: #4d9aff !important;

    border-color: rgba(24, 119, 242, 0.50) !important;

    background: rgba(24, 119, 242, 0.08) !important;
}


/* =========================================================
   FALLBACK:
   If your HTML does NOT have .footer-social-icon
   ========================================================= */

.footer-social-link > img {
    width: 42px !important;
    min-width: 42px !important;

    height: 42px !important;
    max-height: 42px !important;

    flex: 0 0 42px !important;

    padding: 8px !important;

    object-fit: contain !important;

    border-radius: 11px !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 650px) {

    .footer-social,
    .footer-socials {
        display: flex !important;
        flex-direction: column !important;

        gap: 10px !important;
    }

    .footer-social > a,
    .footer-socials > a,
    .footer-social > .footer-social-link,
    .footer-socials > .footer-social-link {
        width: 100% !important;

        min-height: 55px !important;

        padding: 6px 10px !important;

        gap: 13px !important;

        font-size: 13px !important;

        border-radius: 11px !important;
    }

    .footer-social-icon {
        width: 41px !important;
        min-width: 41px !important;
        max-width: 41px !important;

        height: 41px !important;
        min-height: 41px !important;
        max-height: 41px !important;

        flex-basis: 41px !important;

        border-radius: 10px !important;
    }

    .footer-social-icon img {
        width: 23px !important;
        height: 23px !important;

        max-width: 23px !important;
        max-height: 23px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 400px) {

    .footer-social,
    .footer-socials {
        gap: 9px !important;
    }

    .footer-social > a,
    .footer-socials > a,
    .footer-social > .footer-social-link,
    .footer-socials > .footer-social-link {
        min-height: 52px !important;

        padding: 6px 9px !important;

        font-size: 12px !important;
    }

    .footer-social-icon {
        width: 39px !important;
        min-width: 39px !important;
        max-width: 39px !important;

        height: 39px !important;
        min-height: 39px !important;
        max-height: 39px !important;

        flex-basis: 39px !important;
    }

    .footer-social-icon img {
        width: 21px !important;
        height: 21px !important;

        max-width: 21px !important;
        max-height: 21px !important;
    }
}
/* =========================================================
   FOLLOW US - SOCIAL LINKS
========================================================= */

.footer-social-column {
    width: 100%;
}

.footer-social-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-social-item {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    padding: 8px 0;

    color: #ffffff;
    text-decoration: none;

    box-sizing: border-box;
}

.footer-social-item:hover {
    color: #ffffff;
}

.footer-social-item .social-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 16px;
}

.footer-social-item .social-name {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}


/* SOCIAL ICON COLORS */

.social-icon.instagram {
    background: #e1306c;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.linkedin {
    background: #0a66c2;
}

.social-icon.facebook {
    background: #1877f2;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-social-list {
        gap: 10px;
    }

    .footer-social-item {
        padding: 7px 0;
    }

    .footer-social-item .social-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 15px;
    }

    .footer-social-item .social-name {
        font-size: 14px;
    }

}
/* =====================================================
   FOOTER LAYOUT FIX
===================================================== */

.footer {
    width: 100%;
    background: #08090b;
    color: #ffffff;
    box-sizing: border-box;
}

/* Main footer columns */
.footer-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    padding: 50px 30px;
    box-sizing: border-box;
}

/* Each footer column */
.footer-column {
    width: 100%;
    box-sizing: border-box;
}

/* Footer bottom MUST be separate from footer columns */
.footer .footer-bottom {
    width: 100% !important;

    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 70px;
    padding: 20px;

    border-top: 1px solid #25282d;

    box-sizing: border-box;
}

/* Copyright */
.footer .footer-bottom p {
    position: static !important;

    width: auto !important;
    margin: 0 !important;

    transform: none !important;

    text-align: center !important;

    color: #aaaaaa;
    font-size: 14px;
}

/* Shield */
.footer .footer-security-icon {
    position: absolute !important;

    left: 25px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 40px 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 45px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 10px !important;
        margin: 0 !important;

        box-sizing: border-box !important;
    }

    .footer-bottom p {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 13px;
        line-height: 1.5;
        text-align: center !important;
    }

    .footer .footer-security-icon {
        left: 15px !important;
    }

    /* Copyright - centered for mobile */
    .footer .footer-bottom {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;

        margin: 0 !important;
        padding: 10px !important;

        box-sizing: border-box !important;
        text-align: center !important;

        border-top: 1px solid #25282d;
    }

    .footer .footer-bottom p {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        position: static !important;
        left: auto !important;
        transform: none !important;

        text-align: center !important;
        font-size: 13px;
    }

}
/* =========================================
   MOBILE FOOTER - 767PX
========================================= */
/* WHO THIS IS DESIGNED FOR - HEADING
========================================= */

.who-program h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 10px;
}
/* =====================================================
   PROFESSIONAL COMPACT MOBILE FOOTER
===================================================== */

@media (max-width: 767px) {

    .footer {
        width: 100%;
        overflow: visible;
    }

    /* 2-column compact layout */
    .footer-main {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 22px 18px !important;

        padding: 28px 16px 22px !important;
        margin: 0 !important;
    }

    .footer-column {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Section headings */
    .footer-column h3 {
        font-size: 12px !important;
        line-height: 1.2 !important;
        margin: 7px 0 6px !important;
        letter-spacing: 0.4px;
    }

    /* Top icons */
    .footer-icon-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }

    /* Small heading line */
    .footer-line {
        width: 28px !important;
        height: 2px !important;
        margin: 0 0 10px !important;
    }

    /* Office */
    .office-location {
        margin: 0 0 9px !important;
    }

    .office-location h4 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin: 0 0 3px !important;
    }

    .office-location p {
        font-size: 10px !important;
        line-height: 1.35 !important;
        margin: 0 !important;
    }

    .office-divider {
        margin: 8px 0 !important;
    }

    /* Contact / Blog / Social items */
    .footer-contact-item,
    .footer-blog-item,
    .footer-social-item {
        display: flex !important;
        align-items: center !important;

        font-size: 11px !important;
        line-height: 1.2 !important;

        gap: 7px !important;
        margin: 0 0 8px !important;
        padding: 0 !important;
    }

    /* Small icons */
    .contact-icon,
    .blog-icon,
    .social-icon {
        width: 23px !important;
        height: 23px !important;
        min-width: 23px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 10px !important;
    }

    /* Blog link */
    .footer-blog-link {
        display: inline-block !important;
        font-size: 10px !important;
        margin-top: 2px !important;
    }

    /* Copyright */
    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 45px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 10px !important;
        margin: 0 !important;

        box-sizing: border-box !important;
    }

    .footer-bottom p {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;

        font-size: 10px !important;
        line-height: 1.4 !important;
    }

}
.footer-bottom {
    width: 100vw !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    text-align: center !important;
    padding: 10px 0 !important;
    box-sizing: border-box !important;
}

.footer-bottom p {
    width: 100% !important;
    max-width: none !important;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center !important;
}
.footer {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.footer-main {
    width: 100% !important;
}

/* =====================================================
   FINAL COPYRIGHT CENTER FIX
===================================================== */

.footer > .footer-bottom {
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: row !important;

    justify-content: center !important;
    align-items: center !important;

    margin: 25px 0 0 0 !important;
    padding: 20px 10px !important;

    box-sizing: border-box !important;

    text-align: center !important;

    border-top: 1px solid #292942;
}

.footer > .footer-bottom > p {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;
    left: auto !important;
    right: auto !important;

    transform: none !important;

    text-align: center !important;

    color: #aaaaaa !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}



