/* ================= GLOBAL RESET ================= */

html,
body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e31b23;
    --primary-dark: #c4151c;
    --dark: #111;
    --light: #f7f8fb;
    --text: #222;
    --muted: #666;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}


/* Centered container */

.head-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* Logo wrapper */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    /* Space between logo & text */
}


/* Logo image */

.logo img {
    height: 45px;
    width: auto;
    display: block;
}


/* Online text */

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 5px;
    background: #e71b2a;
    border-radius: 5px;
}

.hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr 380px;
    gap: 40px;
    padding: 100px 6%;
    background: #f3ebe4;
    align-items: center;
}


/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* HERO SECTION */

.cu-hero {
    background: #f4f4f4;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    padding: 0 20px;
}


/* LEFT */

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.scholarship {
    font-size: 20px;
    margin-bottom: 30px;
}

.scholarship span {
    color: #e71b2a;
    font-weight: 700;
}


/* PROGRAM BOX */

.program-box {
    border: 2px solid #e71b2a;
    border-radius: 10px;
    padding: 25px;
    width: fit-content;
    margin-bottom: 30px;
    background: #fff;
}

.program-box .label {
    background: #e71b2a;
    color: #fff;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.programs {
    font-size: 18px;
    font-weight: 600;
}


/* ACCREDITATION */

.accreditation-box {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.accreditation-box img {
    height: 45px;
}


/* RIGHT FORM */

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.form-container {
    width: 400px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

input:focus,
select:focus {
    border-color: #e71b2a;
}


/* TERMS */

.term-condition {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.term-condition input {
    margin-top: 4px;
}


/* BUTTON */

.btn-submit {
    padding: 14px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #f5821f, #e71b2a);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-right {
        justify-content: center;
    }
    .form-container {
        width: 100%;
    }
    .program-box {
        margin: 0 auto 30px;
    }
    .accreditation-box {
        justify-content: center;
    }
      /* ===== STATS ===== */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


/* ============================= */


/* RESPONSIVE DESIGN */


/* ============================= */

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-right {
        justify-content: center;
    }
    .hero-title {
        font-size: 36px;
    }
}

.date-badge {
    background: #e71d23;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
}

.scholarship {
    font-size: 30px;
    margin-bottom: 30px;
}

.scholarship span {
    color: #e71d23;
    font-weight: 700;
}


/* PROGRAM BOX */

.program-box {
    border: 2px solid #e71d23;
    padding: 15px;
    width: fit-content;
    border-radius: 8px;
}

.program-box .label {
    background: #e71d23;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.programs {
    font-weight: 600;
    font-size: 18px;
}


/* LOGOS */

.logos {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.logos img {
    height: 40px;
}


/* RIGHT SIDE FIX */

.hero-right {
    position: relative;
    flex: 1;
    min-height: 600px;
    /* important */
}


/* student image */

.student-img {
    position: relative;
    /* instead of absolute */
    right: 120px;
    /* moves image LEFT */
    bottom: 0;
    height: 520px;
    z-index: 1;
}


/* FORM CARD */

.form-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.form-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-card button {
    width: 100%;
    background: #e71d23;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.form-card button:hover {
    opacity: 0.9;
}

.login {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}


/* ===== MOBILE ===== */

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .form-card {
        position: static;
        margin-top: 25px;
    }
    .student-img {
        max-height: 350px;
    }
}

.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
}

.form-card {
    width: 100%;
    max-width: 380px;
}

.features-side {
    background: #0c0c0c;
    padding: 30px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-box {
    display: flex;
    align-items: center;
    background: #3a3a3a;
    color: white;
    /* border-radius: 5px; */
    overflow: hidden;
    min-height: 70px;
    transition: 0.3s;
    cursor: pointer;
}


/* hover effect */

.feature-box:hover {
    transform: translateY(-5px);
    background: #444;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .form-card {
        width: 100%;
    }
    .features-side {
        order: 3;
    }
}

.date-badge {
    background: #e31b23;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-left: 8px;
    font-weight: 700;
}

.scholarship {
    font-size: 22px;
    margin: 20px 0;
}

.scholarship span {
    color: #e31b23;
    font-weight: 700;
}

.program-strip {
    background: #fff;
    border: 2px solid #e31b23;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.hero-student img {
    height: 520px;
    object-fit: contain;
}

.form-card {
    width: 380px;
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-student img {
        height: 300px;
    }
    .form-card {
        width: 100%;
    }
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}


/* Left */

.left {
    color: white;
    max-width: 550px;
}

.left h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.highlight {
    background: #e31b23;
    padding: 8px 14px;
    border-radius: 6px;
}

.scholarship-badge {
    background: #fff3f3;
    color: #e31b23;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.programs {
    background: white;
    padding: 14px;
    border-radius: 10px;
}

.form-card {
    width: 380px;
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
}

.btn,
.apply-btn,
.cta-btn,
.footer-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.25s;
}

