/* ========================================
   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;
}

/* ========================================
   Alpha Arts & Science College - Landing Page
   Main Stylesheet
   ======================================== */

/* ===== 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 shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.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-image {
    position: relative;
}

.logo-image img {
    max-height: 80px;
    width: auto;
    display: block;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 12px;
}

.logo-monogram {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.68rem;
    color: var(--muted);
    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;
    text-decoration: none;
}

/* ===== 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);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.07);
    pointer-events: none;
}

.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: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h2 span {
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 16px;
    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 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background 0.3s, transform 0.3s;
    flex: 1 1 calc(25% - 12px);
    min-width: 120px;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* 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;
    width: 100%;
    display: block;
}

.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;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s, transform 0.2s;
}

.btn-apply:hover {
    background: var(--red-d);
    transform: translateY(-2px);
}

.affil-badge {
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 500;
}

.affil-badge i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.affil-sub {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--cream);
    padding: 80px 0;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    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.85;
    font-size: 0.97rem;
}

.intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ===== COURSES ===== */
.courses-section {
    background: var(--navy);
    padding: 80px 0;
}

.courses-section .section-eyebrow {
    color: var(--gold);
}

.courses-section .section-title {
    color: var(--white);
}

/* Tab Nav */
.tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 14px 10px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border-bottom: 3px solid transparent;
    letter-spacing: 0.3px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.tab-btn.active {
    background: var(--red);
    color: var(--white);
    border-bottom-color: var(--gold);
}

.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: all .3s ease;
    transform: translateX(-50%);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
}

.tab-content-panel.active {
    display: block;
}

.tab-content-panel.fade-in {
    animation: tabFade .35s ease forwards;
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.courses-wrap {
    background: var(--red);
    border-radius: 0 0 12px 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: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 3px;
    margin-bottom: 24px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    color: var(--white);
    font-weight: 500;
    font-size: 0.92rem;
    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;
}

.affil-badge-dark {
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    border-radius: 6px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.affil-badge-dark i {
    color: var(--gold);
}

/* ===== ASSOCIATIONS ===== */
.assoc-section {
    padding: 40px 0;
}

.assoc-section .section-title {
    color: var(--navy);
}

.assoc-section .assoc-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assoc-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.assoc-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
    animation: pulse-badge 3s infinite;
    width: 20%;
}

.assoc-badge:nth-child(2n) {
    animation-delay: 0.5s;
}

.assoc-badge:nth-child(3n) {
    animation-delay: 1s;
}

.assoc-badge:hover {
    transform: scale(1.1);
}

.assoc-badge img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    padding: 4px;
}

.assoc-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== WHY ALPHA ===== */

/*====================================
        WHY CHOOSE ALPHA
====================================*/

.why-alpha-section {
    position: relative;
    background: url("images/why-alpha-bg.jpg") center center/cover no-repeat;
    padding: 90px 0;
    overflow: hidden;
}

.why-alpha-overlay {
    position: absolute;
    inset: 0;
    background: var(--navy)
}

.why-alpha-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.why-alpha-heading {
    margin-bottom: 50px;
}

.why-alpha-heading h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 18px;
}

.heading-accent {
    display: flex;
    gap: 0;
}

.heading-accent span {
    width: 42px;
    height: 7px;
}

.heading-accent .red {
    background: #c0272d;
}

.heading-accent .green {
    background: #3ea45c;
}

.heading-accent .yellow {
    background: #f5d447;
}

.heading-accent .blue {
    background: #2d5fa8;
}

.why-alpha-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-alpha-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.why-alpha-icon {
    width: 72px;
    min-width: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-alpha-icon i {
    font-size: 52px;
    color: #f6df7a;
}

.why-alpha-text h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.why-alpha-text p {
    color: var(--white);
    line-height: 1.55;
    margin: 0;
}

@media(max-width:991px) {

    .why-alpha-content {
        max-width: 100%;
    }

    .why-alpha-text h4 {
        font-size: 1.6rem;
    }

    .why-alpha-text p {
        font-size: 1rem;
    }

}

@media(max-width:767px) {

    .why-alpha-section {
        padding: 70px 0;
    }

    .why-alpha-item {
        gap: 18px;
    }

    .why-alpha-icon {
        width: 56px;
        min-width: 56px;
    }

    .why-alpha-icon i {
        font-size: 38px;
    }

    .why-alpha-text h4 {
        font-size: 1.25rem;
    }

    .why-alpha-text p {
        font-size: .95rem;
    }

    .heading-accent span {
        width: 28px;
    }

}

/* ===== PLACEMENTS ===== */
.rec-section {
    background: var(--white);
    padding: 80px 0;
}

.rec-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.placement-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.placement-stat {
    background: var(--navy);
    border-radius: 10px;
    padding: 20px 36px;
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s;
}

.placement-stat:hover {
    transform: translateY(-4px);
}

.ps-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.ps-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recruiter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.recruiter-pill {
    background: var(--cream);
    border: 1px solid #e0ddd5;
    border-radius: 6px;
    padding: 10px;
    transition: border 0.25s, transform 0.25s;
    white-space: nowrap;
    width: 10%;
    min-width: 80px;
}

.recruiter-pill img {
    width: 100%;
    display: block;
}

.recruiter-pill:hover {
    border: 1px dashed var(--red);
    transform: scale(1.05);
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-d) 100%);
    padding: 64px 0;
    text-align: center;
}

