/* ============================================= */
/* BASE RESET & GLOBALS                          */
/* ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1A325D;
    background: #1A325D;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================= */
/* FONT CLASSES                                  */
/* ============================================= */
.heading-baskervville {
    font-family: 'Baskervville', serif;
}

.navy {
    color: #1A325D;
}

.white {
    color: #fff;
}

/* ============================================= */
/* UTILITY / LAYOUT                              */
/* ============================================= */
.container-narrow {
    max-width: 1280px;
    margin: 0 auto;
    width: 80%;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    width: 85%;
}

.centered {
    text-align: center;
}

.left-align {
    text-align: left;
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

.section-heading-wrap {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.5rem;
}

.heading-line {
    background: #FFC907;
    width: 100px;
    height: 2px;
}

/* ============================================= */
/* HEADER                                        */
/* ============================================= */
.nav-header {
    padding: 0.5rem 2rem;
}

.nav-inner {
    background: #1A325D;
    border-radius: 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-logo img {
    width: 70%;
    height: auto;
}

.nav-enquire-btn {
    border-radius: 69px;
    background: #FFC907;
    font-size: 13.5px;
    color: #1A325D;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10.5px 1.2rem;
    font-family: 'Raleway', sans-serif;
    gap: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-enquire-btn:hover {
    opacity: 0.9;
}

.nav-enquire-btn span i {
    font-weight: normal;
}

/* ============================================= */
/* ADMISSION STRIP                               */
/* ============================================= */
.admission-bar {
    padding: 0 2rem;
    margin-bottom: 0.75rem;
}

.admission-bar-inner {
    border-radius: 10px;
    background: #F9C91A;
}

.admission-bar-text {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A325D;
    font-weight: 600;
    font-size: 13px;
    height: 35px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================= */
/* BANNER / HERO                                 */
/* ============================================= */
.banner-area {
    padding: 0 2rem 1.25rem 2rem;
}

.banner-bg {
    background-image: url('./img/Amitybanner.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.banner-overlay {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    position: relative;
}

.banner-left-img {
    position: absolute;
    width: 450px;
    height: 338px;
    object-fit: cover;
    bottom: 24px;
    left: 24px;
    border-radius: 16px;
    border: 3px solid #ffffff;
    box-shadow: 0 15px 35px rgba(15, 34, 69, 0.35);
    z-index: 10;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    margin-left: 24px;
    padding: 1rem 0;
    gap: 4px;
}

.banner-left {
    padding-left: 470px;
    margin-top: 1.25rem;
}

/* Medium Desktop viewport scaling */
@media (min-width: 1025px) and (max-width: 1200px) {
    .banner-left-img {
        width: 350px;
        height: 262px;
    }
    .banner-left {
        padding-left: 370px;
    }
    .banner-grid {
        margin-left: 12px;
    }
}

.banner-tag {
    color: #FFC907;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}

.banner-heading {
    display: inline-block;
    max-width: 450px;
    width: 100%;
}

.banner-heading span {
    color: #fff;
    font-family: 'Baskervville', serif;
    font-size: 33px;
    margin-bottom: 1.25rem;
    display: block;
    line-height: 1.1em;
}

.banner-subheading {
    background: #B9DAFF;
    padding: 0.25rem 0;
    border-radius: 5px;
    display: inline-block;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 18px;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.banner-info-points {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
}

.info-point {
    display: grid;
    grid-template-columns: 30px auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.info-point img {
    width: 20px;
    height: auto;
}

.info-point span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.banner-cta-wrap {
    margin-bottom: 1.25rem;
}

.banner-download-btn {
    background: #FFC907;
    color: #1A325D;
    display: inline-flex;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1.75rem;
    transition: opacity 0.3s;
}

.banner-download-btn:hover {
    opacity: 0.9;
}

.banner-badges {
    display: inline-flex;
}

.badge-inner {
    display: inline-flex;
    background: #fff;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    gap: 1.25rem;
}

.badge-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.badge-item:last-child {
    display: block;
}

.badge-border-right {
    border-right: 2.5px solid #d3d3d3;
    padding-right: 1rem;
}

.badge-icon img {
    width: 50px;
    height: auto;
}

.badge-text {
    color: #1a325d;
    font-size: 1.1em;
    font-weight: 700;
}

/* ============================================= */
/* FORM                                          */
/* ============================================= */
.banner-right {
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.form-wrapper {
    padding: 0 1.25rem;
    width: 100%;
}

.form-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #1C355E;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 1rem;
    margin-top: -20px;
    font-size: 14px;
    font-weight: 600;
}

.timer-label {
    color: #1C355E;
    font-size: 12px;
}

.timer-digits {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-box {
    background: #1C355E;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.timer-sep {
    font-weight: 700;
}

.form-top {
    border-radius: 16px 16px 0 0;
    text-align: center;
    padding: 20px 12px 8px;
    background: #1a325d;
    border: 1.5px solid #fff;
    border-bottom: none;
}

.form-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 29px;
    color: #fff;
    display: inline-flex;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.form-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #fff;
    padding-bottom: 4px;
}

.form-error {
    color: #ff2f00;
    background: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 14px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-error.visible {
    display: block;
}

.form-body {
    background: #fff;
    color: #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 16px 16px;
}

.field-group {
    margin-bottom: 4px;
}

.field-group label {
    font-size: 11px;
    display: block;
    margin-bottom: 2px;
    color: #374151;
}

.field-group input,
.field-group select {
    width: 100%;
    padding: 5px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 10px;
    background: #F8F9FA;
    font-weight: 500;
    color: #000;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

#umobile {
    font-size: 12px;
    padding: 8px 12px;
}

.field-group select {
    color: #6b7280;
}

.field-group input:focus,
.field-group select:focus {
    border-color: #1A325D;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.field-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.field-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.field-check input {
    margin-top: 4px;
    margin-right: 0;
    width: 14px;
    height: 14px;
}

.field-check label {
    margin-left: 10px;
    font-size: 12px;
    color: #4b5563;
}

.form-submit-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.form-submit-btn {
    width: 100%;
    background: #2B4A7C;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s;
}

.form-submit-btn:hover {
    background: #1A325D;
}

/* ============================================= */
/* WHY CHOOSE SECTION                            */
/* ============================================= */
.why-section {
    padding-top: 3.5rem;
    margin-bottom: 1.75rem;
}

.why-header {
    padding-top: 0;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding: 2.5rem 0;
}

.why-card {
    display: grid;
    grid-template-columns: 50px auto;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    height: 120px;
}

.navy-card {
    background: linear-gradient(135deg, #1A325D, #2B4A7C);
}

.why-card-icon img {
    width: 35px;
    height: auto;
}

.why-card-text {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.why-card-text p {
    font-size: 12px;
}

/* Mobile Why Swiper */
.why-mobile-section {
    margin-bottom: 1.25rem;
}

/* ============================================= */
/* STATS BAR                                     */
/* ============================================= */
.stats-bar {
    margin-bottom: 0;
}

.stats-row {
    background: #FFC907;
    width: 100%;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem;
    gap: 1rem;
}

.stat-block {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    color: #1A325D;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

.stat-name {
    color: rgba(26, 50, 93, 0.8);
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================= */
/* FEATURES SECTION                              */
/* ============================================= */
.features-area {
    padding: 2.5rem 0 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding: 2.5rem 0;
}

.feat-card {
    display: grid;
    grid-template-columns: 50px auto;
    border-radius: 14px;
    padding: 2.5rem 1.25rem;
    height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    gap: 12px;
    background: #E8EDF5;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.feat-card:hover {
    background: #2B4A7C;
}

.feat-card-icon img {
    width: 40px;
    height: auto;
}

.feat-card-body {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2B4A7C;
    transition: color 0.3s;
}

.feat-card:hover .feat-card-body {
    color: #fff;
}

.feat-card-body h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding-bottom: 0.5rem;
    font-size: 14px;
}

.feat-card-body p {
    font-size: 12px;
}

/* Features Accordion (mobile) */
.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ============================================= */
/* ACCORDION GLOBAL STYLES                       */
/* ============================================= */
.acc-trigger {
    display: grid;
    grid-template-columns: 50px auto 50px;
    border: 2px solid #d1d6df;
    border-radius: 14px;
    padding: 0.5rem;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 12px;
}

.acc-trigger-icon {
    background: #1A325D;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.acc-trigger-icon img {
    width: 18px;
    height: auto;
}

.acc-trigger-label {
    color: #1A325D;
    font-weight: 400;
    text-align: left;
    font-size: 14px;
}

.acc-trigger-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc-trigger-arrow i {
    color: #717182;
    transition: transform 0.3s;
}

.acc-trigger.open .acc-trigger-arrow i {
    transform: rotate(180deg);
}

.acc-panel {
    color: rgba(26, 50, 93, 0.7);
    border: 2px solid #d1d6df;
    border-radius: 14px;
    padding: 0.5rem;
    text-align: left;
    font-size: 13px;
    display: none;
    margin-bottom: 12px;
}

.acc-panel.visible {
    display: block;
}

.acc-panel ul {
    list-style: disc;
    display: grid;
    gap: 0.5rem;
    padding-left: 1.25rem;
    font-size: 14px;
}

.acc-num-circle {
    background: #1A325D;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.sem-label {
    font-size: 20px;
}

/* ============================================= */
/* SPECIALISATIONS                               */
/* ============================================= */
.spec-mobile-heading {
    padding: 1.25rem 2.5rem;
    text-align: center;
}

.spec-mobile-heading h2 {
    font-size: 20px;
    font-family: 'Baskervville', serif;
    font-weight: 400;
    padding-bottom: 0.5rem;
}

.spec-section {
    padding: 0 1.25rem;
}

.spec-dark-bg {
    background: #244172;
    border-radius: 16px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 1.5rem 0;
}

.spec-left {
    display: flex;
    flex-direction: column;
}

.spec-image {
    width: 100%;
    height: auto;
}

.spec-guidance-box {
    background: #FFC907;
    border-radius: 14px;
    text-align: left;
    padding: 1.25rem;
    color: #1A325D;
    font-family: 'Poppins', sans-serif;
}

.spec-guidance-box span {
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.spec-right {
    width: 100%;
}

.spec-scroll-list {
    overflow-y: auto;
    height: 485px;
    display: grid;
    gap: 12px;
    padding: 0 0.5rem;
}

/* Custom scrollbar */
.spec-scroll-list::-webkit-scrollbar {
    width: 6px;
}

.spec-scroll-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.spec-scroll-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.spec-item {
    display: grid;
    grid-template-columns: 45px auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #4a6595;
    cursor: pointer;
    border-radius: 10px;
    padding: 1.25rem;
    gap: 4px;
    transition: background 0.3s;
}

.spec-item:hover {
    background: #fff;
}

.spec-item-icon img {
    width: 30px;
    height: auto;
}

.spec-item-name {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    transition: color 0.3s;
}

.spec-item:hover .spec-item-name {
    color: #1D3764;
}

.spec-scroll-indicator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 1.25rem;
}

.scroll-arrow-wrap {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #FFC907;
    font-size: 24px;
    cursor: pointer;
}

.spec-scroll-btn {
    transition: color 0.3s;
}

.scroll-arrow-wrap:hover .spec-scroll-btn {
    color: #fff;
}

/* ============================================= */
/* PROGRAMME OVERVIEW                            */
/* ============================================= */
.programme-area {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.programme-area .heading-baskervville,
.programme-area h2 {
    color: #fff;
}

.programme-desc {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    font-size: 14px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.programme-left {
    order: 2;
}

.programme-right {
    order: 1;
    display: grid;
    gap: 1.25rem;
}

.sem-box {
    border-radius: 16px;
    padding: 0.5rem;
    display: grid;
    gap: 12px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sem-header {
    display: grid;
    grid-template-columns: auto 150px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 12px;
}

.sem-header-title {
    color: #1A325D;
    font-weight: 400;
    font-size: 20px;
}

.sem-download-btn {
    background: #1A325D;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.5rem 12px;
    border-radius: 10px;
    font-size: 14px;
}

.sem-accordion-wrap {
    padding: 0 0.5rem;
    display: grid;
    gap: 8px;
}

.sem-note {
    padding: 0 0.5rem;
}

.sem-note>div,
.sem-note>p {
    background: #fffae7;
    padding: 1rem 0.5rem;
    border-radius: 14px;
    font-size: 14px;
    color: rgba(26, 50, 93, 0.8);
}

.cert-image-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cert-image-wrap img {
    width: 55%;
    height: auto;
}

.cert-info-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    border-radius: 16px;
    display: grid;
    gap: 0.5rem;
}

.cert-info-box h3 {
    text-align: center;
    color: #1A325D;
    font-weight: 600;
}

.cert-info-box p {
    font-size: 14px;
    text-align: justify;
    color: #5f708e;
}

/* ============================================= */
/* FACULTY SECTION                               */
/* ============================================= */
.faculty-area {
    background: #2A4A7F;
}

.faculty-inner {
    padding: 3rem 0;
}

.faculty-heading {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 1.25rem;
}

.underline-gold {
    border-bottom: 2px solid #ffc907;
}

.faculty-subtext {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2.5rem;
}

.faculty-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    padding-top: 12px;
    padding-bottom: 10px;
}

.faculty-photo {
    width: 100%;
    padding: 0.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.faculty-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1.5px solid #9a9a9a;
    padding: 4px;
}

.faculty-name-wrap {
    text-align: left;
    color: rgba(5, 5, 5, 0.7);
    padding: 0 12px;
}

.faculty-name-wrap h3 {
    font-weight: 600;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.faculty-name-wrap span {
    font-size: 14px;
    color: #1A325D;
    font-family: 'Poppins', sans-serif;
}

.faculty-meta {
    width: 100%;
    text-align: left;
    color: rgba(5, 5, 5, 0.7);
    padding: 0 12px;
    height: 50px;
    display: flex;
    flex-direction: column;
}

.faculty-meta span {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.faculty-meta span i {
    color: #1A325D;
}

.faculty-divider {
    background: #e9ebef;
    width: 100%;
    height: 2px;
    margin: 4px 0;
}

.faculty-bio {
    text-align: left;
    height: 125px;
    overflow-y: auto;
    color: rgba(5, 5, 5, 0.7);
    padding: 0 12px;
}

.faculty-bio::-webkit-scrollbar {
    width: 4px;
}

.faculty-bio::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.faculty-bio p {
    font-size: 14px;
}

.faculty-nav-btn {
    background: #1A325D !important;
    color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.faculty-nav-btn::after {
    font-size: 16px !important;
    color: #fff !important;
}

.faculty-meet-more {
    text-align: center;
    padding: 1.25rem 0;
}

.faculty-meet-more a {
    color: #1A325D;
    background: #FFC907;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 2.5rem;
    border-radius: 14px;
    cursor: pointer;
    gap: 1.25rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.faculty-meet-more a:hover {
    opacity: 0.9;
}

/* ============================================= */
/* STORIES / TESTIMONIALS                        */
/* ============================================= */
.stories-area {
    background: #F8F9FB;
    padding: 2.5rem 0;
}

.stories-subtext {
    font-size: 14px;
    color: #5f708e;
    padding-top: 0.5rem;
    margin-bottom: 3.5rem;
    font-family: 'Poppins', sans-serif;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2.5rem;
}

.story-card {
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
}

.story-avatar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 2px;
    height: 50px;
    margin-bottom: 1.25rem;
}

.story-avatar img {
    width: 110px;
    height: auto;
    border-radius: 50%;
    position: relative;
    top: -15px;
}

.story-stars {
    color: #fde047;
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
}

.story-info {
    text-align: left;
    width: 100%;
    height: 70px;
    padding: 1.25rem 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.story-info h3 {
    color: #1A325D;
    font-weight: 700;
}

.story-info p {
    font-size: 14px;
    color: #76849e;
}

.story-divider {
    background: #e9ebef;
    width: 100%;
    height: 2px;
    margin-bottom: 0.5rem;
}

.story-content {
    color: #6A7282;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    overflow-y: auto;
    height: 250px;
}

.story-content::-webkit-scrollbar {
    width: 4px;
}

.story-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.story-content p {
    font-size: 13px;
}

.expandable-text {
    display: none;
}

.expandable-text.shown {
    display: inline;
}

.read-toggle {
    color: #1C398E;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.5rem;
}

.read-toggle i {
    color: #717182;
    font-size: 11px;
    transition: transform 0.3s;
}

.extra-story {
    display: none;
}

.extra-story.shown {
    display: flex;
}

.stories-load-more {
    text-align: center;
    padding: 2.5rem 0;
    background: #F8F9FB;
    margin-bottom: 2.5rem;
}

.load-stories-btn {
    color: #1A325D;
    background: #FFC907;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 2.5rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
}

.load-stories-btn:hover {
    opacity: 0.9;
}

/* Mobile stories */
.stories-mobile {
    padding: 1.25rem 0;
}

.mobile-story {
    border: 1px solid #cbd5e1;
    box-shadow: none;
}

/* ============================================= */
/* ELIGIBILITY                                   */
/* ============================================= */
.elig-area {
    padding: 2.5rem 0;
}

.elig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.elig-left {
    text-align: left;
    padding: 12px 1rem;
}

.elig-list {
    list-style: disc;
    text-align: left;
    font-size: 14px;
}

.elig-list li {
    display: grid;
    grid-template-columns: 40px auto;
    color: #5f708e;
    margin-bottom: 0.5rem;
}

.elig-list li span {
    color: #5f708e;
}

.elig-right {
    /* empty - elig-india-box handles it */
}

.elig-india-box {
    background: #1A325D;
    border-radius: 16px;
    padding: 1rem 1rem 1.25rem;
    display: grid;
    gap: 1.25rem;
}

.elig-india-heading {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.elig-india-heading h2 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 400;
    padding-bottom: 4px;
    text-align: left;
}

.elig-india-item {
    display: grid;
    grid-template-columns: 30px auto;
}

.elig-check {
    color: #FFC907;
    text-align: left;
}

.elig-india-item p {
    text-align: left;
    color: #d1d6df;
    font-size: 14px;
}

/* ============================================= */
/* FEE STRUCTURE                                 */
/* ============================================= */
.fee-area {
    padding: 2.5rem 0;
}

.fee-area .heading-baskervville,
.fee-area h2 {
    color: #fff;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 0;
}

.fee-card {
    height: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    width: 100%;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.fee-card:hover {
    background: #1A325D;
}

.fee-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: color 0.3s;
}

.fee-card:hover .fee-label {
    color: rgba(255, 255, 255, 0.9);
}

.fee-amount {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.fee-card:hover .fee-amount {
    color: #fff;
}

.fee-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: color 0.3s;
}

.fee-card:hover .fee-sub {
    color: rgba(255, 255, 255, 0.9);
}

.fee-label-alt {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.fee-card:hover .fee-label-alt {
    color: #fff;
}

/* ============================================= */
/* INDUSTRY PARTNERSHIPS                         */
/* ============================================= */
.industry-area {
    padding: 3.5rem 0 1rem;
}

.industry-projects {
    text-align: left;
    width: 100%;
}

.industry-subheading {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.industry-subheading h3 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1a325d;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.industry-subheading p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #76849e;
}

.industry-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.industry-logos-grid div img {
    width: 120px;
    height: auto;
    border-radius: 14px;
    border: 1px solid #dde0e7;
}

/* ============================================= */
/* ALUMNI SECTION                                */
/* ============================================= */
.alumni-area {
    padding: 2.5rem 0;
    border-radius: 0;
}

.alumni-inner {
    text-align: left;
    width: 100%;
}

.alumni-subheading {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.alumni-subheading h3 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.alumni-subheading p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #bbc3d1;
    font-weight: 400;
}

.alumni-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.alumni-logo-card {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

.alumni-logo-card img {
    width: 140px;
    height: auto;
    border-radius: 14px;
}

/* ============================================= */
/* MBA CTA SECTION                               */
/* ============================================= */
.mba-cta-area {
    padding: 2.5rem 0;
}

.mba-cta-area .heading-baskervville,
.mba-cta-area h2 {
    color: #fff;
}

.mba-cta-text {
    width: 80%;
    margin: 1.5rem auto;
    text-align: justify;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    font-size: 14px;
}

.mba-cta-btn-wrap {
    padding: 2.5rem 0;
    text-align: center;
}

.mba-apply-btn {
    background: #FFC907;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 1rem;
    border-radius: 10px;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #1A325D;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
}

.mba-apply-btn:hover {
    opacity: 0.9;
}

/* ============================================= */
/* FAQ SECTION                                   */
/* ============================================= */
.faq-area {
    padding-bottom: 1.75rem;
}

.faq-title {
    font-size: 24px;
    color: #fff;
}

.faq-list {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.faq-item {
    width: 100%;
}

.faq-item .acc-trigger {
    display: grid;
    grid-template-columns: auto 100px;
    border: none;
    border-radius: 0;
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.faq-q {
    text-align: left;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.faq-item .acc-panel {
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0;
    margin-bottom: 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.faq-item .acc-trigger-arrow,
.faq-item .acc-trigger-arrow i {
    color: #fff;
}

.faq-divider {
    background: #dde0e7;
    width: 100%;
    height: 2px;
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.site-footer {
    background: #1A325D;
    padding: 2rem 0;
}

.footer-seo {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}

.footer-seo p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.6;
}

/* ============================================= */
/* RESPONSIVE - TABLET                           */
/* ============================================= */
@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: 1fr;
        margin-left: 10px;
    }

    .banner-left {
        padding-left: 1rem;
    }

    .banner-left-img {
        display: none;
    }

    .cert-info-box {
        display: none;
    }

    .programme-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .programme-left {
        order: 1;
    }

    .programme-right {
        order: 2;
    }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                           */
/* ============================================= */
@media (max-width: 639px) {

    /* ----- VISIBILITY ----- */
    .desktop-only { display: none !important; }
    .mobile-only  { display: block !important; }

    /* ----- CONTAINERS ----- */
    .container-narrow { width: 90%; }
    .container-wide   { width: 92%; }

    /* ======================================== */
    /* HEADER                                   */
    /* ======================================== */
    .nav-header {
        padding: 0.3rem 0.75rem;
    }

    .nav-inner {
        border-radius: 12px;
    }

    .nav-bar {
        padding: 0.6rem 0.75rem;
    }

    .nav-logo img {
        width: 120px;
        height: auto;
    }

    .nav-enquire-btn {
        font-size: 10px;
        padding: 8px 14px;
        border-radius: 50px;
        gap: 4px;
        white-space: nowrap;
    }

    /* ======================================== */
    /* ADMISSION STRIP                          */
    /* ======================================== */
    .admission-bar {
        padding: 0 0.75rem;
        margin-bottom: 0.5rem;
    }

    .admission-bar-inner {
        border-radius: 8px;
    }

    .admission-bar-text {
        font-size: 12px;
        height: 32px;
    }

    /* ======================================== */
    /* BANNER / HERO                            */
    /* ======================================== */
    .banner-area {
        padding: 0 0.75rem 0 0.75rem;
    }

    .banner-bg {
        background: none;
        border-radius: 0;
    }

    .banner-overlay {
        padding: 0;
    }

    .banner-left-img {
        display: none;
    }

    .banner-grid {
        grid-template-columns: 1fr;
        margin: 0;
        gap: 0;
        padding: 0;
    }

    /* --- Hero content card with mobile bg --- */
    .banner-left {
        background: #1A325D;
        background-image: url('./img/newmobilebanner.png');
        background-repeat: no-repeat;
        background-position: right -8px bottom -20px;
        background-size: 80% auto;
        color: #fff;
        border-radius: 14px;
        padding: 1.5rem 1rem 1.25rem;
        margin-top: 0;
    }

    .banner-tag {
        font-size: 14px;
        font-weight: 800;
        font-style: italic;
        margin-bottom: 4px;
    }

    .banner-heading {
        width: 70%;
    }

    .banner-heading span {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .banner-subheading {
        font-size: 12px;
        padding: 4px 10px;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
        border-radius: 4px;
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
    }

    .banner-info-points {
        gap: 8px;
        margin-bottom: 0.75rem;
        padding: 0;
    }

    .info-point {
        grid-template-columns: 22px auto;
        gap: 6px;
    }

    .info-point img {
        width: 16px;
    }

    .info-point span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .banner-cta-wrap {
        margin-bottom: 0.75rem;
    }

    .banner-download-btn {
        font-size: 10px;
        padding: 8px 16px;
        border-radius: 20px;
        position: static;
        gap: 6px;
    }

    /* --- Badges row (QS, Asia Pacific) --- */
    .banner-badges {
        display: inline-flex;
        width: 100%;
    }

    .badge-inner {
        padding: 10px 12px;
        border-radius: 10px;
        gap: 10px;
        width: 100%;
    }

    .badge-item {
        grid-template-columns: 24px 1fr;
        gap: 8px;
    }

    .badge-icon img {
        width: 30px;
    }

    .badge-text {
        font-size: 10px;
        font-weight: 600;
        line-height: 1.3;
    }

    .badge-border-right {
        border-right: 2px solid #d3d3d3;
        padding-right: 10px;
    }

    /* ======================================== */
    /* FORM AREA                                */
    /* ======================================== */
    .banner-right {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .form-wrapper {
        padding: 0;
    }

    /* --- Timer card --- */
    .form-timer {
        display: flex !important;
        margin: -15px 0 0.75rem 0;
        padding: 10px 14px;
        border-radius: 10px;
        border: 1.5px solid #1C355E;
        background: #fff;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .timer-label {
        font-size: 11px;
        font-weight: 600;
        color: #1C355E;
    }

    .timer-box {
        background: #1C355E;
        color: #fff;
        padding: 4px 7px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 14px;
    }

    .timer-sep {
        font-weight: 700;
        font-size: 14px;
        color: #1C355E;
    }

    /* --- Form container --- */
    .form-top {
        border-radius: 14px 14px 0 0;
        padding: 16px 12px 10px;
        background: #1a325d;
        border: none;
    }

    .form-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .form-subtitle {
        font-size: 11px;
        padding-bottom: 8px;
    }

    .form-body {
        border-radius: 0 0 14px 14px;
        padding: 0.75rem 1rem 1rem;
    }

    .field-group {
        margin-bottom: 6px;
    }

    .field-group label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .field-group input,
    .field-group select {
        padding: 7px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .field-row-half {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .field-check label {
        font-size: 9px;
    }

    .form-submit-btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* ======================================== */
    /* WHY CHOOSE SECTION                       */
    /* ======================================== */
    .why-section {
        padding-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .heading-baskervville {
        font-size: 20px !important;
    }

    .why-card {
        height: auto;
        padding: 1rem;
    }

    .why-card-text p {
        font-size: 11px;
    }

    /* ======================================== */
    /* STATS BAR                                */
    /* ======================================== */
    .stats-row {
        grid-template-columns: 1fr 1fr;
        padding: 1.25rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .stat-val {
        font-size: 28px;
    }

    .stat-name {
        font-size: 11px;
        text-align: center;
    }

    /* ======================================== */
    /* FEATURES                                 */
    /* ======================================== */
    .features-area {
        padding: 1rem 0;
    }

    .feat-card {
        height: auto;
        padding: 1rem;
    }

    .feat-card-body h3 {
        font-size: 13px;
    }

    .feat-card-body p {
        font-size: 11px;
    }

    /* ======================================== */
    /* SPECIALISATIONS                          */
    /* ======================================== */
    .spec-section {
        padding: 0 0.75rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem 0.5rem;
    }

    .spec-left {
        display: none;
    }

    .spec-scroll-list {
        height: auto;
        max-height: 400px;
    }

    .spec-item {
        background: rgba(74, 101, 149, 0.26);
        border: 1px solid #70788d;
        padding: 1rem;
    }

    .spec-item-name {
        font-size: 13px;
    }

    /* ======================================== */
    /* PROGRAMME OVERVIEW                       */
    /* ======================================== */
    .programme-area {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .programme-desc {
        width: 100%;
        font-size: 13px;
    }

    .programme-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .programme-left { order: 1; }
    .programme-right { order: 2; }

    .sem-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .sem-header-title {
        font-size: 17px;
    }

    .sem-download-btn {
        font-size: 12px;
        justify-self: center;
    }

    .acc-num-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .sem-label {
        font-size: 16px;
    }

    .cert-image-wrap {
        padding: 1rem 0;
    }

    .cert-image-wrap img {
        width: 80%;
    }

    .cert-info-box {
        display: none;
    }

    /* ======================================== */
    /* FACULTY                                  */
    /* ======================================== */
    .faculty-heading {
        font-size: 22px !important;
    }

    .faculty-subtext {
        font-size: 12px;
        margin-bottom: 1.5rem;
    }

    .faculty-card {
        padding: 10px;
    }

    .faculty-bio {
        height: 100px;
    }

    .faculty-bio p {
        font-size: 12px;
    }

    .faculty-nav-btn {
        width: 36px !important;
        height: 36px !important;
    }

    .faculty-nav-btn::after {
        font-size: 12px !important;
    }

    .faculty-meet-more a {
        padding: 10px 1.5rem;
        font-size: 13px;
        border-radius: 10px;
    }

    /* ======================================== */
    /* TESTIMONIALS / STORIES                   */
    /* ======================================== */
    .stories-area {
        background: none;
        padding: 1.25rem 0;
    }

    .stories-subtext {
        font-size: 12px;
        margin-bottom: 1.5rem;
    }

    .story-card {
        height: auto;
    }

    .story-avatar img {
        width: 70px;
    }

    .story-info {
        text-align: center;
        height: auto;
        padding: 0.5rem 0;
    }

    .story-info h3 {
        font-size: 14px;
    }

    .story-info p {
        font-size: 12px;
    }

    .story-content {
        height: auto;
        max-height: 150px;
    }

    .story-content p {
        font-size: 12px;
    }

    .mobile-story {
        border: 1px solid #cbd5e1;
        box-shadow: none;
    }

    .stories-load-more {
        padding: 1rem 0;
    }

    .load-stories-btn {
        font-size: 13px;
        padding: 10px 1.5rem;
    }

    /* ======================================== */
    /* ELIGIBILITY                              */
    /* ======================================== */
    .elig-area {
        padding: 1.5rem 0;
    }

    .elig-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .elig-left {
        padding: 0;
    }

    .elig-list li {
        font-size: 13px;
    }

    .elig-india-box {
        padding: 1rem;
    }

    .elig-india-heading h2 {
        font-size: 13px;
    }

    .elig-india-item p {
        font-size: 12px;
    }

    /* ======================================== */
    /* FEE STRUCTURE                            */
    /* ======================================== */
    .fee-area {
        padding: 1.5rem 0;
    }

    .fee-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .fee-card {
        height: auto;
        padding: 0.75rem;
        align-items: center;
        text-align: center;
        border-radius: 12px;
    }

    .fee-amount {
        font-size: 18px;
    }

    .fee-label {
        font-size: 11px;
    }

    .fee-sub {
        font-size: 11px;
    }

    .fee-label-alt {
        font-size: 13px;
    }

    /* ======================================== */
    /* INDUSTRY & ALUMNI                        */
    /* ======================================== */
    .industry-area {
        padding: 1.5rem 0 0.5rem;
    }

    .industry-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .industry-logos-grid div img {
        width: 100%;
    }

    .alumni-area {
        padding: 1.5rem 0;
    }

    .alumni-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .alumni-logo-card {
        padding: 0.75rem;
    }

    .alumni-logo-card img {
        width: 100%;
    }

    /* ======================================== */
    /* MBA CTA                                  */
    /* ======================================== */
    .mba-cta-area {
        padding: 1.5rem 0;
    }

    .mba-cta-text {
        width: 100%;
        font-size: 13px;
    }

    .mba-cta-btn-wrap {
        padding: 1.25rem 0;
    }

    .mba-apply-btn {
        font-size: 14px;
        padding: 10px 1.25rem;
    }

    /* ======================================== */
    /* FAQ                                      */
    /* ======================================== */
    .faq-area {
        padding-bottom: 1rem;
    }

    .faq-list {
        width: 100%;
    }

    .faq-q {
        font-size: 14px;
    }

    .faq-item .acc-trigger {
        grid-template-columns: auto 40px;
        padding: 8px 0;
    }

    .faq-item .acc-panel {
        font-size: 12px;
        padding: 0 0 8px 0;
    }

    /* ======================================== */
    /* FOOTER                                   */
    /* ======================================== */
    .site-footer {
        padding: 1.25rem 0;
    }

    .footer-seo p {
        font-size: 9px;
    }

    .footer-disclaimer p {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .banner-left {
        background-size: 72% auto;
        background-position: right -6px bottom -16px;
    }
}

/* ============================================= */
/* INTERACTIVE UG/PG SELECTION POPUP             */
/* ============================================= */
.amity-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 69, 0.7);
    backdrop-filter: blur(2px); /* Reduced from 4px */
    -webkit-backdrop-filter: blur(2px); /* Reduced from 4px */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.amity-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.amity-popup-container {
    background: #ffffff;
    width: min(94%, 900px);
    max-width: 900px;
    border-radius: 24px; /* Restored elegant border-radius */
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(15, 34, 69, 0.3);
    transform: scale(0.85) translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.amity-popup-overlay.active .amity-popup-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.amity-popup-grid {
    display: grid;
    grid-template-columns: 54% 46%;
    min-height: 370px; /* Increased from 320px to allow larger content */
}

.amity-popup-image-side {
    background: linear-gradient(135deg, #0F2245 0%, #1B3666 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.amity-popup-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
}

.amity-popup-yellow-arc {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px; /* Scaled up from 190px */
    height: 220px;
    background: #FFC907;
    border-radius: 50%;
    z-index: 1;
}.amity-popup-student-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



.amity-popup-logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.amity-popup-logo-top img {
    max-width: 110px;
    height: auto;
    display: block;
}

.amity-popup-content-side {
    padding: 24px 30px; /* Increased from 20px 24px for a spacious feel */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amity-popup-welcome {
    font-family: 'Raleway', sans-serif;
    color: #A35C00;
    font-weight: 800;
    font-size: 11px; /* Restored to 11px */
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px; /* Restored to 4px */
    text-align: center;
}

.amity-popup-title {
    color: #0F2245;
    font-size: 21px; /* Increased from 18px */
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 16px; /* Increased from 12px */
    font-weight: 700;
    text-align: center;
    font-family: 'Baskervville', serif;
}

.amity-popup-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px; /* Increased from 10px */
    margin-bottom: 16px; /* Increased from 12px */
    padding-top: 6px;
    padding-bottom: 6px;
}

.amity-popup-btn {
    width: 100%;
    max-width: 165px; /* Increased from 145px to support larger content */
    margin: 0;
    border-radius: 12px; /* Restored to 12px */
    padding: 10px 12px; /* Restored to 10px 12px */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
    text-decoration: none;
    transform: translateY(-4px); /* Restored 3D lift to 4px */
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.2s ease, 
                border-color 0.2s ease;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 8px; /* Restored to 8px */
    margin-right: 8px; /* Restored to 8px */
    text-align: left;
}

.btn-label {
    font-size: 15px; /* Restored to 15px */
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* UG Card Styling */
.btn-ug {
    background: #FFFDF5;
    border: 2px solid #A35C00;
    color: #0F2245;
    box-shadow: 0 4px 0 #A35C00; /* Restored 3D Gold bottom depth to 4px */
}

.btn-ug .btn-icon-wrap {
    width: 32px; /* Scaled up from 28px */
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #FFF4C2;
    color: #A35C00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px; /* Scaled up from 12px */
}

.btn-ug .btn-action-arrow {
    width: 22px; /* Scaled up from 20px */
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #A35C00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px; /* Scaled up from 8px */
    transition: transform 0.3s ease;
}

.btn-ug:hover {
    background: #FFF9E6;
    transform: translateY(-2px); /* Restored to -2px */
    box-shadow: 0 2px 0 #A35C00; /* Restored to 2px */
}

.btn-ug:active {
    transform: translateY(0); /* Depress completely */
    box-shadow: 0 0 0 #A35C00;
}

.btn-ug:hover .btn-action-arrow {
    transform: scale(1.1);
}

/* PG Card Styling */
.btn-pg {
    background: #0F2245;
    border: 2px solid #061124;
    color: #ffffff;
    box-shadow: 0 4px 0 #061124; /* Restored 3D Navy bottom depth to 4px */
}

.btn-pg .btn-icon-wrap {
    width: 32px; /* Scaled up from 28px */
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #1D3563;
    color: #FFC907;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px; /* Scaled up from 12px */
}

.btn-pg .btn-action-arrow {
    width: 22px; /* Scaled up from 20px */
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: #0F2245;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px; /* Scaled up from 8px */
    transition: transform 0.3s ease;
}

.btn-pg:hover {
    background: #162E5C;
    border-color: #0F2245;
    transform: translateY(-2px); /* Restored to -2px */
    box-shadow: 0 2px 0 #061124; /* Restored to 2px */
}

.btn-pg:active {
    transform: translateY(0); /* Depress completely */
    box-shadow: 0 0 0 #061124;
}

.btn-pg:hover .btn-action-arrow {
    transform: scale(1.1);
}

/* UGC & NAAC badges */
.amity-popup-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #334155;
    font-size: 13px; /* Restored to 13px */
    font-weight: 600;
    margin-top: 12px; /* Restored to 12px */
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
}

.badge-shield-icon {
    color: #334155;
}

/* Help Box */
.amity-popup-help-card {
    background: #F4F6F9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
}

.help-left {
    display: flex;
    align-items: center;
}

.help-icon {
    font-size: 20px;
    color: #152A55;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.help-text {
    display: flex;
    flex-direction: column;
}

.help-title {
    font-size: 13px;
    font-weight: 700;
    color: #0F2A4A;
    line-height: 1.2;
}

.help-desc {
    font-size: 11px;
    color: #475569;
    margin-top: 2px;
    line-height: 1.2;
}

.help-chat-btn {
    border: 1.5px solid #1D4ED8;
    color: #1D4ED8;
    background: transparent;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.help-chat-btn:hover {
    background: #1D4ED8;
    color: #ffffff;
}

/* Responsive Popup Styling */
@media (max-width: 768px) {
    .amity-popup-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .amity-popup-image-side {
        height: 190px;
        display: flex;
        position: relative;
    }

    .amity-popup-logo-top {
        margin-bottom: 10px;
    }

    .amity-popup-logo-top img {
        max-width: 108px;
    }


    .amity-popup-content-side {
        padding: 22px 20px 24px;
    }

    .amity-popup-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .amity-popup-welcome {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .amity-popup-actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-bottom: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .amity-popup-btn {
        max-width: 135px;
        padding: 10px 11px;
        justify-content: center;
        border-radius: 11px;
        transform: translateY(-3px); /* Restored to -3px */
    }

    .btn-ug {
        box-shadow: 0 3px 0 #A35C00;
    }

    .btn-pg {
        box-shadow: 0 3px 0 #061124;
    }

    .btn-ug:hover, .btn-ug:focus {
        transform: translateY(-1.5px);
        box-shadow: 0 1.5px 0 #A35C00;
    }

    .btn-pg:hover, .btn-pg:focus {
        transform: translateY(-1.5px);
        box-shadow: 0 1.5px 0 #061124;
    }

    .btn-ug:active {
        transform: translateY(0);
        box-shadow: 0 0px 0 #A35C00;
    }

    .btn-pg:active {
        transform: translateY(0);
        box-shadow: 0 0px 0 #061124;
    }

    .amity-popup-btn .btn-action-arrow {
        display: none;
    }

    .amity-popup-btn .btn-icon-wrap {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .amity-popup-btn .btn-text-content {
        margin-left: 6px; /* Restored to 6px */
        margin-right: 0;
        flex: none;
    }

    .btn-label {
        font-size: 14px;
    }

    .amity-popup-badges {
        font-size: 14px;
        margin-top: 14px;
    }
}
