/* =========================================================
   P.T. LEE CHENGALVARAYA NAICKER TRUST
   ENGINEERING & TECHNOLOGY COLLEGE POPUP

   File:
   css/engineering-college-popup.css

   Purpose:
   Premium responsive popup for Engineering &
   Technology College navigation item.
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --engineering-blue-dark: #071a49;
    --engineering-blue: #123b8f;
    --engineering-blue-light: #356ce2;

    --engineering-gold: #d4af37;
    --engineering-gold-light: #f7df86;
    --engineering-gold-dark: #9f7c16;

    --engineering-red: #e2134f;

    --engineering-white: #ffffff;
    --engineering-text: #172033;
    --engineering-muted: #687386;

    --engineering-border: rgba(212, 175, 55, 0.35);

    --engineering-shadow:
        0 30px 80px rgba(0, 0, 0, 0.40);

}


/* =========================================================
   BODY SCROLL LOCK
========================================================= */

body.engineering-popup-open {

    overflow: hidden !important;

}


/* =========================================================
   POPUP OVERLAY
========================================================= */

.engineering-popup-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(53, 108, 226, 0.18),
            transparent 35%
        ),
        rgba(3, 10, 30, 0.78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 999999;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

}


/* =========================================================
   ACTIVE OVERLAY
========================================================= */

.engineering-popup-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* =========================================================
   POPUP BOX
========================================================= */

.engineering-popup-box {

    position: relative;

    width: min(760px, 100%);

    max-height: calc(100vh - 50px);

    overflow-y: auto;

    overflow-x: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f9fbff 55%,
            #f2f6ff 100%
        );

    border-radius: 24px;

    border: 1px solid
        rgba(255, 255, 255, 0.8);

    box-shadow:
        var(--engineering-shadow),
        0 0 0 1px
        rgba(212, 175, 55, 0.15);

    transform:
        translateY(35px)
        scale(0.94);

    opacity: 0;

    transition:
        transform 0.4s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        opacity 0.35s ease;

    scrollbar-width: thin;

    scrollbar-color:
        var(--engineering-gold)
        #edf1f8;

}


/* =========================================================
   ACTIVE POPUP BOX
========================================================= */

.engineering-popup-overlay.active
.engineering-popup-box {

    transform:
        translateY(0)
        scale(1);

    opacity: 1;

}


/* =========================================================
   POPUP SCROLLBAR — CHROME / EDGE
========================================================= */

.engineering-popup-box::-webkit-scrollbar {

    width: 7px;

}


.engineering-popup-box::-webkit-scrollbar-track {

    background: #edf1f8;

    border-radius: 20px;

}


.engineering-popup-box::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            180deg,
            var(--engineering-gold-light),
            var(--engineering-gold-dark)
        );

    border-radius: 20px;

}


.engineering-popup-box::-webkit-scrollbar-thumb:hover {

    background:
        var(--engineering-gold);

}


/* =========================================================
   POPUP CONTENT
========================================================= */

.engineering-popup-content {

    position: relative;

    padding:
        45px
        45px
        42px;

}


/* =========================================================
   DECORATIVE TOP GOLD LINE
========================================================= */

.engineering-popup-content::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 180px;
    height: 4px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--engineering-gold),
            var(--engineering-gold-light),
            var(--engineering-gold),
            transparent
        );

    border-radius: 0 0 10px 10px;

}


/* =========================================================
   DECORATIVE BACKGROUND GLOW
========================================================= */

.engineering-popup-content::after {

    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53, 108, 226, 0.12),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.engineering-popup-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f8faff,
            #e9eef8
        );

    color:
        var(--engineering-blue-dark);

    font-size: 17px;

    cursor: pointer;

    z-index: 20;

    box-shadow:
        0 6px 18px
        rgba(8, 26, 73, 0.12);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.engineering-popup-close:hover {

    transform:
        rotate(90deg)
        scale(1.08);

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--engineering-red),
            #b90d3f
        );

    box-shadow:
        0 8px 22px
        rgba(226, 19, 79, 0.30);

}


