/* =========================================
   PLACEMENT METHODOLOGY SECTION
========================================= */

.placement-methodology {
    width: 100%;
    padding: 70px 20px 80px;
    background: #f7f8fa;
    overflow-x: hidden;
    box-sizing: border-box;
}

.placement-methodology * {
    box-sizing: border-box;
}

.placement-methodology-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.placement-methodology-heading {
    text-align: center;
    margin-bottom: 50px;
}

.placement-methodology-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1f3047;
}

.placement-methodology-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #667085;
}


/* =========================================
   CARDS GRID
========================================= */

.placement-methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* =========================================
   CARD
========================================= */

.placement-methodology-card {
    background: #ffffff;
    padding: 38px 28px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #4aa3cf;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.placement-methodology-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}


/* =========================================
   NUMBER
========================================= */

.placement-methodology-number {
    display: block;
    margin-bottom: 22px;

    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #4aa3cf;
}


/* =========================================
   CARD TITLE
========================================= */

.placement-methodology-card h3 {
    margin: 0 0 18px;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;

    color: #1f3047;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.placement-methodology-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #667085;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .placement-methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .placement-methodology {
        padding: 55px 16px 60px;
    }

    .placement-methodology-heading {
        margin-bottom: 35px;
    }

    .placement-methodology-heading h2 {
        font-size: 32px;
    }

    .placement-methodology-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .placement-methodology-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .placement-methodology-card {
        padding: 28px 22px;
    }

    .placement-methodology-number {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .placement-methodology-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .placement-methodology-card p {
        font-size: 15px;
    }

}

/* ===================================
   PLACEMENT STATISTICS SECTION
=================================== */

.placement-stats {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Main White Container */
.stats-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 0 0 16px 16px;

    padding: 70px 45px 60px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    box-sizing: border-box;
}

/* Individual Stat */
.stat-item {
    text-align: center;
}

/* Number */
.stat-item h3 {
    margin: 0 0 22px;

    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;

    color: #2f5fb3;

    line-height: 1.1;

    font-family: Arial, sans-serif;
}

/* Description */
.stat-item p {
    margin: 0;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.7;

    color: #596675;

    font-family: Arial, sans-serif;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);

        padding: 50px 30px;

        gap: 45px 30px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 576px) {

    .placement-stats {
        padding: 0 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;

        padding: 45px 20px;

        gap: 35px;

        border-radius: 0 0 12px 12px;
    }

    .stat-item h3 {
        font-size: 40px;

        margin-bottom: 12px;
    }

    .stat-item p {
        font-size: 16px;

        line-height: 1.6;
    }

}

/* =========================================
   TRAINING TRACKS SECTION
========================================= */

.training-tracks {
    width: 100%;
    padding: 70px 20px 80px;
    background: #f4f6f9;
    box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.training-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.training-heading h2 {
    margin: 0 0 25px;

    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;

    line-height: 1.2;

    color: #1d2d44;

    font-family: Arial, sans-serif;
}

.training-heading p {
    max-width: 720px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    color: #5d6b7c;

    letter-spacing: 0.3px;
}


/* =========================================
   CARDS CONTAINER
========================================= */

.training-cards {
    max-width: 1420px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 40px;
}


/* =========================================
   CARD
========================================= */

.training-card {
    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e4e8ee;

    box-shadow:
        0 8px 25px rgba(31, 52, 79, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;

    min-width: 0;
}

.training-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(31, 52, 79, 0.14);
}


/* =========================================
   IMAGE
========================================= */

.training-image {
    width: 100%;

    height: 275px;

    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.05);
}


/* =========================================
   CARD CONTENT
========================================= */

