body {
    font-family: 'Poppins', sans-serif;
    font-family: "Source Serif 4", serif;
    font-family: "Open Sans", sans-serif;
}

:root {
    --primary: #812972;
    --secondary: #e71f79;
    --light-pink: #f8e3ec;
    --dark: #2b2b2b;
}


/* To fix width */

@media (max-width: 768px) {
    /* 1. HARD STOP OVERFLOW */
    html,
    body {
        overflow-x: hidden;
    }
    /* 2. FIX NAVBAR WIDTH */
    .main-navbar {
        width: 100%;
        overflow: hidden;
    }
    /* 3. FIX FLEX BREAKING */
    .main-navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }
    /* 4. CRITICAL FIX → allow shrink */
    .logo-wrapper {
        flex: 1 1 auto;
        min-width: 0;
        /* 🔥 VERY IMPORTANT */
    }
    /* 5. LOGO STACK CONTROL */
    .logo-stack {
        display: flex;
        flex-direction: column;
        gap: 2px;
        max-width: 180px;
        overflow: hidden;
    }
    .logo-top {
        width: 36px;
        height: auto;
    }
    .logo-bottom {
        width: 100%;
        height: auto;
    }
    /* 6. BUTTON FIX */
    .apply-btn {
        flex: 0 0 auto;
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;
    }
}

h1 {
    color: black;
}

body {
    font-size: 12px;
    color: black;
}

.top-bar {
    background-color: #812972;
}

.logo-top {
    width: 60px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(89%) saturate(2385%) hue-rotate(315deg) brightness(96%) contrast(96%);
}

.main-navbar {
    background-color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    background-color: white;
    padding: 15px 0;
    position: fixed;
    /* 🔥 this fixes it at top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: none;
    /* default no shadow */
}

.nav-scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo-stack {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.logo-top {
    width: 60px;
}

.logo-bottom {
    width: 180px;
    margin-top: 5px;
}

.apply-btn {
    background: #f4a52f;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
}

.apply-btn:hover {
    background: #f4a52f;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
}


/* Scroll Effect */

.nav-scrolled .logo-stack {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    /* 🔥 IMPORTANT spacing */
}


/* TOP LOGO */

.nav-scrolled .logo-top {
    width: 42px;
    margin-right: 0;
    /* remove extra shift */
}


/* BOTTOM LOGO */

.nav-scrolled .logo-bottom {
    width: 130px;
    margin-top: 0;
    white-space: nowrap;
    /* 🔥 prevent break */
}

.nav-scrolled .logo-top {
    width: 45px;
    margin-right: 10px;
}

.nav-scrolled .logo-bottom {
    width: 140px;
    margin-top: 0;
}


/* Mobile */

@media(max-width:768px) {
    .logo-top {
        width: 45px;
    }
    .logo-bottom {
        width: 120px;
    }
    .apply-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    .nav-scrolled .logo-stack {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    .nav-scrolled .logo-top {
        width: 35px;
    }
    .nav-scrolled .logo-bottom {
        width: 100px;
    }
}


/* HERO BACKGROUND */

.hero {
    background: url("images/hero.webp") no-repeat center center;
    min-height: 80vh;
    /* control height */
    display: flex;
    align-items: center;
    padding: 170px 0 20px 0;
    /* reduced */
    position: relative;
    /* background-color: #FDEAF1; */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.85); */
}

.hero .container {
    position: relative;
    z-index: 2;
}


/* LEFT CONTENT */


/* ROW ALIGN FIX */

.hero-left .row {
    align-items: flex-start;
}


/* TITLE */

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}


/* PINK */

.pink {
    color: #e71f79;
}


/* TAGLINE */

.hero-tagline {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    margin: 15px 0;
    font-size: 22px;
}


/* INLINE AMOUNT (IMPORTANT FIX) */

.amount-inline {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 700;
    margin-left: 8px;
}

.amount-inline .pink {
    font-size: 40px;
}


/* SMALL TEXT */

.small-text {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 20px;
}


/* SUB TEXT */

.sub-text {
    font-size: 20px;
    margin-top: 10px;
}

.sub-text span {
    font-size: 28px;
    font-weight: 600;
}


/* DESCRIPTION */

.description {
    max-width: 420px;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}


/* FORM */

.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}


/* FORM BOX */