.engineering-popup-close:focus-visible {

    outline:
        3px solid
        rgba(212, 175, 55, 0.45);

    outline-offset: 3px;

}


/* =========================================================
   POPUP ICON
========================================================= */

.engineering-popup-icon {

    position: relative;

    width: 88px;
    height: 88px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--engineering-blue-dark),
            var(--engineering-blue),
            var(--engineering-blue-light)
        );

    color:
        var(--engineering-gold-light);

    font-size: 35px;

    box-shadow:
        0 14px 30px
        rgba(18, 59, 143, 0.28),
        0 0 0 7px
        rgba(212, 175, 55, 0.10);

}


/* =========================================================
   ICON GOLD RING
========================================================= */

.engineering-popup-icon::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border:
        1px solid
        rgba(212, 175, 55, 0.65);

    pointer-events: none;

}


/* =========================================================
   HEADING
========================================================= */

.engineering-popup-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 30px;

}


.engineering-popup-heading h2 {

    margin: 0;

    font-family:
        "Poppins",
        sans-serif;

    font-size: clamp(
        22px,
        4vw,
        32px
    );

    font-weight: 700;

    line-height: 1.25;

    color:
        var(--engineering-blue-dark);

}


.engineering-popup-heading h3 {

    margin:
        8px
        0
        0;

    font-family:
        "Poppins",
        sans-serif;

    font-size: clamp(
        16px,
        3vw,
        21px
    );

    font-weight: 600;

    line-height: 1.4;

    background:
        linear-gradient(
            90deg,
            var(--engineering-red),
            var(--engineering-blue),
            var(--engineering-gold-dark)
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   INFORMATION GRID
========================================================= */

.engineering-popup-info {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 26px;

}


/* =========================================================
   INFORMATION ITEM
========================================================= */

.engineering-popup-info-item {

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;

    padding:
        17px
        16px;

    border:
        1px solid
        rgba(53, 108, 226, 0.12);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 6px 18px
        rgba(8, 26, 73, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.engineering-popup-info-item:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(212, 175, 55, 0.50);

    box-shadow:
        0 12px 25px
        rgba(8, 26, 73, 0.10);

}


/* =========================================================
   INFORMATION ICON
========================================================= */

.engineering-popup-info-item > i {

    flex:
        0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #edf3ff,
            #dce7ff
        );

    color:
        var(--engineering-blue);

    font-size: 17px;

}


/* =========================================================
   INFORMATION TEXT
========================================================= */

.engineering-popup-info-item div {

    min-width: 0;

}


.engineering-popup-info-item span {

    display: block;

    margin-bottom: 3px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing:
        0.7px;

    text-transform:
        uppercase;

    color:
        var(--engineering-muted);

}


.engineering-popup-info-item strong {

    display: block;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.45;

    color:
        var(--engineering-text);

    word-break: break-word;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.engineering-popup-description {

    position: relative;

    z-index: 2;

    margin-bottom: 30px;

    padding:
        20px
        22px;

    border-left:
        4px solid
        var(--engineering-gold);

    border-radius:
        0
        14px
        14px
        0;

    background:
        linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.09),
            rgba(53, 108, 226, 0.045)
        );

}


.engineering-popup-description p {

    margin: 0;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color:
        #465268;

}


/* =========================================================
   ACTION AREA
========================================================= */

.engineering-popup-action {

    position: relative;

    z-index: 5;

    display: flex;

    justify-content: center;

}


/* =========================================================
   MORE BUTTON
========================================================= */

.engineering-popup-more {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 220px;

    padding:
        14px
        25px;

    border-radius: 50px;

    overflow: hidden;

    text-decoration: none;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing:
        0.7px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--engineering-blue-dark),
            var(--engineering-blue),
            var(--engineering-blue-light)
        );

    box-shadow:
        0 12px 28px
        rgba(18, 59, 143, 0.25);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;

}


/* =========================================================
   BUTTON GOLD SHINE
========================================================= */

.engineering-popup-more::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.6s ease;

}