.btn:hover,
.apply-btn:hover,
.cta-btn:hover,
.footer-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* Sticky Bar */

.sticky-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #e31b23;
    color: white;
    text-align: center;
    padding: 12px;
}


/* WhatsApp */

.whatsapp-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Responsive */

@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
    }
    .form-card {
        width: 100%;
    }
}


/* ================= FEATURES ================= */

.features {
    background: #0b0b0b;
    padding: 100px 8%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.feature-box .icon {
    background: #e31b23;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.feature-box p {
    font-size: 14px;
}


/* ================= BENCHMARKS ================= */

.benchmarks {
    background: #f6f7fb;
    text-align: center;
    padding: 100px 8%;
}

.benchmarks h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.benchmarks span {
    background: #e31b23;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    color: #e31b23;
    font-size: 30px;
    margin-bottom: 8px;
}


/* ================= ACCREDITATIONS ================= */


/* white card container */


/* each logo */

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    max-height: 120px;
    height: 100%;
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
    margin: 20px 0;
}


/* images */

.logo-box img {
    max-height: 120px;
    height: 100%;
    max-width: 200px;
    width: 100%;
}


/* ================= PROGRAMS SECTION ================= */


/* Tabs */

.tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 600;
    margin: 0 5px;
    border-radius: 5px;
    transition: 0.3s;
}

.tab-btn.active {
    background: #e31b23;
    color: #fff;
}


/* Tab Content */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.programs-section {
    background: #111;
    color: white;
    padding: 100px 8%;
}

.program-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.programs-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


/* left image */

.program-image img {
    width: 320px;
    border-radius: 14px;
}


/* grid */

.program-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}


/* card */

.program-card {
    background: white;
    color: #111;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* red header */

.card-head {
    background: #e31b23;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 14px;
}

.discount {
    color: #e31b23;
    font-weight: 600;
}


/* price */

.price {
    margin: 10px 0;
}

.old {
    text-decoration: line-through;
    color: gray;
    margin-right: 8px;
}

.new {
    font-weight: 700;
    font-size: 18px;
}


/* apply button */

.apply-btn {
    background: #e31b23;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}


/* responsive */

@media (max-width: 900px) {
    .programs-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .program-image img {
        width: 220px;
    }
}


/* ================= PG SECTION ================= */

.pg-section {
    background: #1a1a1a;
    color: white;
    padding: 100px 8%;
}


/* reuse same layout but darker */

.pg-section .program-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}


/* same wrapper reused */

.pg-section .program-image img {
    width: 320px;
    border-radius: 14px;
}


/* ================= WHY STUDY ================= */

.why-study {
    background: white;
    padding: 100px 8%;
    text-align: center;
}

.why-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 500;
}

.why-title span {
    background: #e31b23;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
}


/* grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}


/* box */

.why-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}


/* icon */

.why-icon {
    font-size: 34px;
    color: #e31b23;
}


/* text */

.why-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e31b23;
    max-width: 260px;
}


/* ================= CAREER ADVANTAGES ================= */

.career-advantages {
    position: relative;
    padding: 100px 8%;
    color: white;
    text-align: center;
    overflow: hidden;
}


/* background banner */

.career-advantages::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") center/cover no-repeat;
    z-index: -1;
}


/* title */

.career-title {
    font-size: 34px;
    margin-bottom: 60px;
    font-weight: 600;
}


/* grid */

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}


/* card */

.career-box {
    max-width: 360px;
    margin: auto;
}


/* icon */

.career-icon {
    background: #e31b23;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}


/* heading */

.career-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}


/* text */

.career-box p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}


/* responsive */

