/* ========================================
   Alpha College of Engineering - Landing Page
   Main Stylesheet
   ======================================== */

/* Font Poppins */
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* ===== TOKENS ===== */
:root {
    --navy: #0b2855;
    --navy-d: #071a38;
    --red: #c0272d;
    --red-d: #9b1d22;
    --gold: #f5a623;
    --cream: #f7f4ee;
    --white: #ffffff;
    --text: #222222;
    --muted: #666666;
    --font-display: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== HEADER ===== */
header.site-header {
    background: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-cta {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition:
        background 0.25s,
        transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.header-cta:hover {
    background: var(--red-d);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg,
            var(--navy-d) 0%,
            var(--navy) 60%,
            #1a3a70 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.07);
}

.hero-eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
    animation: fadeUp 0.5s ease both;
}

.hero h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h2 span {
    color: var(--gold);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition:
        background 0.3s,
        transform 0.3s;
    width: 45%;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
}

.stat-box .lbl {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Form card */
.form-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    padding: 36px 32px;
    animation: slideInLeft 0.6s ease both;
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.form-control {
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.87rem;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-family: var(--font-body);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11, 40, 85, 0.12);
    outline: none;
}

.btn-apply {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    width: 100%;
    padding: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition:
        background 0.25s,
        transform 0.2s;
}

.btn-apply:hover {
    background: var(--red-d);
    transform: translateY(-2px);
}

.tnea-badge {
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    /*padding: 10px 16px;*/
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    display: flex;
    align-items: baseline;
}

.tnea-badge img {
    width: 100px;
    height: auto;

}

.tnea-badge .code {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--cream);
    padding: 72px 0;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-body {
    color: var(--text);
    line-height: 1.8;
    /* font-size: 0.93rem; */
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Highlights grid */
.highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
}

.highlight-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--navy);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.highlight-card .icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.highlight-card .big {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}

.highlight-card .sub {
    color: var(--navy-d);
    margin-top: 4px;
    font-weight: 600;
}

/* ===== COURSES ===== */
.courses-section {
    background: var(--navy);
    padding: 72px 0;
}
.courses-section .course-title {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}
.courses-section .section-eyebrow {
    color: var(--gold);
}

.courses-section .section-title {
    color: var(--white);
}

.courses-wrap {
    background: var(--gold);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.course-col {
    padding: 36px 32px;
}

.course-col.pg {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.course-col-title {
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 3px;
    margin-bottom: 24px;
}

.course-list {
    list-style: none;
}

.course-list li {
    color: var(--white);
    /* font-size: 0.88rem; */
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: padding-left 0.2s;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li:hover {
    padding-left: 6px;
}

.course-list li::before {
    content: "●";
    color: var(--gold);
    font-size: 0.5rem;
    flex-shrink: 0;
}

.mba-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 12px;
}

/* ===== ASSOCIATIONS ===== */
.assoc-section {
    background: var(--navy-d);
    padding: 56px 0;
}

.assoc-section .section-title {
    color: var(--white);
}

.assoc-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.assoc-badge {
    /* background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18); */
    border-radius: 50%;
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--white);
    text-align: center;
    transition:
        background 0.3s,
        transform 0.3s;
    animation: pulse-badge 3s infinite;
}

.assoc-badge:nth-child(2n) {
    animation-delay: 0.5s;
}

.assoc-badge:nth-child(3n) {
    animation-delay: 1s;
}

.assoc-badge:hover {
    /* background: var(--gold);
    color: var(--navy); */
    transform: scale(1.1);
}

.assoc-badge img {
    width: 100%;
}

/* ===== WHY ALPHA ===== */
.why-section {
    background: var(--cream);
    padding: 72px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--red);
}

.why-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), #1a4a9a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-card .icon-wrap i {
    color: var(--gold);
    font-size: 2rem;
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text);
    line-height: 1.7;
    margin-top: 10px;
}

/* ===== COE ===== */
.coe-section {
    background: var(--navy);
    padding: 72px 0;
}

.coe-section .section-title {
    color: var(--white);
}

.coe-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-top: 36px;
}

.coe-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 0px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    width: 30%;
}

.coe-card:hover {
    transform: translateY(-5px);
}

.coe-card i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}

.coe-card img {
    width: 50%;
}

/* ===== RECRUITERS ===== */
.rec-section {
    background: var(--white);
    padding: 72px 0;
}

.recruiter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
}

.recruiter-pill {
    background: var(--cream);
    border: 1px solid #e0ddd5;
    border-radius: 6px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.25s;
    white-space: nowrap;
    width: 12%;
}

.recruiter-pill img {
    width: 100%;
}

.recruiter-pill:hover {
    border: 1px dashed var(--red);
    color: var(--white);
    transform: scale(1.04);
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-d) 100%);
    padding: 56px 0;
    text-align: center;
}

.cta-strip h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-strip p {
    color: var(--white);

    margin-bottom: 28px;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition:
        background 0.25s,
        transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-3px);
    color: var(--red-d);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-d);
    padding: 40px 0 24px;
    color: rgba(255, 255, 255, 0.6);

}

footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

footer .footer-brand h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: var(--gold);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 0 0 16px;
}

footer .footer-bottom {
    text-align: center;
}

footer .footer-bottom p {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 48px 0 40px;
    }

    .form-card {
        margin-top: 32px;
    }

    .highlights {
        grid-template-columns: 1fr 1fr;
    }

    .courses-wrap {
        grid-template-columns: 1fr;
    }

    .course-col.pg {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .header-cta {
        display: none;
    }
    .assoc-strip {
        display: flex;
        flex-wrap: wrap;
    }
    .recruiter-pill {
        padding: 0px 5px;
        width: 23%;
    }
    .courses-section .course-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
}

@media (max-width: 480px) {
    .highlights {
        grid-template-columns: 1fr;
    }

    .stat-box {
        flex: 1 1 40%;
    }
}