.form-box {
    background: #fff;
    max-width: 360px;
    margin-left: auto;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* FORM TITLE */

.form-title {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}


/* INPUT FIELDS */

.form-box .form-control {
    margin-bottom: 8px;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: none;
    transition: all 0.3s ease;
}


/* INPUT FOCUS EFFECT */

.form-box .form-control:focus {
    border-color: #e71f79;
    box-shadow: 0 0 0 2px rgba(231, 31, 121, 0.1);
}


/* COUNTRY CODE INPUT */

.form-box .w-25 {
    text-align: center;
    background: #f5f5f5;
}


/* BUTTON */

.form-btn {
    background-color: #e71f79;
    color: white;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-top: 5px;
    transition: 0.3s;
}

.form-btn:hover {
    background-color: #c21863;
}


/* CAPTCHA */

.captcha-box {
    background: #f1f1f1;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 6px;
    letter-spacing: 2px;
}


/* LOGIN TEXT */

.login-text {
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    color: #555;
}

.login-text span {
    color: #e71f79;
    font-weight: 500;
    cursor: pointer;
}


/* RESPONSIVE */


/* =========================
   MOBILE RESPONSIVE FIX
========================= */


/* GLOBAL FIX (IMPORTANT) */

html,
body {
    overflow-x: hidden;
}


/* HERO MOBILE */

@media (max-width: 991px) {
    .hero {
        background-size: cover;
        /* FIX image scaling */
        min-height: auto;
        padding: 40px 0;
    }
    .hero .row {
        flex-direction: column;
    }
    /* LEFT SECTION */
    .hero-left {
        margin-bottom: 20px;
    }
    .hero-left .row {
        flex-direction: column;
    }
    /* TITLE */
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    /* TAGLINE */
    .hero-tagline {
        font-size: 18px;
        text-align: center;
    }
    /* RIGHT TEXT BLOCK */
    .hero-info {
        text-align: center;
        margin-top: 15px;
    }
    .small-text {
        font-size: 16px;
    }
    .amount-inline {
        font-size: 24px;
    }
    .amount-inline .pink {
        font-size: 28px;
    }
    .sub-text {
        font-size: 18px;
    }
    .sub-text span {
        font-size: 22px;
    }
    .description {
        font-size: 13px;
        margin: 10px auto;
    }
    /* FORM SECTION */
    .form-box {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 15px;
    }
    /* INPUT ROW FIX */
    .form-box .d-flex {
        flex-direction: column;
        gap: 8px;
    }
    .form-box .w-25 {
        width: 100% !important;
    }
    /* STATE CITY FIX */
    .form-box .row {
        flex-direction: column;
    }
    .form-box .col-6 {
        width: 100%;
    }
    /* CAPTCHA FIX */
    .captcha-box {
        width: 100%;
        text-align: center;
    }
    /* BUTTON */
    .form-btn {
        padding: 12px;
        font-size: 14px;
    }
}


/* EXTRA SMALL DEVICES */

@media (max-width: 576px) {
    /* HERO HEIGHT CONTROL */
    .hero {
        min-height: 320px;
        /* 🔥 reduced height */
        padding: 25px 0;
        background-size: 115%;
        /* slight zoom-out feel */
        background-position: center top;
        padding: 150px 0 10px 0;
        /* reduced */
    }
    /* TITLE */
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    /* TAGLINE */
    .hero-tagline {
        font-size: 15px;
        margin: 10px 0;
    }
    /* AMOUNT */
    .amount-inline {
        font-size: 20px;
    }
    .amount-inline .pink {
        font-size: 24px;
    }
    /* SUB TEXT */
    .sub-text {
        font-size: 15px;
        margin-top: 8px;
    }
    .sub-text span {
        font-size: 20px;
    }
    /* DESCRIPTION */
    .description {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 8px;
    }
    /* FORM */
    .form-box {
        padding: 12px;
        margin-top: 15px;
    }
}

.main-navbar {
    transition: all 0.35s ease;
}

.nav-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}


/* SECTION BACKGROUND */

.feature-section {
    background: #FDE9F1;
    padding: 60px 0;
}


/* CARD */

.feature-card {
    position: relative;
    padding: 30px 25px;
    height: 100%;
    /* GRADIENT FIX */
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.7) 60%, #ffffff 100%);
    border-radius: 4px;
}


/* ICON */

.feature-icon {
    width: 42px;
    margin-bottom: 15px;
}


/* BIG NUMBER */

.big-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: 600;
    color: #BF8DB1;
}