.cta-strip h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-strip p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 28px;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border: none;
    border-radius: 6px;
    padding: 14px 40px;
    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);
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-d);
    padding: 20px 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

footer .footer-bottom {
    text-align: center;
}

footer .footer-bottom p {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-box {
        flex: 1 1 calc(50% - 6px);
    }

    .placement-stats {
        gap: 14px;
    }

    .placement-stat {
        padding: 16px 24px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 40px;
    }

    .form-card {
        margin-top: 32px;
    }

    .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;
    }

    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .tab-btn {
        font-size: 0.76rem;
        padding: 12px 6px;
    }

    .assoc-strip {
        gap: 20px;
    }

    .assoc-badge {
        width: 90px;
    }

    .assoc-badge img {
        width: 72px;
        height: 72px;
    }

    .placement-stats {
        gap: 12px;
    }

    .placement-stat {
        min-width: 120px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .campus-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        flex: 1 1 calc(50% - 8px);
    }

    .recruiter-pill {
        width: 20%;
    }

    .logo-name {
        font-size: 0.85rem;
    }

    .header-cta {
        display: none;
    }
}


/*======================================
        SALIENT FEATURES
=======================================*/

.features-section {
    padding: 60px 0;
    background: #fff;
}

.features-heading {
    margin-bottom: 55px;
    position: relative;
    padding-left: 18px;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 20px;
}

.features-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 56px;
    background: var(--navy);
}

.features-heading span {
    display: block;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .5px;
}

.features-heading h2 {
    margin: 0;
    font-size: 54px;
    line-height: .95;
    font-weight: 800;
    color: #26364d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px dashed var(--navy);
    padding: 20px;
    border-radius: 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
}

.feature-icon i {
    font-size: 28px;
}

.feature-content h4 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 20px;
}

.feature-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--text);
}

/* Hover */

.feature-item {
    transition: .35s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.feature-item:hover .feature-content h4 {
    color: var(--red);
}

.feature-item:hover .feature-icon {
    background: var(--red);
}

/* Responsive */

@media(max-width:991px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .features-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-heading h2 {
        font-size: 34px;
    }

    .features-heading span {
        font-size: 15px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

}


/*======================================
        PLACEMENT HIGHLIGHTS
======================================*/

.placement-highlights-section {
    padding: 90px 0 0;
    background: #fff;
}

.placement-heading {
    margin-bottom: 60px;
}

.placement-students {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.student-card {
    width: 210px;
    text-align: center;
    width: 30%;
}

.student-photo-wrap {
    position: relative;
    height: 255px;
}

.photo-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--navy);
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
}

.student-photo-wrap img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 220px;
    object-fit: cover;
    z-index: 2;
}

.salary-badge {
    position: absolute;
    right: 10px;
    top: 50px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #f6df7a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    text-align: center;
    line-height: 1.1;
}

.salary-badge small {
    font-size: 10px;
    color: var(--navy);
    font-weight: 600;
}

.salary-badge span {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.salary-badge p {
    margin: 0;
    font-size: 11px;
    color: var(--navy);
    font-weight: 700;
}

.student-name {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 40px;
    padding: 12px;
    margin-top: -5px;
}

.placement-bottom-bar {
    background: var(--navy);
    margin-top: 70px;
    padding: 28px 0;
}

.placement-bottom-bar h4 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.placement-bottom-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.bottom-item {
    text-align: center;
}

.bottom-item h3 {
    color: #f6df7a;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.bottom-item span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

/* Hover */

.student-card {
    transition: .35s;
}

.student-card:hover {
    transform: translateY(-8px);
}

.student-card:hover .salary-badge {
    transform: scale(1.08);
}

/* Responsive */

@media(max-width:991px) {

    .placement-students {
        gap: 30px;
    }

    .student-card {
        width: 180px;
    }

    .student-photo-wrap {
        height: 220px;
    }

    .photo-bg {
        width: 170px;
        height: 170px;
        top: 60px;
    }

    .student-photo-wrap img {
        width: 145px;
        height: 190px;
    }

    .salary-badge {
        width: 90px;
        height: 90px;
        right: -15px;
        top: 40px;
    }

    .placement-bottom-grid {
        gap: 40px;
    }

}

@media(max-width:767px) {

    .placement-students {
        gap: 40px;
    }

    .student-card {
        width: 100%;
        max-width: 230px;
    }

    .placement-bottom-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .placement-bottom-bar h4 {
        font-size: 18px;
    }

    .bottom-item h3 {
        font-size: 34px;
    }

    .bottom-item span {
        font-size: 15px;
    }

}


/*======================================
        PROGRAMMES SECTION
======================================*/

.programmes-section {
    padding: 60px 0;
    background: #fff;
}

.programmes-heading {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.programme-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    height: 170px;
    transition: .35s;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.programme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.programme-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 40, 85, .85);
    transition: .35s;
}

.programme-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px;
    z-index: 2;
    color: #fff;
}

.programme-degree {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.programme-content h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
    max-width: 240px;
}

.programme-duration {
    display: inline-block;
    background: rgba(0, 0, 0, .45);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hover */

.programme-card:hover {
    transform: translateY(-8px);
}

.programme-card:hover img {
    transform: scale(1.08);
}

.programme-card:hover .programme-overlay {
    background: rgba(192, 39, 45, .65);
}

/* Responsive */

@media(max-width:991px) {

    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:767px) {

    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .programme-card {
        height: 220px;
    }

    .programme-degree {
        font-size: 30px;
    }

    .programme-content h4 {
        font-size: 16px;
    }

}