.training-content {
    padding: 38px 40px 35px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.training-content h3 {
    margin: 0 0 22px;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.45;

    color: #1d2d44;

    font-family: Arial, sans-serif;
}


/* =========================================
   DESCRIPTION
========================================= */

.training-content p {
    margin: 0 0 28px;

    font-size: 17px;

    line-height: 1.8;


    flex-grow: 1;
}


/* =========================================
   BUTTON
========================================= */

.learn-more-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 14px 28px;

    background: #2f5fb3;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.learn-more-btn:hover {
    background: #234b91;

    transform: translateY(-2px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .training-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }

    .training-content {
        padding: 30px;
    }

    .training-image {
        height: 240px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .training-tracks {
        padding: 55px 20px 60px;
    }

    .training-heading {
        margin-bottom: 40px;
    }

    .training-heading h2 {
        font-size: 34px;
    }

    .training-heading p {
        font-size: 16px;
    }

    .training-cards {
        gap: 25px;
    }

    .training-content h3 {
        font-size: 22px;
    }

    .training-content p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .training-tracks {
        padding: 50px 15px 55px;
    }

    .training-cards {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .training-heading h2 {
        font-size: 30px;

        line-height: 1.25;
    }

    .training-heading p {
        font-size: 16px;

        line-height: 1.6;
    }

    .training-image {
        height: 220px;
    }

    .training-content {
        padding: 28px 22px 25px;
    }

    .training-content h3 {
        font-size: 22px;

        margin-bottom: 15px;
    }

    .training-content p {
        font-size: 16px;

        line-height: 1.7;
    }

    .learn-more-btn {
        width: 100%;

        padding: 13px 20px;
    }

}

 /* Our Placed Candidates Section (High Contrast, South Indian Real Avatars & Marquee Ticker) */
        .placed-candidates-section {
            padding: 5rem 2rem;
            background: #090d16; /* High contrast deep background */
            color: #ffffff;
            overflow: hidden;
        }

        .placed-candidates-section .section-title h2 {
            color: #ffffff;
            text-align: center;
            font-size: 40px;
        }

        .placed-candidates-section .section-title p {
            color: #94a3b8;
            text-align: center;
        }

        /* Marquee wrapper for right-to-left smooth infinite scroll */
        .candidates-marquee-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
            mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
        }

        .candidates-track {
            display: flex;
            gap: 28px;
            width: max-content;
            animation: scrollRightToLeft 35s linear infinite;
        }

        .candidates-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollRightToLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .candidate-card {
            background: #111827; /* High contrast dark surface card */
            border: 2px solid #1e293b;
            border-radius: 12px;
            padding: 2rem 1.25rem 1.5rem 1.25rem;
            text-align: center;
            transition: var(--transition);
            width: 250px;
            flex-shrink: 0;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }

        .candidate-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(56, 189, 248, 0.2);
        }

        .candidate-avatar-ring {
            width: 108px;
            height: 108px;
            margin: 0 auto 1.1rem auto;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        .candidate-avatar-ring img,
        .candidate-avatar-initials {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid #111827;
            display: block;
        }

        .candidate-avatar-ring img {
            object-fit: cover;
        }

        .candidate-avatar-initials {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
        }

        .candidate-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.2rem;
        }

        .candidate-course {
            font-size: 0.78rem;
            color: #94a3b8;
            margin-bottom: 0.7rem;
        }

        .candidate-placed-label {
            font-size: 0.82rem;
            color: #94a3b8;
            margin-bottom: 0.15rem;
        }

        .candidate-company {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.92rem;
            line-height: 1.3;
        }

        /* ===================================
   FEEDBACK SECTION
=================================== */

.feedback-section {
    width: 100%;
    background: #f5f6f8;
    padding: 80px 20px;
    overflow: hidden;
}

.feedback-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   HEADING
=================================== */

.feedback-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


/* ===================================
   SECTION TAG
=================================== */

.feedback-heading .section-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #2c9b86;
    font-size: 15px;
    font-weight: 600;

    margin-bottom: 18px;
}

.feedback-heading .section-tag span {
    width: 25px;
    height: 2px;
    background: #2c9b86;
}


/* ===================================
   MAIN HEADING
=================================== */

.feedback-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;

    color: #243b3b;
}


/* ===================================
   INTRO TEXT
=================================== */

.feedback-heading p {
    max-width: 760px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    color: #64717b;
}


/* ===================================
   FEEDBACK GRID
=================================== */

.feedback-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* ===================================
   FEEDBACK CARD
=================================== */

.feedback-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 38px 40px;

    background: #ffffff;

    border: 1px solid #e2e7e6;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* HOVER */

.feedback-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(35, 59, 59, 0.1);
}


/* ===================================
   FEEDBACK TEXT
=================================== */