/* TITLE */

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}


/* TEXT */

.feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .feature-card {
        padding: 20px;
    }
    .big-number {
        font-size: 50px;
    }
}


/* SECTION */

.awards-section {
    background: #e6e9ef;
    padding: 60px 0;
}


/* HEADER */

.section-header {
    margin-bottom: 30px;
}

.stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 5px;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
}


/* CARD */

.award-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    border: 1px solid #ddd;
}


/* TEXT */

.award-card p {
    font-size: 14px;
    color: #222;
    max-width: 75%;
    margin: 0;
}


/* IMAGE */

.award-card img {
    max-width: 80px;
    height: auto;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    .award-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .award-card p {
        max-width: 100%;
    }
    .award-card img {
        max-width: 70px;
    }
}


/* SECTION BACKGROUND */

.outcomes-section {
    background: #FDEAF1;
    padding: 70px 0;
    text-align: center;
}


/* TITLE */

.outcomes-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}


/* SUBTITLE */

.outcomes-subtitle {
    font-size: 14px;
    color: #444;
    margin-bottom: 50px;
}


/* ROW SPACING */

.outcomes-row {
    align-items: center;
}


/* BOX */

.outcome-box {
    padding: 20px;
    position: relative;
}


/* NUMBER */

.outcome-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #e71f79;
    margin-bottom: 10px;
}


/* TEXT */

.outcome-box p {
    font-size: 13px;
    color: #111;
    letter-spacing: 0.5px;
}


/* VERTICAL LINE */

.border-left {
    border-left: 2px solid #d4a24c;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .border-left {
        border-left: none;
    }
    .outcome-box {
        margin-bottom: 20px;
    }
}


/* SECTION */

.recruiters-section {
    background: #FDEAF1;
    padding: 60px 0;
}


/* TITLE */

.recruiter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}


/* SLIDER */

.logo-slider {
    overflow: hidden;
    position: relative;
}


/* TRACK */

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}


/* REVERSE ROW */

.logo-track.reverse {
    animation: scroll-reverse 60s linear infinite;
}


/* LOGO BOX */

.logo-box {
    background: #fff;
    border: 1px solid #ddd;
    width: 160px;
    height: 90px;
    margin: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* LOGO IMAGE */

.logo-box img {
    max-height: 45px;
    max-width: 120px;
    object-fit: contain;
}


/* SCROLL LEFT */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* SCROLL RIGHT */

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .logo-box {
        width: 120px;
        height: 70px;
    }
    .logo-box img {
        max-height: 35px;
    }
}


/* ACHIEVEMENT ROW */

.achievement-card {
    overflow: hidden;
    border-radius: 6px;
}


/* IMAGE */

.achievement-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease;
}


/* HOVER EFFECT (optional but nice) */

.achievement-card img:hover {
    transform: scale(1.05);
}


/* SECTION */

.industry-section {
    background: #cfd8e3;
    padding: 50px 0;
}


/* TITLE */

.industry-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.industry-title span {
    color: #e71f79;
}


/* SLIDER */

.industry-slider {
    overflow: hidden;
    position: relative;
}


/* TRACK */

.industry-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}


/* LOGOS */

.industry-track img {
    height: 50px;
    margin: 0 30px;
    object-fit: contain;
    opacity: 0.8;
}


/* SCROLL ANIMATION */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .industry-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
    .industry-track img {
        height: 40px;
        margin: 0 15px;
    }
}


/* SECTION */

.success-section {
    background: #f3f3f3;
    padding: 70px 0;
}


/* LEFT SIDE */

.success-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.success-title span {
    color: #e71f79;
}

.success-text {
    margin: 20px 0;
    font-size: 15px;
    color: #333;
    max-width: 420px;
}

.hashtag-img {
    margin-top: 20px;
    max-width: 200px;
}


/* SLIDER */

.success-slider {
    overflow: hidden;
    position: relative;
}


/* TRACK */

.success-track {
    display: flex;
    width: max-content;
    animation: successScroll 25s linear infinite;
}


/* CARD */

.success-card {
    width: 230px;
    margin: 0 15px;
}


/* IMAGE */

.success-card img {
    width: 100%;
    display: block;
}


/* ANIMATION */

@keyframes successScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .success-title {
        font-size: 28px;
        text-align: center;
    }
    .success-text {
        text-align: center;
        margin: 15px auto;
    }
    .hashtag-img {
        display: block;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .success-card {
        width: 160px;
        margin: 0 10px;
    }
}