@media (max-width: 900px) {
    .career-title {
        font-size: 28px;
    }
}


/* ================= ALUMNI SECTION ================= */

.alumni-section {
    background: #e31b23;
    padding: 100px 8%;
    text-align: center;
}

.alumni-title {
    color: white;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
}


/* grid */

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}


/* white logo card */

.alumni-box {
    background: white;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: 0.25s;
}

.alumni-box:hover {
    transform: translateY(-4px);
}


/* logos */

.alumni-box img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}


/* ================= MENTORS SECTION ================= */

.mentors-section {
    background: #f3ebe4;
    padding: 100px 8%;
    text-align: center;
}

.mentor-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
}


/* grid */

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}


/* card */

.mentor-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
}


/* image */

.mentor-card img {
    width: 130px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
}


/* text */

.mentor-content {
    text-align: left;
}

.mentor-content h3 {
    color: #e31b23;
    margin-bottom: 6px;
}

.company {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.mentor-content p {
    font-size: 14px;
    line-height: 1.6;
}


/* responsive */

@media (max-width: 900px) {
    .mentor-card {
        flex-direction: column;
        text-align: center;
    }
    .mentor-content {
        text-align: center;
    }
}


/* ================= TESTIMONIALS ================= */

.testimonial-section {
    background: #e31b23;
    padding: 100px 8%;
    text-align: center;
    color: white;
}

.testimonial-title {
    font-size: 34px;
    margin-bottom: 60px;
    font-weight: 600;
}


/* grid */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


/* card */

.testimonial-card {
    background: white;
    color: #222;
    padding: 35px 25px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* student image */

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: -70px auto 15px;
    border: 5px solid white;
}


/* name */

.testimonial-card h3 {
    color: #e31b23;
    margin-bottom: 5px;
}


/* course */

.course {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 14px;
}


/* text */

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
}


/* responsive */

@media (max-width: 900px) {
    .testimonial-title {
        font-size: 28px;
    }
}


/* ================= FINAL CTA ================= */

.final-cta {
    background: #000;
    color: white;
    padding: 100px 8%;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.final-cta h2 {
    font-size: 34px;
    font-weight: 500;
}

.final-cta span {
    font-weight: 700;
}

.cta-btn {
    background: #e31b23;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
}

.cta-btn:hover {
    background: #c4151c;
}


/* ================= FOOTER ================= */

.main-footer {
    background: #f3f3f3;
    padding: 50px 8% 25px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}


/* logo */

.footer-logo h2 {
    font-weight: 700;
}

.footer-logo span {
    color: #e31b23;
}


/* address */

.footer-address {
    max-width: 380px;
    color: #333;
    font-size: 14px;
}


/* buttons */

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-btn {
    background: #e31b23;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
}


/* copyright */

.copyright {
    margin-top: 35px;
    text-align: center;
    font-size: 13px;
    color: #666;
}


/* responsive */

@media (max-width: 900px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .footer-actions {
        width: 100%;
    }
}

.program-card,
.stat-box,
.logo-container,
.mentor-card,
.testimonial-card,
.alumni-box {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.25s;
}

.program-card:hover,
.mentor-card:hover,
.testimonial-card:hover,
.alumni-box:hover {
    transform: translateY(-6px);
}

.form-card {
    width: 390px;
    background: #f7f7f7;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.form-card h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    margin-bottom: 12px;
    font-size: 14px;
    background: #ffffff;
}

.form-card input:focus,
.form-card select:focus {
    outline: none;
    border-color: #e31b23;
}

.phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    background: white;
    margin-bottom: 12px;
}

.phone-group .flag {
    padding: 0 10px;
    font-size: 14px;
    color: #444;
}

.phone-group input {
    border: none;
    margin: 0;
}

.dob-label {
    font-size: 13px;
    margin: 6px 0;
    display: block;
    color: #555;
}

.dob-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.dob-group select {
    flex: 1;
}

.checkbox {
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 10px 0 18px;
}

.register-btn {
    width: 100%;
    background: #e31b23;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.register-btn:hover {
    background: #c4161e;
}

.login-text {
    text-align: center;
    font-size: 13px;
    margin-top: 15px;
}

.login-text a {
    color: #e31b23;
    font-weight: 600;
    text-decoration: none;
}