.feedback-text {
    margin: 0;

    color: #35434d;

    font-size: 17px;
    line-height: 1.85;

    letter-spacing: 0.1px;
}


/* ===================================
   PERSON AREA
=================================== */

.feedback-person {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 35px;
}


/* ===================================
   PERSON IMAGE
=================================== */

.feedback-person img {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #e7f4f1;
}


/* ===================================
   PERSON NAME
=================================== */

.feedback-person h3 {
    margin: 0 0 6px;

    font-size: 19px;
    font-weight: 700;

    color: #243b3b;
}


/* ===================================
   PERSON ROLE
=================================== */

.feedback-person span {
    display: block;

    font-size: 15px;
    line-height: 1.5;

    color: #71808a;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 1024px) {

    .feedback-section {
        padding: 70px 20px;
    }

    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback-card {
        min-height: 360px;
        padding: 32px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .feedback-section {
        padding: 55px 18px;
    }


    /* HEADING */

    .feedback-heading {
        margin-bottom: 38px;
    }

    .feedback-heading h2 {
        font-size: 32px;
    }

    .feedback-heading p {
        font-size: 16px;
        line-height: 1.65;
    }


    /* GRID */

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* CARD */

    .feedback-card {
        min-height: auto;

        padding: 28px 24px;

        border-radius: 12px;
    }


    /* TEXT */

    .feedback-text {
        font-size: 16px;
        line-height: 1.75;
    }


    /* PERSON */

    .feedback-person {
        margin-top: 28px;
        gap: 14px;
    }

    .feedback-person img {
        width: 55px;
        height: 55px;

        min-width: 55px;
    }

    .feedback-person h3 {
        font-size: 17px;
    }

    .feedback-person span {
        font-size: 14px;
    }

}

/* ===================================
   HIRING PARTNERS SECTION
=================================== */

.hiring-partners-section {
    width: 100%;
    padding: 80px 20px;
    background: #f5f6f8;
    overflow: hidden;
    box-sizing: border-box;
}

.hiring-partners-section *,
.hiring-partners-section *::before,
.hiring-partners-section *::after {
    box-sizing: border-box;
}


/* ===================================
   CONTAINER
=================================== */

.hiring-partners-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   HEADING
=================================== */

.hiring-partners-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.hiring-partners-heading h2 {
    margin: 0 0 18px;

    color: #243b3b;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.hiring-partners-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: #64717b;

    font-size: 18px;
    line-height: 1.7;
}


/* ===================================
   PARTNERS GRID
=================================== */

.partners-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 24px;
}


/* ===================================
   PARTNER CARD
=================================== */

.partner-card {
    width: 100%;
    min-height: 140px;

    padding: 25px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe6e5;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* ===================================
   HOVER
=================================== */

.partner-card:hover {
    transform: translateY(-5px);

    border-color: #2c9b86;

    box-shadow:
        0 12px 30px rgba(36, 59, 59, 0.10);
}


/* ===================================
   LOGO
=================================== */

.partner-card img {
    width: 100%;
    max-width: 150px;

    height: 58px;

    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}


/* ===================================
   PARTNER NAME
=================================== */

.partner-card h3 {
    margin: 0;

    color: #5f6d77;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.4;
}


/* ===================================
   LARGE TABLET
=================================== */

@media (max-width: 1100px) {

    .partners-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .hiring-partners-section {
        padding: 60px 20px;
    }

    .hiring-partners-heading {
        margin-bottom: 40px;
    }

    .hiring-partners-heading h2 {
        font-size: 34px;
    }

    .hiring-partners-heading p {
        font-size: 16px;
        line-height: 1.65;
    }


    .partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }


    .partner-card {
        min-height: 140px;
        padding: 20px 15px;
    }


    .partner-card img {
        max-width: 125px;
        height: 50px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .hiring-partners-section {
        padding: 50px 15px;
    }


    .hiring-partners-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }


    .hiring-partners-heading p {
        font-size: 15px;
    }


    .partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .partner-card {
        min-height: 120px;

        padding: 15px 10px;

        border-radius: 10px;
    }


    .partner-card img {
        max-width: 105px;
        height: 42px;

        margin-bottom: 10px;
    }


    .partner-card h3 {
        font-size: 13px;
    }

}