/* SECTION */

.programs-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
}


/* WRAPPER */

.programs-wrapper {
    border-radius: 6px;
    overflow: hidden;
    /* keeps edges clean */
}


/* LEFT */

.programs-left {
    background: #7a2c6f;
    color: #fff;
    padding: 50px 40px;
}


/* RIGHT */

.programs-right {
    background: #f2f3f5;
    padding: 50px 40px;
}


/* TITLE */

.programs-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}


/* LIST */

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}

.program-list li span {
    color: #ffc107;
}


/* ACTIVE */

.program-list li.active {
    color: #ffc107;
    border-bottom: 2px solid #ffc107;
}


/* RIGHT CONTENT */

.program-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.program-content h5 {
    margin-top: 20px;
    font-weight: 600;
}


/* COURSE LIST */

.course-list {
    list-style: none;
    padding: 0;
}

.course-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #7a2c6f;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .programs-left,
    .programs-right {
        padding: 30px 20px;
    }
}


/* SECTION */

.ie-section {
    background: #fff;
    position: relative;
    padding: 60px 0 120px;
}

@media (max-width: 768px) {
    .ie-section {
        padding: 0px 10px;
    }
}


/* TITLE */

.ie-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.ie-title span {
    color: #e71f79;
    font-style: italic;
    font-weight: 500;
}


/* IMAGE */

.ie-image-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.ie-main-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}


/* PURPLE BACKGROUND BAND */

.ie-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: #7a2c6f;
    z-index: 0;
}


/* CARD WRAPPER */

.ie-card-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}


/* CARD */

.ie-card {
    background: #cfd8e3;
    padding: 30px;
    border-radius: 12px;
}


/* BOX */

.ie-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    height: 100%;
}


/* IMAGE */

.ie-box img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}


/* TEXT */

.ie-box p {
    font-size: 14px;
    margin: 0;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .ie-title {
        font-size: 26px;
    }
    .ie-card-wrapper {
        margin-top: -60px;
    }
    .ie-section::after {
        height: 120px;
    }
}


/* SECTION */

.qcare-section {
    background: #f1e3e7;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}


/* LEFT */

.qcare-logo {
    max-width: 260px;
    margin-bottom: 20px;
}

.qcare-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}


/* RIGHT */

.qcare-right {
    position: relative;
}


/* VERTICAL LINE */

.qcare-content {
    padding-left: 40px;
    position: relative;
}

.qcare-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #f4b400;
}


/* TEXT */

.qcare-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}


/* SUB TEXT */

.scholar-text {
    margin-top: 20px;
    font-weight: 600;
}


/* AMOUNT */

.amount {
    color: #e71f79;
    font-size: 28px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .qcare-content {
        padding-left: 20px;
        margin-top: 30px;
    }
    .qcare-content::before {
        height: 80%;
    }
    .qcare-logo {
        max-width: 200px;
    }
}


/* SECTION */

.scholar-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #f0b35c, #e71f79);
    font-family: 'Poppins', sans-serif;
}


/* TITLE */

.scholar-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}


/* CARD */

.scholar-card {
    background: #fff;
    padding: 30px;
    border-left: 5px solid #e71f79;
    height: 100%;
}


/* NUMBER */

.scholar-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #7a2c6f;
    margin-bottom: 10px;
}


/* TEXT */

.scholar-card p {
    font-size: 14px;
    color: #333;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .scholar-title {
        font-size: 22px;
    }
    .scholar-card {
        padding: 20px;
    }
}

.student-section {
    background: #3f434b;
    padding: 80px 0;
    color: #fff;
}


/* TITLE */

.student-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}


/* TEXT */

.testimonial-box {
    max-width: 700px;
    margin: 0 auto 40px;
}

#student-name {
    margin-top: 10px;
    font-weight: 600;
}

#student-course {
    font-size: 13px;
}


/* SLIDER */

.student-slider {
    position: relative;
}


/* IMAGE ROW */

.student-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}


/* ITEM */

.student-item {
    position: relative;
    width: 80px;
    height: 80px;
    transition: 0.3s;
}

.student-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.5;
}


/* ACTIVE */

.student-item.active {
    width: 100px;
    height: 100px;
}

.student-item.active img {
    border: 3px solid #f4c542;
    opacity: 1;
}


/* LINE */