.engineering-popup-more:hover::before {

    left: 140%;

}


.engineering-popup-more:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(18, 59, 143, 0.32);

}


.engineering-popup-more i {

    color:
        var(--engineering-gold-light);

    font-size: 14px;

    transition:
        transform 0.25s ease;

}


.engineering-popup-more:hover i {

    transform:
        translate(3px, -2px);

}


/* =========================================================
   LOADING STATE
========================================================= */

.engineering-popup-loading {

    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 50px 25px;

    text-align: center;

    font-family:
        "Poppins",
        sans-serif;

    color:
        var(--engineering-blue-dark);

}


.engineering-popup-loading i {

    font-size: 38px;

    color:
        var(--engineering-gold-dark);

}


.engineering-popup-loading span {

    font-size: 14px;

    font-weight: 500;

    color:
        var(--engineering-muted);

}


/* =========================================================
   ERROR STATE
========================================================= */

.engineering-popup-error {

    position: relative;

    min-height: 320px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding:
        60px
        35px
        40px;

    text-align: center;

    font-family:
        "Poppins",
        sans-serif;

}


.engineering-popup-error > i {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin-bottom: 20px;

    border-radius: 50%;

    background:
        rgba(226, 19, 79, 0.08);

    color:
        var(--engineering-red);

    font-size: 30px;

}


.engineering-popup-error h3 {

    margin:
        0
        0
        10px;

    font-size: 21px;

    font-weight: 700;

    color:
        var(--engineering-blue-dark);

}


.engineering-popup-error p {

    max-width: 450px;

    margin:
        0
        0
        25px;

    font-size: 13px;

    line-height: 1.7;

    color:
        var(--engineering-muted);

}


/* =========================================================
   ERROR CLOSE BUTTON
========================================================= */

.engineering-popup-error-close {

    padding:
        11px
        24px;

    border: none;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--engineering-blue-dark),
            var(--engineering-blue)
        );

    color:
        #ffffff;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(18, 59, 143, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.engineering-popup-error-close:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(18, 59, 143, 0.28);

}


/* =========================================================
   ERROR CLOSE ICON BUTTON
========================================================= */