/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;
    padding: 80px 20px;
    background: #f5f6f8;
    box-sizing: border-box;
}

.faq-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   FAQ HEADING
========================================= */

.faq-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-tag {
    display: inline-block;
    margin-bottom: 12px;

    color: #2f9bc9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.faq-heading h2 {
    margin: 0 0 18px;

    color: #1d2d44;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.faq-heading p {
    margin: 0;

    color: #5d6b7c;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   FAQ ACCORDION
========================================= */

.faq-accordion {
    width: 100%;
    border-top: 1px solid #d8dee6;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    width: 100%;
    border-bottom: 1px solid #d8dee6;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #ffffff;
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-question {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 45px;

    align-items: center;
    gap: 20px;

    padding: 10px 20px;

    border: none;
    background: transparent;

    cursor: pointer;

    color: #1d2d44;

    font-size: 19px;
    font-weight: 600;

    text-align: left;

    font-family: inherit;
}


/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border-radius: 50%;

    color: #2f9bc9;

    font-size: 30px;
    font-weight: 400;

    line-height: 1;

    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: #2f9bc9;
    color: #ffffff;
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active {
    background: #ffffff;
}


/* =========================================
   ANSWER TEXT
========================================= */

.faq-answer p {
    max-width: 900px;

    margin: 0;

    padding:
        0
        90px
        25px
        20px;

    color: #617084;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 60px 15px;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 16px;
    }

    .faq-question {
        grid-template-columns: 1fr 35px;

        padding: 20px 10px;

        gap: 12px;

        font-size: 16px;

        line-height: 1.5;
    }

    .faq-icon {
        width: 32px;
        height: 32px;

        font-size: 26px;
    }

    .faq-answer p {
        padding:
            0
            10px
            20px
            10px;

        font-size: 15px;
        line-height: 1.7;
    }

}

/* =========================================
   GEO FOOTER CAREER BANNER
========================================= */

.geo-footer-banner {
    width: 100%;
    padding: 80px 20px;

    background: #0d1624;

    position: relative;
    overflow: hidden;

    box-sizing: border-box;

    text-align: center;
}


/* Decorative background */

.geo-footer-banner::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(47, 155, 201, 0.12);

    border-radius: 50%;

    top: -250px;
    right: -120px;

    filter: blur(20px);
}


.geo-footer-banner::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(43, 96, 180, 0.10);

    border-radius: 50%;

    bottom: -220px;
    left: -100px;

    filter: blur(20px);
}


/* =========================================
   CONTENT
========================================= */

.geo-footer-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   TAG
========================================= */

.geo-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: #55b6df;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   HEADING
========================================= */

.geo-footer-banner h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   DESCRIPTION
========================================= */

.geo-footer-banner p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #b7c3d0;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.white-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    background: #2f9bc9;

    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.white-btn span {
    font-size: 20px;

    transition: transform 0.3s ease;
}


.white-btn:hover {
    background: #2386b2;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(47, 155, 201, 0.25);
}


.white-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .geo-footer-banner {
        padding: 60px 20px;
    }


    .geo-footer-banner h2 {
        font-size: 32px;
    }


    .geo-footer-banner p {
        font-size: 16px;
    }


    .white-btn {
        width: 100%;

        max-width: 280px;

        padding: 14px 20px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .geo-footer-banner {
        padding: 55px 15px;
    }


    .geo-footer-banner h2 {
        font-size: 28px;
    }


    .geo-tag {
        font-size: 12px;
    }

}

/* ===================================
   YOUTUBE HIGHLIGHTS
=================================== */

.youtube-highlights {
    width: 100%;
    padding: 80px 20px;
    background: #f5f6f8;
    overflow: hidden;
}

.youtube-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ===================================
   HEADING
=================================== */

.youtube-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.youtube-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #176f61;
}

.youtube-heading h2 {
    margin: 0 0 15px;
    color: #203047;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 700;
}

.youtube-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #657080;
    font-size: 17px;
    line-height: 1.7;
}


/* ===================================
   VIDEO GRID
=================================== */

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ===================================
   VIDEO CARD
=================================== */