.student-item.active::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #f4c542;
    transform: translateX(-50%);
}


/* DOT */

.student-item.active::after {
    content: "";
    position: absolute;
    top: -35px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #f4c542;
    border-radius: 50%;
    transform: translateX(-50%);
}


/* ARROWS */

.student-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #f4c542;
    border-radius: 50%;
    background: transparent;
    color: #f4c542;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.student-arrow-left {
    left: -60px;
}

.student-arrow-right {
    right: -60px;
}


/* MOBILE */

@media (max-width: 768px) {
    /* SECTION PADDING */
    .student-section {
        padding: 50px 15px;
    }
    /* TEXT SIZE */
    .student-title {
        font-size: 22px;
    }
    .testimonial-box {
        max-width: 100%;
        padding: 0 10px;
    }
    .testimonial-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    /* IMAGE ROW FIX */
    .student-images {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    /* HIDE SCROLLBAR */
    .student-images::-webkit-scrollbar {
        display: none;
    }
    /* IMAGE SIZE */
    .student-item {
        width: 55px;
        height: 55px;
        flex: 0 0 auto;
        /* 🔥 prevents shrink/overflow */
    }
    .student-item.active {
        width: 75px;
        height: 75px;
    }
    /* DOT + LINE ADJUST */
    .student-item.active::before {
        top: -18px;
        height: 15px;
    }
    .student-item.active::after {
        top: -26px;
        width: 6px;
        height: 6px;
    }
    /* HIDE ARROWS */
    .student-arrow {
        display: none;
    }
}


/* SECTION */

.gallery-section {
    padding: 0;
}


/* GRID LAYOUT */

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
}


/* ITEMS */

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* BIG LEFT IMAGE */

.gallery-item.big {
    grid-row: span 2;
}


/* OVERLAY TEXT */

.overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #e71f79;
    color: #fff;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
}


/* HOVER EFFECT (optional but nice) */

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.big {
        grid-row: auto;
    }
}


/* SECTION */

.clubs-section {
    background: #f5e8ec;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}


/* TITLE */

.clubs-title {
    color: #e71f79;
    font-weight: 700;
}

.clubs-sub {
    margin-bottom: 20px;
}


/* SCROLL ROW */

.scroll-row {
    overflow: hidden;
    margin-bottom: 15px;
}


/* TRACK */

.scroll-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll 10s linear infinite;
}


/* SPEED VARIATION */

.scroll-track.slow {
    animation-duration: 15s;
}


/* CARD */

.club-card {
    min-width: 140px;
    height: 110px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-card img {
    max-width: 80%;
    max-height: 70px;
}


/* SCROLL ANIMATION */

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* BOTTOM IMAGES */

.bottom-img {
    width: 100%;
    border-radius: 10px;
}


/* RIGHT IMAGE */

.main-img {
    width: 100%;
    border-radius: 12px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .clubs-title {
        font-size: 22px;
    }
}

.club-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* SECTION */

.genesis-section {
    background: linear-gradient(90deg, #c9d6a4, #a8b97a);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}


/* IMAGE */

.genesis-img-box {
    border-radius: 12px;
    overflow: hidden;
}

.genesis-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}


/* CONTENT */

.genesis-content {
    padding-left: 30px;
}


/* LOGO */

.genesis-logo {
    max-width: 180px;
    margin-bottom: 20px;
}


/* TITLE */

.genesis-title {
    color: #5aa43d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}


/* TEXT */

.genesis-content p {
    font-size: 14px;
    color: #2f2f2f;
    margin-bottom: 12px;
    line-height: 1.6;
}


/* SUB TITLE */

.genesis-sub {
    margin-top: 20px;
    font-weight: 700;
}


/* LIST */

.genesis-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.genesis-list li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}


/* GREEN BULLET */

.genesis-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #5aa43d;
    font-size: 16px;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .genesis-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .genesis-title {
        font-size: 22px;
    }
}


/* FOOTER */

.main-footer {
    font-family: 'Poppins', sans-serif;
}


/* TOP */

.footer-top {
    background: #7a2c6f;
    padding: 40px 0;
}


/* BUTTON */

.apply-btn {
    background: #e71f79;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 14px;
}


/* BOTTOM */

.footer-bottom {
    background: #7a2c6f;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}


/* TEXT */

.footer-bottom p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}


/* BRAND COLOR */

.footer-bottom .brand {
    color: #ffb400;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}