.engineering-popup-error
.engineering-popup-close {

    top: 18px;
    right: 18px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .engineering-popup-overlay {

        padding: 18px;

    }


    .engineering-popup-box {

        width: 100%;

        max-height:
            calc(100vh - 36px);

        border-radius: 20px;

    }


    .engineering-popup-content {

        padding:
            38px
            28px
            32px;

    }


    .engineering-popup-icon {

        width: 76px;
        height: 76px;

        margin-bottom: 18px;

        font-size: 30px;

    }


    .engineering-popup-info {

        gap: 12px;

    }


    .engineering-popup-info-item {

        padding:
            14px 13px;

        gap: 11px;

    }


    .engineering-popup-info-item > i {

        flex-basis: 38px;

        width: 38px;
        height: 38px;

        font-size: 15px;

    }


    .engineering-popup-info-item strong {

        font-size: 12px;

    }


    .engineering-popup-description p {

        font-size: 13px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .engineering-popup-overlay {

        align-items: center;

        padding: 12px;

    }


    .engineering-popup-box {

        max-height:
            calc(100vh - 24px);

        border-radius: 18px;

    }


    .engineering-popup-content {

        padding:
            36px
            18px
            25px;

    }


    .engineering-popup-content::before {

        width: 130px;

    }


    .engineering-popup-close {

        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;

        font-size: 15px;

    }


    .engineering-popup-icon {

        width: 68px;
        height: 68px;

        margin-bottom: 16px;

        font-size: 26px;

    }


    .engineering-popup-icon::before {

        inset: -4px;

    }


    .engineering-popup-heading {

        margin-bottom: 22px;

        padding:
            0
            25px;

    }


    .engineering-popup-heading h2 {

        font-size: 20px;

    }


    .engineering-popup-heading h3 {

        font-size: 15px;

    }


    .engineering-popup-info {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 20px;

    }


    .engineering-popup-info-item {

        padding:
            12px;

        border-radius: 12px;

    }


    .engineering-popup-info-item > i {

        flex-basis: 36px;

        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 14px;

    }


    .engineering-popup-info-item span {

        font-size: 10px;

    }


    .engineering-popup-info-item strong {

        font-size: 11.5px;

    }


    .engineering-popup-description {

        margin-bottom: 23px;

        padding:
            15px
            16px;

    }


    .engineering-popup-description p {

        font-size: 12px;

        line-height: 1.7;

    }


    .engineering-popup-more {

        width: 100%;

        min-width: 0;

        padding:
            13px
            18px;

        font-size: 12px;

    }


    .engineering-popup-loading {

        min-height: 260px;

        padding:
            40px
            20px;

    }


    .engineering-popup-error {

        min-height: 280px;

        padding:
            55px
            22px
            30px;

    }


    .engineering-popup-error h3 {

        font-size: 18px;

    }


    .engineering-popup-error p {

        font-size: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .engineering-popup-overlay {

        padding: 8px;

    }


    .engineering-popup-box {

        max-height:
            calc(100vh - 16px);

        border-radius: 16px;

    }


    .engineering-popup-content {

        padding:
            32px
            14px
            20px;

    }


    .engineering-popup-heading {

        padding:
            0
            18px;

    }


    .engineering-popup-heading h2 {

        font-size: 18px;

    }


    .engineering-popup-heading h3 {

        font-size: 14px;

    }


    .engineering-popup-info-item strong {

        font-size: 11px;

    }


    .engineering-popup-description p {

        font-size: 11.5px;

    }

}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-height: 600px)
and (orientation: landscape) {

    .engineering-popup-overlay {

        padding: 10px;

    }


    .engineering-popup-box {

        max-height:
            calc(100vh - 20px);

    }


    .engineering-popup-content {

        padding:
            28px
            25px;

    }


    .engineering-popup-icon {

        width: 58px;
        height: 58px;

        margin-bottom: 12px;

        font-size: 23px;

    }


    .engineering-popup-heading {

        margin-bottom: 16px;

    }


    .engineering-popup-info {

        gap: 8px;

        margin-bottom: 15px;

    }


    .engineering-popup-info-item {

        padding:
            9px
            10px;

    }


    .engineering-popup-description {

        margin-bottom: 15px;

        padding:
            10px
            14px;

    }


    .engineering-popup-description p {

        line-height: 1.5;

    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .engineering-popup-overlay,
    .engineering-popup-box,
    .engineering-popup-close,
    .engineering-popup-info-item,
    .engineering-popup-more,
    .engineering-popup-more::before {

        transition: none !important;

    }


    .engineering-popup-more::before {

        display: none;

    }

}

/* =========================================================
   ENGINEERING COLLEGE — INFORMATION SECTIONS
========================================================= */

.engineering-popup-section {
    margin-top: 26px;
    padding: 22px 24px;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(248, 250, 255, 0.98),
            rgba(239, 244, 255, 0.92)
        );

    border: 1px solid rgba(53, 108, 226, 0.14);

    box-shadow:
        0 8px 25px rgba(20, 45, 100, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.engineering-popup-section:hover {
    transform: translateY(-2px);

    border-color:
        rgba(226, 19, 79, 0.28);

    box-shadow:
        0 12px 32px rgba(20, 45, 100, 0.11);
}


/* =========================================================
   SECTION TITLE
========================================================= */

.engineering-popup-section-title {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 14px;
}

.engineering-popup-section-title i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #e2134f,
            #356ce2
        );

    box-shadow:
        0 5px 15px rgba(53, 108, 226, 0.25);
}

.engineering-popup-section-title h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 800;

    color: #182d68;

    letter-spacing: 0.2px;
}


/* =========================================================
   SECTION PARAGRAPH
========================================================= */

.engineering-popup-section > p {
    margin: 0;

    font-size: 15px;
    line-height: 1.85;

    color: #4b5870;

    text-align: justify;
}


/* =========================================================
   VISION / MISSION LIST
========================================================= */