.youtube-card {
    background: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.youtube-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* ===================================
   VIDEO THUMBNAIL
=================================== */

.youtube-thumbnail {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.youtube-card:hover .youtube-thumbnail img {
    transform: scale(1.05);
}


/* ===================================
   DARK OVERLAY
=================================== */

.youtube-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}


/* ===================================
   YOUTUBE PLAY BUTTON
=================================== */

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    transform: translate(-50%, -50%);

    width: 64px;
    height: 46px;

    border: none;
    border-radius: 12px;

    background: #ff0000;
    color: #ffffff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease,
                background 0.3s ease;
}

.youtube-thumbnail:hover .youtube-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: #e60000;
}


/* ===================================
   CARD CONTENT
=================================== */

.youtube-content {
    padding: 24px;
}

.youtube-content h3 {
    margin: 0 0 12px;

    color: #203047;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.youtube-content p {
    margin: 0;

    color: #687586;

    font-size: 16px;
    line-height: 1.7;
}


/* ===================================
   VIEW MORE
=================================== */

.youtube-view-more {
    text-align: center;
    margin-top: 45px;
}

.youtube-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    background: #176f61;
    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.youtube-more-btn:hover {
    background: #12594e;
    transform: translateY(-2px);
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 1100px) {

    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .youtube-highlights {
        padding: 60px 15px;
    }

    .youtube-heading {
        margin-bottom: 35px;
    }

    .youtube-heading h2 {
        font-size: 30px;
    }

    .youtube-heading p {
        font-size: 16px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .youtube-thumbnail {
        height: 220px;
    }

    .youtube-content {
        padding: 20px;
    }

}

/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonials-section {
    width: 100%;
    background: #1a1d23;
    padding: 80px 20px;
    color: #e8e5df;
}

.testimonials-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.testimonials-section .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #e6a844;
    margin-bottom: 20px;
}

.testimonials-section .section-tag span {
    width: 20px;
    height: 1px;
    background: #e6a844;
}


/* ===================================
   HEADING
=================================== */

.testimonials-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #e8e5df;
    margin: 0 0 16px;
}


/* ===================================
   INTRO
=================================== */

.testimonials-intro {
    max-width: 750px;
    font-size: 17px;
    line-height: 1.7;
    color: #bcb9b3;
    margin: 0 0 45px;
}


/* ===================================
   TESTIMONIAL WRAPPER
=================================== */

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
}


/* ===================================
   TESTIMONIAL TRACK
=================================== */

.testimonial-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}


/* ===================================
   TESTIMONIAL CARD
=================================== */

.testimonial-card {
    position: relative;
    flex: 0 0 calc(33.333% - 19px);
    min-height: 300px;

    background: #22262e;
    border: 1px solid #30353d;
    border-radius: 14px;

    padding: 34px 36px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 168, 68, 0.55);
    background: #252a33;
}


/* ===================================
   GOOGLE ICON - TOP RIGHT
=================================== */

.google-icon {
    position: absolute;
    top: 22px;
    right: 24px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #ffffff;

    opacity: 0.9;
}


/* ===================================
   TESTIMONIAL TEXT
=================================== */

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #c4c1bc;

    margin: 0 0 30px;
    padding-right: 35px;

    flex-grow: 1;
}


/* ===================================
   STUDENT DETAILS
=================================== */

.student-details {
    margin-top: auto;
}

.student-details h3 {
    font-size: 19px;
    font-weight: 600;
    color: #e8e5df;

    margin: 0 0 6px;
}

.student-details p {
    font-size: 15px;
    line-height: 1.5;
    color: #aaa7a1;

    margin: 0 0 10px;
}


/* ===================================
   STARS - BELOW NAME
=================================== */

.stars {
    color: #e6a844;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 1;
}


/* ===================================
   SLIDER CONTROLS
=================================== */

.testimonial-controls {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid #3a4049;

    background: transparent;
    color: #e8e5df;

    font-size: 20px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: #e6a844;
    color: #1a1d23;
    border-color: #e6a844;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .testimonials-section {
        padding: 60px 16px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 280px;

        padding: 28px 24px;
    }

    .testimonial-text {
        font-size: 16px;
        padding-right: 25px;
    }

    .google-icon {
        top: 18px;
        right: 18px;
    }

    .student-details h3 {
        font-size: 18px;
    }

    .testimonials-intro {
        font-size: 16px;
    }

}