/* ACCREDITATION BOX */

.accreditation-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: #fff;
    padding: 18px 35px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: fit-content;
}


/* LOGOS */

.accreditation-box img {
    height: 42px;
    object-fit: contain;
    border: none !important;
    /* removes any logo borders */
    outline: none;
}


/* ===== FEATURES SECTION ===== */

.features {
    background: #0b0b0b;
    padding: 80px 8%;
}


/* GRID */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* CARD */


/* LEFT RED ICON BLOCK */

.feature-icon {
    width: 80px;
    height: 90px;
    background: #e71d23;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}


/* TEXT */

.feature-text {
    padding: 0 18px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
}


/* ===== SECTION ===== */

.stats {
    background: #e31b23;
    padding: 40px 20px;
    text-align: center;
}


/* ===== TITLE ===== */

.stats-title {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-title span {
    background: #e71d23;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
}


/* ===== GRID ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}


/* ===== CARD ===== */

.stat-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}


/* hover effect */

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* ===== NUMBER ===== */

.counter {
    font-size: 40px;
    font-weight: 800;
    color: #e71d23;
}


/* ===== TEXT ===== */

.stat-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}


/* ================= ACCREDITATIONS SECTION ================= */

.accreditations {
    background: #f3f4f6;
    text-align: center;
    display: flex;
    padding: 40px 0;
    flex-direction: column;
}


/* TITLE */

.accreditations h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}

.accreditations span {
    font-weight: 600;
}


/* LOGO CONTAINER (MAIN CARD) */

.logo-container {
    display: flex;
    /* important */
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    /* responsive */
    margin: auto;
}


/* EACH LOGO BOX */


/* ================= WHY STUDY ================= */

.why-study {
    background: #f6f7f9;
    padding: 90px 8%;
    text-align: center;
}


/* TITLE */

.why-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.why-title span {
    background: #e71d23;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
}


/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* CARD */

.why-card {
    padding: 10px;
    /* border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}


/* hover effect */


/* ICON BADGE */

.why-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}


/* TEXT */

.why-card p {
    font-size: 18px;
    font-weight: 700;
    color: #e31b23;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= CAREER ADVANTAGES ================= */

.career-advantages {
    position: relative;
    padding: 100px 8%;
    color: #fff;
    /* background image */
    background: url("your-image.jpg") center/cover no-repeat;
}


/* dark overlay */

.career-advantages::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.career-advantages>* {
    position: relative;
    z-index: 2;
}


/* TITLE */

.career-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 70px;
}


/* GRID */

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* CARD */

.career-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    transition: 0.3s;
}


/* hover */

.career-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}


/* ICON BADGE */

.career-icon {
    width: 65px;
    height: 65px;
    background: #e71d23;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}


/* TEXT */

.career-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}

.career-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= ALUMNI SECTION ================= */

.alumni-section {
    background: #e71d23;
    padding: 50px 20px;
    text-align: center;
}


/* TITLE */

.alumni-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}


/* GRID */

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: auto;
}


/* CARD */

.alumni-box {
    background: #fff;
    border-radius: 5px;
    max-height: 100px;
    max-width: 200px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: 0.3s;
}


/* hover effect */

.alumni-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}


/* LOGO */

.alumni-box img {
    max-height: 50px;
    max-width: 110px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s;
}


/* color on hover */

.alumni-box:hover img {
    filter: none;
    opacity: 1;
}

@media (max-width: 1200px) {
    .alumni-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 900px) {
    .alumni-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================= Sticky Bar ================= */

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e71d23;
    color: #fff;
    display: flex;
    justify-content: space-between;
    /* pushes left & right */
    align-items: center;
    padding: 10px 8%;
    font-size: 14px;
    z-index: 9999;
}


/* left text */

.sticky-left {
    font-weight: 500;
}


/* privacy link */

.privacy-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.3s;
}


/* hover */

.privacy-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .sticky-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.why-icon img {
    width: 50px;
    /* adjust to match your design */
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.why-icon {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    background: #5a5a5a;
    /* grey bar */
    height: 90px;
}

.feature-icon {
    background: #e31e24;
    /* red box */
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.feature-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 0 20px;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.career-icon {
    width: 80px;
    height: 80px;
    background: #e31e24;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.career-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}