.engineering-popup-list {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.engineering-popup-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: 14.5px;
    line-height: 1.7;

    color: #46536b;
}

.engineering-popup-bullet {
    flex: 0 0 auto;

    margin-top: 2px;

    font-size: 18px;
    font-weight: 900;

    color: #e2134f;
}

.engineering-popup-check {
    flex: 0 0 auto;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d39b24,
            #f0c65a
        );

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 3px 8px rgba(180, 125, 20, 0.25);
}


/* =========================================================
   CAMPUS HIGHLIGHTS
========================================================= */

.engineering-popup-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.engineering-popup-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 13px 14px;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid rgba(53, 108, 226, 0.10);

    color: #46536b;

    font-size: 14px;
    line-height: 1.55;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.engineering-popup-highlight:hover {
    transform: translateY(-2px);

    border-color:
        rgba(226, 19, 79, 0.25);

    box-shadow:
        0 7px 18px rgba(30, 55, 110, 0.08);
}

.engineering-popup-highlight i {
    margin-top: 3px;

    flex-shrink: 0;

    color: #d39b24;

    font-size: 14px;
}


/* =========================================================
   CONTACT AREA
========================================================= */

.engineering-popup-contact {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 26px;
}

.engineering-popup-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 15px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #f7f9ff,
            #eef3ff
        );

    border: 1px solid rgba(53, 108, 226, 0.12);
}

.engineering-popup-contact-item > i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #356ce2,
            #244fae
        );

    font-size: 13px;
}

.engineering-popup-contact-item span {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;
    font-weight: 700;

    color: #7b879d;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.engineering-popup-contact-item strong {
    display: block;

    font-size: 13px;
    line-height: 1.5;

    color: #25365f;

    word-break: break-word;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .engineering-popup-section {
        padding: 18px 16px;
        margin-top: 20px;
    }

    .engineering-popup-section-title h3 {
        font-size: 18px;
    }

    .engineering-popup-section-title i {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .engineering-popup-section > p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .engineering-popup-list li {
        font-size: 13.5px;
    }

    .engineering-popup-highlights {
        grid-template-columns: 1fr;
    }

    .engineering-popup-contact {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .engineering-popup-section {
        padding: 16px 13px;
    }

    .engineering-popup-section-title {
        gap: 8px;
    }

    .engineering-popup-section-title h3 {
        font-size: 17px;
    }

    .engineering-popup-list li {
        font-size: 13px;
        line-height: 1.65;
    }

    .engineering-popup-highlight {
        font-size: 13px;
        padding: 11px;
    }

    .engineering-popup-contact-item {
        padding: 12px;
    }

}

/* =========================================================
   ARTS & SCIENCE COLLEGE CAMPUS IMAGE
========================================================= */

.arts-college-campus-image {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    margin-top: 8px;
    background: #eef3ff;
    border: 1px solid rgba(53, 108, 226, 0.15);
}

.arts-college-campus-image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.arts-college-campus-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   ARTS COLLEGE STATISTICS
========================================================= */

.arts-college-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.arts-college-stat {
    text-align: center;
    padding: 18px 10px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid rgba(53, 108, 226, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.arts-college-stat:hover {
    transform: translateY(-3px);

    border-color:
        rgba(226, 19, 79, 0.28);

    box-shadow:
        0 8px 22px rgba(30, 55, 110, 0.10);
}

.arts-college-stat strong {
    display: block;

    font-size: 25px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #e2134f,
            #356ce2
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arts-college-stat span {
    display: block;

    margin-top: 5px;

    font-size: 12px;
    line-height: 1.4;

    color: #647089;
    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .arts-college-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .arts-college-campus-image img {
        height: 210px;
    }

}

@media (max-width: 420px) {

    .arts-college-stats {
        gap: 8px;
    }

    .arts-college-stat {
        padding: 14px 7px;
    }

    .arts-college-stat strong {
        font-size: 21px;
    }

    .arts-college-stat span {
        font-size: 11px;
    }

    .arts-college-campus-image img {
        height: 180px;
    }

}