@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

/* ============================================================
   BASE STYLES
   ============================================================ */

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Inter, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
}

.form-margin {
    margin-top: 100px;
}

@media (max-width: 1290px) {
    .form-margin {
        margin-top: 120px;
    }
}

@media (max-width: 1150px) {
    .form-margin {
        margin-top: 80px;
    }
}

@media (max-width: 990px) {
    .form-margin {
        margin-top: 0px;
    }
}

#register-form-fields {
    min-height: 575px;
}

#form-subtitle {
    min-height: 24px;
    margin-bottom: 12px !important;
    color: var(--text-main);
}

.awards-content-wrapper {
    position: relative;
    display: flex;
    gap: 3rem;
    align-items: stretch;
    min-height: 500px;
    padding-bottom: 20px;
}

.mobile-award-image-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
}

.mobile-award-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mobile-award-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.award-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.award-description-panel {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.award-header h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.active-award-details {
    flex-grow: 1;
    margin-bottom: 2rem;
    transition: all 0.5s ease-in-out;
}

.active-award-details .award-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-description {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease-in-out 0.1s;
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.4s ease-in-out 0.2s;
    transform: translateY(0);
    opacity: 1;
}

.nav-btn {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    transform: scale(1);
}

.nav-btn:hover {
    background: var(--bg-primary);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease-in-out;
}

.awards-display-panel {
    flex: 1;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.awards-display-panel::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(30px);
}

.awards-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.awards-carousel .award-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.awards-carousel .award-item.position-center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.awards-carousel .award-item.position-left,
.awards-carousel .award-item.position-right {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.awards-carousel .award-item:not(.position-center) {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0) !important;
    pointer-events: none !important;
}

.awards-carousel .award-icon {
    width: 100%;
    height: 84%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    transition: all 0.6s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.awards-carousel .award-item.position-center .award-icon {
    transform: scale(1.05);
}

.awards-carousel .award-item .award-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
    letter-spacing: 0.2px;
    transition: all 0.6s ease;
}

.awards-carousel .award-item .award-year {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    transition: all 0.6s ease;
}

.award-meta .award-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.award-organization {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-orange);
    /* box-shadow:
        0 0 12px rgba(255, 215, 0, 0.8),
        0 0 24px rgba(255, 215, 0, 0.6),
        0 0 36px rgba(255, 215, 0, 0.4); */
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .awards-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .awards-carousel {
        height: 350px;
    }

    .award-description-panel {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .award-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .active-award-details .award-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .award-item {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .awards-content-wrapper {
        flex-direction: column;
        gap: 0;
        min-height: auto;
        padding: 1.5rem 0.8rem;
    }

    .mobile-award-image-container {
        display: flex;
        order: 1;
        margin-bottom: 1.5rem;
    }

    .mobile-award-image {
        max-width: 250px;
        max-height: 250px;
    }

    .award-description-panel {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.5rem;
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        order: 2;
    }

    .awards-display-panel {
        display: none;
    }

    .awards-carousel {
        height: auto;
        gap: 1rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }

    .award-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .award-header h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .award-header h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .active-award-details {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .active-award-details .award-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .active-award-details .award-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .carousel-navigation {
        justify-content: center;
        margin-top: 1rem;
    }

    .award-item {
        flex: 0 0 140px;
        height: 200px;
        padding: 1rem;
        border-radius: 18px;
        transform: scale(1);
        margin: 0.5rem;
    }

    .award-item.active {
        flex: 0 0 160px;
        height: 220px;
        transform: scale(1.1) translateY(-8px);
    }

    .award-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .awards-carousel .award-item .award-title {
        font-size: 0.98rem;
        margin-top: 0.8rem;
    }

    .awards-carousel .award-item .award-year {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .awards-content-wrapper {
        padding: 0rem 0.5rem;
        gap: 0;
    }

    .mobile-award-image-container {
        display: flex;
        order: 1;
        padding: 0.2rem;
        margin-bottom: 1.2rem;
    }

    .mobile-award-image {
        max-width: 220px;
        max-height: 220px;
    }

    .award-description-panel {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.2rem;
        padding: 1.8rem 1.2rem;
        margin-bottom: 0;
        order: 2;
    }

    .awards-display-panel {
        display: none;
    }

    .awards-carousel {
        height: auto;
        gap: 0.8rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }

    .award-header {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .award-header h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .award-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .active-award-details {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .active-award-details .award-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .active-award-details .award-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.8rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .carousel-navigation {
        justify-content: center;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
    }

    .award-item {
        flex: 0 0 130px;
        height: 185px;
        padding: 0.9rem;
        border-radius: 16px;
        transform: scale(1);
        margin: 0.4rem;
    }

    .award-item.active {
        flex: 0 0 150px;
        height: 200px;
        transform: scale(1.05) translateY(-6px);
    }

    .award-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .awards-carousel .award-item .award-title {
        font-size: 0.9rem;
        margin-top: 0.7rem;
    }

    .awards-carousel .award-item .award-year {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
}

.tmu-usp-section {
    background-color: #fff8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.usp-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.usp-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text-primary, #111);
}

.usp-header p {
    margin: 0.25rem 0 0;
    color: #5f5f5f;
    opacity: 0.8;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.usp-card {
    min-height: 120px;
    display: flex;
    /* align-items: center; */
}

.usp-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    cursor: pointer;
    overflow: hidden;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    border-color: rgba(255, 255, 255, 0.28);
}

.usp-card:hover::before {
    background: linear-gradient(135deg, rgba(132, 0, 255, 0.5), #936fff);
    transform: translateY(-50%) scale(1.1);
}

.usp-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    filter: none;
}

.usp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.usp-card-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.usp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.usp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usp-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    opacity: 0.95;
}

.usp-icon {
    position: relative;
    z-index: 1;
}

.usp-modal-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.35) 0,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.35) 100%);
    backdrop-filter: blur(25px) saturate(120%);
    -webkit-backdrop-filter: blur(25px) saturate(120%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.usp-modal-overlay.active {
    display: flex;
}

.usp-modal {
    width: min(900px, 94vw);
    max-height: min(85vh, 900px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 0;
    position: relative;
    color: #111;
    transform: translateY(8px) scale(0.99);
    opacity: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.usp-modal-overlay.active .usp-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.usp-modal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.usp-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.55),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

.usp-modal-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.usp-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding-right: 64px;
    word-break: break-word;
}

.usp-icon i {
    font-size: 20px;
    color: #fff;
    opacity: 0.95;
}

.usp-modal-icon i {
    font-size: 28px;
    color: #111;
}

.usp-modal-body p {
    margin: 0.75rem 0 0.25rem;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.usp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 16, 85, 0.1);
    background: #ffffff;
    color: #001055;
    cursor: pointer;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.usp-modal-close:hover {
    background: #f8fafc;
    border-color: rgba(0, 16, 85, 0.2);
    color: #ff7900;
    transform: scale(1.05);
}

.usp-modal-close:focus-visible {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .carousel-navigation {
        justify-content: center;
    }

    .usp-icon {
        width: 34px;
        height: 34px;
    }

    .usp-modal-title {
        font-size: 1.15rem;
        padding-right: 0px;
    }

    .usp-modal-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }

    .usp-modal-body p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-navigation {
        justify-content: center;
    }
}

#gallery {
    padding: 2.5rem 1rem;
    background: #f1f5f9;
}

.gallery-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.gallery-tab:hover {
    background: var(--bg-primary);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.gallery-tab.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.gallery-tab-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 700;
}

.gallery-tab.active .gallery-tab-count {
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 2px 8px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    animation: galleryFadeIn 0.6s ease-out backwards;
}

.gallery-item:first-child {
    animation-delay: 50ms;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.15s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.25s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item::before,
.gallery-item::after {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.gallery-item:hover::before {
    opacity: 0.6;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.98) contrast(1.05) saturate(1.1);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    filter: brightness(1.03) contrast(1.03) saturate(1.05);
    transform: scale(1.01);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1.1);
}

.gallery-overlay-icon svg {
    display: block;
    color: var(--primary-blue);
}

.gallery-item:hover .gallery-overlay-icon svg {
    transform: scale(1.1);
}

.hero-pill-text {
    color: var(--text-heading) !important;
    font-weight: 700;
}

.gallery-overlay-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.modal-backdrop.show {
    opacity: 0 !important;
    display: none !important;
}

body.modal-open {
    overflow: hidden;
}

.lightbox-modal {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1055 !important;
}

.lightbox-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.lightbox-modal .modal-dialog {
    max-width: 90vw;
    width: 90vw;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal .modal-content {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 18px;
    box-shadow: none;
    overflow: visible;
}

/* Liquid blobs removed for simple look */

@keyframes liquidFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.95);
    }
}

.lightbox-modal .modal-header {
    position: relative;
    z-index: 5;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.lightbox-modal .modal-body {
    position: relative;
    z-index: 5;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-modal img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-nav svg {
    display: block;
}

.lightbox-caption {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    margin-top: 0.75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90vw;
    border-radius: 9999px;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
}

@media (max-width: 767.98px) {
    #gallery {
        padding: 0rem;
    }

    .gallery-tabs-container {
        margin-bottom: 0.2rem;
        gap: 0.5rem;
    }

    .gallery-tab {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-tab-icon {
        font-size: 1rem;
        margin-right: 0.4rem;
    }

    .gallery-tab-count {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
        margin-left: 0.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
        padding: 0.25rem;
    }

    .gallery-item {
        border-radius: 16px;
    }

    .gallery-overlay-icon {
        width: 52px;
        height: 52px;
    }

    .gallery-overlay-text {
        font-size: 0.85rem;
    }

    .lightbox-modal .modal-dialog {
        margin: 1rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-tabs-container {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0.75rem;
        padding: 15px 5px !important;
        margin-bottom: 1.5rem;
    }

    .gallery-tabs-container::-webkit-scrollbar {
        display: none;
    }

    .gallery-tab {
        flex-shrink: 0;
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-show-more-wrap {
        margin-top: 0.75rem;
        margin-bottom: 1.74rem;
    }
}

@media (max-width: 575.98px) {
    .tmu-footer .footer-panel {
        padding: 0.875rem 0.75rem;
        border-radius: 0.9rem;
    }

    .tmu-footer .footer-title {
        font-size: clamp(0.9rem, 4.6vw, 1.05rem);
        line-height: 1.1;
        letter-spacing: 0.01em;
    }

    .tmu-footer .footer-divider {
        margin-bottom: 0.75rem !important;
    }

    .tmu-footer .footer-top .row.justify-content-center {
        row-gap: 0.5rem !important;
    }

    .tmu-footer .footer-top .row>[class*="col-"] {
        display: flex;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .tmu-footer .footer-link {
        width: 100%;
        max-width: 360px;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0.65rem 0.9rem;
    }

    .tmu-footer .footer-link span {
        overflow-wrap: anywhere;
    }

    .tmu-footer .icon-circle {
        width: 34px;
        height: 34px;
    }

    .tmu-footer .footer-bottom .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.tmu-footer .icon-circle {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tmu-footer .icon-circle::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    -webkit-mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
    mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
    opacity: 0.9;
}

.tmu-footer .icon-circle.whatsapp {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    box-shadow: none;
}

.tmu-footer svg {
    display: block;
}

@media (max-width: 575.98px) {
    .tmu-footer .footer-panel {
        padding: 0.875rem 0.75rem;
        border-radius: 0.9rem;
    }

    .tmu-footer .footer-title {
        font-size: clamp(0.9rem, 4.6vw, 1.05rem);
        line-height: 1.1;
        letter-spacing: 0.01em;
    }

    .tmu-footer .footer-divider {
        margin-bottom: 0.75rem !important;
    }

    .tmu-footer .footer-top .row.justify-content-center {
        row-gap: 0.5rem !important;
    }

    .tmu-footer .footer-top .row>[class*="col-"] {
        display: flex;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .tmu-footer .footer-link {
        width: 100%;
        max-width: 360px;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0.65rem 0.9rem;
    }

    .tmu-footer .footer-link span {
        overflow-wrap: anywhere;
    }

    .tmu-footer .icon-circle {
        width: 34px;
        height: 34px;
    }

    .tmu-footer .footer-bottom .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.tmu-footer .icon-circle {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tmu-footer .icon-circle::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    -webkit-mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
    mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
    opacity: 0.9;
}

.tmu-footer .icon-circle.whatsapp {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    box-shadow: none;
}

.tmu-footer svg {
    display: block;
}

#recruiters {
    padding: 4rem 1rem;
    padding-top: 10rem;
    margin-top: -150px;
    background: #f1f5f9;
}

.recruiters-glass {
    position: relative;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.recruiters-scroller {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    z-index: 1;
}

.recruiters-scroller::after,
.recruiters-scroller::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.recruiters-scroller::before {
    left: 0;
    border-radius: 15px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1),
            rgba(248, 250, 252, 0));
}

.recruiters-scroller::after {
    right: 0;
    border-radius: 15px;
    background: linear-gradient(270deg,
            rgba(255, 255, 255, 1),
            rgba(248, 250, 252, 0));
}

.recruiters-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: recruiters-scroll 28s linear infinite;
}

.recruiter-card {
    position: relative;
    width: 200px;
    height: 100px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 14px 34px rgba(15, 23, 42, 0.18);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
    overflow: hidden;
}

.recruiter-card::before {
    content: "";
    position: absolute;
    inset: 8px 10px;
    border-radius: 14px;
    background:
        radial-gradient(120% 100% at 10% 0,
            rgba(255, 255, 255, 0.432),
            transparent 40%),
        radial-gradient(100% 120% at 90% 100%,
            rgba(226, 232, 240, 0.9),
            transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.recruiter-card img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    max-width: 88%;
    max-height: 74%;
    mix-blend-mode: normal;
    image-rendering: auto;
    filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.22)) brightness(1.1) contrast(1.15) saturate(1.08);
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.recruiter-card:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 28px 70px rgba(0, 217, 245, 0.35),
        0 0 70px rgba(124, 58, 237, 0.35);
}

.recruiter-card:hover img {
    filter: drop-shadow(0 12px 20px rgba(2, 6, 23, 0.28)) brightness(1.18) contrast(1.2) saturate(1.12);
}

@media (max-width: 575.98px) {
    .recruiter-card {
        width: 140px;
        height: 72px;
    }

    .recruiters-track {
        gap: 18px;
        animation-duration: 22s;
    }
}

#campus-trail {
    padding: 4rem 1rem;
}

.campus-trail-glass {
    position: relative;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.campus-trail-glass::after,
.campus-trail-glass::before {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background:
        radial-gradient(40% 40% at 20% 50%,
            rgba(93, 7, 255, 0.22),
            transparent 60%),
        radial-gradient(35% 35% at 80% 50%,
            rgba(147, 96, 255, 0.18),
            transparent 60%);
    filter: blur(22px);
    z-index: 0;
}

.campus-trail-glass::after {
    background: radial-gradient(35% 35% at 15% 30%,
            rgba(93, 7, 255, 0.2),
            transparent 60%);
    transform: rotate(8deg);
}

.glass-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.testimonials-header-glass {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-subtitle-glass {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-title-glass {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 0, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-wrapper-glass {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0,
            rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff7900 transparent;
}

.testimonials-wrapper-glass::-webkit-scrollbar {
    height: 1px;
}

.testimonials-wrapper-glass::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 1px;
}

.testimonials-wrapper-glass::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.9), #ffc107);
    border-radius: 1px;
    box-shadow:
        0 0 3px rgba(255, 215, 0, 0.8),
        0 0 6px rgba(255, 215, 0, 0.6),
        0 0 9px rgba(255, 215, 0, 0.4),
        0 0 12px rgba(255, 215, 0, 0.3);
    border: none;
}

.testimonials-wrapper-glass::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, gold, #ffc107);
    box-shadow:
        0 0 4px gold,
        0 0 8px rgba(255, 215, 0, 0.8),
        0 0 12px rgba(255, 215, 0, 0.6),
        0 0 16px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.testimonials-slider-glass {
    display: flex;
    gap: 10px;
    width: max-content;
    transform: none !important;
}

.testimonial-cover-glass {
    flex: 0 0 auto;
    width: 300px;
    height: 420px;
    position: relative;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    /* background: #ffffff; */
    border: 1px solid var(--border-subtle);
    transition:
        transform 0.25s ease,
        box-shadow 0.35s ease;
    box-shadow: var(--shadow-soft);
}

.testimonial-cover-glass::before,
.testimonial-cover-glass::after {
    display: none;
}

.testimonial-cover-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.testimonial-cover-glass:hover::before {
    opacity: 1;
}

.testimonial-cover-glass:hover::after {
    opacity: 1;
    transform: translateX(220%) skewX(-12deg);
}

.cover-image-glass {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.testimonial-cover-glass:hover .cover-image-glass {
    transform: scale(1.05);
}

.testimonial-cover-glass .image-overlay {
    background: transparent;
}

.play-overlay-glass {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonial-cover-glass:hover .play-overlay-glass {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
    border: 2px solid var(--accent-gold);
}

.play-overlay-glass svg {
    color: #fff;
    margin-left: 4px;
}

.student-name-glass {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.testimonials-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-arrow-glass {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.3) 0,
            rgba(255, 193, 7, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 14px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 215, 0, 0.3);
}

/* .nav-arrow-glass::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.6) 0,
        rgba(255, 193, 7, 0.4) 50%,
        rgba(255, 215, 0, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
} */

.nav-arrow-glass:hover {
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.5) 0,
            rgba(255, 193, 7, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(255, 215, 0, 0.4);
    color: #fff;
}

.nav-arrow-glass:hover::before {
    opacity: 1;
}

.glass-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.glass-modal.active {
    display: flex;
}

.glass-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    will-change: opacity;
    transform: translateZ(0);
}

.glass-modal-content {
    position: relative;
    width: 95vw;
    max-width: 1200px;
    height: 80vh;
    max-height: 800px;
    min-width: 800px;
    min-height: 500px;
    margin: auto;
    background: linear-gradient(135deg,
            rgba(30, 30, 40, 0.95) 0,
            rgba(20, 20, 30, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 16px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.glass-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.glass-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.glass-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-modal-prev {
    left: 20px;
}

.glass-modal-next {
    right: 20px;
}

.glass-modal-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.glass-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 40px;
    box-sizing: border-box;
    will-change: contents;
    transform: translateZ(0);
}

.glass-video-container iframe {
    width: 100%;
    height: 100%;
    min-width: 720px;
    min-height: 405px;
    border-radius: 20px;
    aspect-ratio: 16/9;
    will-change: contents;
    transform: translateZ(0);
}

@media (max-width: 1024px) {
    .testimonial-cover-glass {
        width: 350px;
        height: 480px;
    }

    .testimonials-title-glass {
        font-size: 48px;
    }

    .testimonials-wrapper-glass {
        padding: 30px;
    }

    .glass-modal-content {
        width: 90vw;
        height: 70vh;
        min-width: 600px;
        min-height: 400px;
    }

    .glass-video-container {
        padding: 30px 30px 30px 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-cover-glass {
        width: 220px;
        height: 300px;
        max-width: 85vw;
    }

    .testimonials-title-glass {
        font-size: 32px;
    }

    .testimonials-wrapper-glass {
        padding: 15px;
    }

    .glass-modal-content {
        width: 95vw;
        height: auto;
        min-width: 0;
        min-height: 0;
        border-radius: 16px;
        display: block;
        margin: auto;
        aspect-ratio: 16/9;
    }

    .glass-video-container {
        padding: 0;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .glass-video-container iframe {
        min-width: 0;
        min-height: 0;
        border-radius: 16px;
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        display: block;
    }

    .glass-modal-close {
        top: -50px;
        right: 0;
        width: 40px;
        height: 40px;
    }

    .glass-modal-nav {
        width: 40px;
        height: 40px;
    }

    .glass-modal-prev {
        left: -10px;
    }

    .glass-modal-next {
        right: -10px;
    }
}

.banner-black {
    background-color: #000;
    position: relative;
    isolation: isolate;
    padding-top: 100px;
    padding-bottom: 60px;
}

.glow-divider {
    position: relative;
    height: 1px;
    border: 0;
    margin: 0;
    background: linear-gradient(90deg,
            rgba(154, 88, 255, 0) 0,
            rgba(154, 88, 255, 0.85) 50%,
            rgba(154, 88, 255, 0) 100%);
}

.glow-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1px;
    width: min(96%, 1200px);
    height: 14px;
    pointer-events: none;
    border-radius: 999px;
    will-change: opacity, box-shadow;
    background: radial-gradient(50% 80% at 50% 0,
            rgba(154, 88, 255, 0.35),
            rgba(154, 88, 255, 0) 70%);
    box-shadow:
        0 0 16px rgba(154, 88, 255, 0.3),
        0 0 36px rgba(154, 88, 255, 0.22),
        0 0 72px rgba(154, 88, 255, 0.12);
    animation: softGlow 1.6s ease-in-out infinite alternate;
}

@keyframes softGlow {
    0% {
        opacity: 0.85;
        box-shadow:
            0 0 16px rgba(154, 88, 255, 0.3),
            0 0 32px rgba(154, 88, 255, 0.22),
            0 0 64px rgba(154, 88, 255, 0.12);
    }

    100% {
        opacity: 1;
        box-shadow:
            0 0 20px rgba(154, 88, 255, 0.38),
            0 0 40px rgba(154, 88, 255, 0.28),
            0 0 82px rgba(154, 88, 255, 0.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    .glow-divider::before {
        animation: none;
    }
}

#uspModalBody {
    text-align: justify;
}

header .navbar .nav-link {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.5rem 1rem;
    color: var(--text-main) !important;
    text-decoration: none;
    font-weight: 500;
}

header .navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

#faqs .faq-panel,
#faqs .faq-panel li {
    text-align: justify;
}

#campus-trail {
    display: none !important;
}

.bc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bc-nav:hover {
    background: var(--bg-primary);
    transform: translateY(-50%) scale(1.1);
    color: var(--primary-blue);
}

:root {
    /* Main Brand Colors */
    --primary-orange: #ff7900;
    --primary-blue: #001055;

    /* Backgrounds & UI Elements */
    --bg-primary: #ffffff;
    --bg-card: #ffffff;
    --text-main: #334155;
    --text-heading: #0f172a;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glow-opacity: 0.15;
    --glow-blur: clamp(8px, 2vw, 15px);
    --glow-width: clamp(420px, 72vw, 1420px);
    --grid-color: rgba(0, 0, 0, 0.03);
    --grid-spacing: 90px;
    --divider-glow-intensity: 1.2;
    --divider-line-width: 8px;
    --divider-pulse: 1.2s;
    --divider-band-height: clamp(40px, 6vw, 70px);
    --firefly-orange: var(--primary-orange);
}

/* Base Styles */

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    color: var(--text-heading);
}

/* Gallery Styles */

.gallery-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gallery-tab {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.gallery-tab.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.gallery-tab-count {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.gallery-tab.active .gallery-tab-count {
    background: rgb(255, 255, 255);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    /* Hidden initially, shown via filterGallery */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay>* {
    display: none !important;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Testimonials - Slider */

.glass-container {
    /* background: #ffffff;
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
    margin: 40px auto;
    /* max-width: 1200px; */
    position: relative;
}

/* Redesigned Student Success Stories - Premium Liquid Glass UI */

.testimonials-header-glass {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-header-glass h2 {
    color: var(--primary-blue);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-header-glass p {
    color: #64748b;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.8;
}

.testimonials-wrapper-glass {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 10px;
    background-color: #fffefc;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-wrapper-glass::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonials-slider-glass {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Card Design */

.testimonial-card-premium {
    min-width: 340px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 16, 85, 0.08);
    box-shadow: 0 15px 40px rgba(0, 16, 85, 0.04);
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
}

@media (hover: hover) {
    .testimonial-card-premium:hover {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 30px 70px rgba(0, 16, 85, 0.12);
        border-color: var(--primary-orange);
    }
}

.student-image-wrapper {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
    /* Beautiful slanted cut for modern look */
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
}

.student-img-new {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

@media (hover: hover) {
    .testimonial-card-premium:hover .student-img-new {
        transform: scale(1.04) rotate(1deg);
    }
}

/* Dynamic Play Pulse Overlay */

.play-pulse {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #929292bb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff7b00;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (hover: hover) {
    .testimonial-card-premium:hover .play-pulse {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.student-info-premium {
    padding: 30px 25px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 10%);
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.student-name-new {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.student-course-new {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 0, 145, 0.1);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge i {
    font-size: 1.1rem;
}

/* Card Glow Effect on Hover */

.card-footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right,
            transparent,
            var(--primary-orange),
            transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .testimonial-card-premium:hover .card-footer-glow {
        transform: scaleX(1);
    }
}

/* Updated Nav Controls */

.testimonials-nav-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px;
}

.nav-arrow-glass {
    width: 64px;
    height: 64px;
    /* border-radius: 20px; */
    background: #ffffff;
    border: 1px solid rgba(0, 16, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 16, 85, 0.05);
}

.nav-arrow-glass:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 16, 85, 0.2);
}

.nav-arrow-glass svg {
    transition: transform 0.3s ease;
}

.nav-prev-glass:hover svg {
    transform: translateX(-3px);
}

/* .nav-next-glass:hover svg {
    transform: translateX(3px);
} */

/* Key Achievements */

#faqs {
    background: #f1f5f9;
    padding: 30px 0;
}

.faq-header-main {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header-main h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 16, 85, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 16, 85, 0.1);
    transform: translateY(-2px);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.faq-item.open .faq-title {
    color: var(--primary-orange);
}

.faq-toggle-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.faq-item.open .faq-toggle-icon {
    background: var(--primary-blue);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease;
    opacity: 0;
}

.faq-item.open .faq-panel {
    max-height: 1000px;
    opacity: 1;
}

.faq-content {
    padding: 0 30px 30px;
}

.faq-content ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.faq-content ul li {
    position: relative;
    padding: 10px 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.faq-content ul li:last-child {
    border-bottom: none;
}

.faq-content ul li::before {
    content: "→";
    position: absolute;
    left: -25px;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Footer */

/* Footer Simplified */

.tmu-footer {
    background: #001055;
    color: #ffffff;
    padding: 40px 0 20px;
    position: relative;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-brand-side {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 280px;
}

.footer-logo-premium {
    max-height: 90px;
    /* filter: brightness(0) invert(1); */
}

.footer-uni-name-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-location-new {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.85rem;
}

.footer-info-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 280px;
}

.footer-badges-new {
    display: flex;
    gap: 20px;
}

.badge-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.badge-item-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
}

.badge-icon-new {
    font-size: 1.4rem;
    color: var(--primary-orange);
}

.badge-text-new {
    display: flex;
    flex-direction: column;
}

.badge-text-new span {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.badge-text-new strong {
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.contact-item span {
    color: #ffffff;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link i {
    color: #25d366 !important;
}

.footer-copyright-new {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright-new p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-side {
        flex-direction: column;
        text-align: center;
    }

    .footer-info-side {
        justify-content: center;
    }

    .footer-badges-new {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .badge-item-new {
        width: 100%;
        justify-content: center;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        padding: 5px 0;
    }

    .footer-copyright-new {
        flex-direction: column;
        text-align: center;
    }
}

/* USP Modal */

.usp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 16, 85, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.usp-modal-overlay.active {
    display: flex;
}

.usp-modal {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.usp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* Redesigned TMU Unique Strengths - Modern Orange UI */

.tmu-usp-section {
    border-top: 6px solid #f97316;
    padding: 20px 0px;
}

.tmu-section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 25px;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
    text-align: center;
    line-height: 1.1;
    font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
    .tmu-section-heading {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Light Orange USP Card */

.usp-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-top: 4px solid var(--primary-orange);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* min-height: 220px; */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--bg-card);
    border-top: 4px solid rgb(255, 156, 69);
    box-shadow: 0 10px 20px rgba(255, 121, 0, 0.15);
}

.usp-icon-wrapper {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
    color: #ea580c;
}

.usp-icon-wrapper i,
.usp-icon-wrapper img {
    font-size: 80px;
    line-height: 1;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.usp-card:hover .usp-icon-wrapper {
    /* opacity: 0.3; */
    transform: rotate(-15deg) scale(1.1);
}

.usp-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange) !important;
    /* Brand Dark Blue */
    line-height: 1.2;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 10;
    display: block;
    transition: color 0.3s ease;
}

.usp-card-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-orange), transparent);
    margin-top: 12px;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.usp-card:hover .usp-card-title {
    color: #ea580c !important;
}

.usp-card:hover .usp-card-title::after {
    width: 100px;
    background: linear-gradient(to right, #f97316, transparent);
}

/* Premium USP Modal Redesign */

.usp-modal-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(0, 16, 85, 0.8) 0%,
            rgba(0, 8, 45, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usp-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.usp-modal {
    background: #ffffff;
    width: 100%;
    max-width: 800px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.usp-modal-overlay.active .usp-modal {
    transform: translateY(0) scale(1);
}

.usp-modal-close {
    position: absolute;
    /* top: 25px;
    right: 25px; */
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid rgba(0, 16, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #001055;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.usp-modal-close:hover {
    background: #ff7900;
    transform: rotate(90deg) scale(1.1);
}

.usp-modal-header-accent {
    height: 12px;
    background: linear-gradient(to right, #001055, #ff7900);
    width: 100%;
}

.usp-modal-content-wrap {
    padding: 30px;
    flex: 1;
}

.usp-modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.usp-modal-icon {
    width: 70px;
    height: 70px;
    background: #fff7ed;
    border: 2px solid rgba(234, 88, 12, 0.1);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 42px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.1);
}

.usp-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usp-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #001055;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.usp-modal-body {
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.8;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Modal Body */

.usp-modal-body::-webkit-scrollbar {
    width: 6px;
}

.usp-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.usp-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.usp-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.usp-modal-body li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.usp-modal-body li::before {
    content: "•";
    color: #ff7900;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.usp-modal-footer {
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f1f5f9;
}

.usp-modal-btn {
    padding: 16px 40px;
    background: #001055;
    color: #fff;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 16, 85, 0.2);
}

.usp-modal-btn:hover {
    background: #ff7900;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 121, 0, 0.3);
}

@media (max-width: 768px) {
    .usp-modal-content-wrap {
        padding: 0px;
    }

    .usp-modal-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .usp-modal-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
    }

    .usp-modal-body {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .usp-modal-body p {
        margin-top: 10px;
    }

    .usp-modal-body ul {
        padding-left: 20px;
    }

    .usp-modal-body li {
        margin-bottom: 8px;
        padding-left: 15px;
    }

    .usp-card {
        padding: 12px;
    }

    .usp-card-title {
        font-size: 0.85rem;
        font-weight: 400;
    }
}

@media (max-width: 576px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .usp-icon-wrapper {
        width: 70px !important;
        height: 70px !important;
        right: -10px !important;
        bottom: -10px !important;
    }

    .usp-icon-wrapper img {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .usp-header h2 {
        font-size: 2.8rem;
    }

    .usp-icon-wrapper {
        width: 90px;
        height: 90px;
    }
}

/* Fix for blank space under footer */

.tmu-footer {
    margin-bottom: 0 !important;
    padding-bottom: 60px !important;
    /* Extra padding to ensure blue color extends down */
}

body,
html {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
}

/* TMU Unique Strengths Hover Icons */

.usp-card:nth-child(1):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-1.png");
}

.usp-card:nth-child(2):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-2.png");
}

.usp-card:nth-child(3):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-3.png");
}

.usp-card:nth-child(4):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-4.png");
}

.usp-card:nth-child(5):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-5.png");
}

.usp-card:nth-child(6):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-6.png");
}

.usp-card:nth-child(7):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-7.png");
}

.usp-card:nth-child(8):hover .usp-icon-wrapper img {
    content: url("http://tester.tmu.ac.in/images/o-8.png");
}

/* ============================================================
   CUSTOM OVERRIDES & EXTENDED STYLES
   ============================================================ */

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-main);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(30, 64, 175, 0.1);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 575.98px) {
    .preloader-logo {
        width: 80px;
    }

    .preloader-spinner {
        width: 40px;
        height: 40px;
    }
}

.glass-effect {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.glass-button {
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    color: #ffffff;
}

.glass-button:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
    color: #ffffff;
}

.form-control.glass-input,
.form-select.glass-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: var(--text-heading);
}

.form-control.glass-input::placeholder {
    color: #475569;
}

body {
    font-family: Inter, sans-serif;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--text-main);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    background-image: none;
    z-index: -1;
}

@media (max-width: 575.98px) {
    body::before {
        background-image: none;
    }
}

.form-control.glass-input:focus,
.form-select.glass-input:focus {
    background: #ffffff;
    outline: 0;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    color: var(--text-heading);
}

.form-select.glass-input option {
    background: #ffffff;
    color: var(--text-heading);
}

.fade-in-out {
    animation: fadeInOut 5s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-select.glass-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23334155' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

.blob-1 {
    background-color: rgba(30, 64, 175, 0.05);
}

.blob-2 {
    background-color: rgba(180, 83, 9, 0.05);
}

.blob-3 {
    background-color: rgba(30, 64, 175, 0.05);
}

.blob-4 {
    background-color: rgba(180, 83, 9, 0.05);
}

.form-toggle-button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-main);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-toggle-button.active {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.form-toggle-button:hover:not(.active) {
    background: rgba(30, 64, 175, 0.05);
    color: var(--primary-blue);
}

.animate-blob {
    animation: blob 20s ease-in-out infinite;
}

.blur-3xl {
    filter: blur(120px);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.btn.glass-button {
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn.glass-button:hover {
    box-shadow: 0 16px 40px #8b00f540;
}

.form-control.glass-input,
.form-select.glass-input {
    border-radius: 0.65rem;
}

.toggle-group {
    display: inline-flex;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    border-radius: 9999px;
    padding: 4px;
}

.toggle-group .form-toggle-button {
    background: 0 0;
    border: none;
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.toggle-group .form-toggle-button.active {
    background: #ffffff;
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tracking-widest {
    letter-spacing: 0.3em;
}

.form-margin {
    margin-top: 0;
}

.carousel-indicators {
    margin-left: 0px;
    margin-bottom: 0px;
}

#register-form-fields {
    min-height: auto;
}

#form-subtitle {
    min-height: 24px;
    margin: 12px !important;
    color: var(--text-main);
}

#form-title {
    min-height: 36px;
    margin-bottom: 4px !important;
    color: var(--text-heading);
}

#register-form-fields,
#login-form-fields {
    display: block;
    align-self: flex-start;
}

#register-form-fields .row.mt-1,
#register-form-fields .mt-3 {
    margin-top: 0.5rem !important;
}

.banner-hero .row {
    align-items: flex-start !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .glass-effect.mx-4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse,
    .navbar-nav {
        display: none !important;
    }

    .call-pill {
        display: inline-flex !important;
    }

    .glass-effect {
        padding: 0.9rem !important;
    }

    .form-control.glass-input,
    .form-select.glass-input {
        padding: 0.5rem 0.6rem;
        font-size: 0.95rem;
    }

    .toggle-group {
        transform: scale(0.95);
    }
}

/* ============================================================
   AWARDS SECTION — Brand-Matched Solid Redesign
   ============================================================ */

.awards-section {
    padding: clamp(1.5rem, 3vh, 1.5rem);
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ── Section Header ────────────────────────────────────────── */

.awards-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.awards-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Orange underline accent below title */

.awards-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), #fb923c);
    border-radius: 9999px;
    margin: 0.5rem auto 0;
}

.awards-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-main);
    margin-bottom: 0;
    opacity: 0.8;
}

/* ── Main Card Container ──────────────────────────────────── */

.awards-main-card {
    background: #ffffff;
    border: 1.5px solid rgba(249, 115, 22, 0.15);
    border-radius: 1.5rem;
    box-shadow:
        inset 0 3px 0 0 #f97316,
        0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2.5rem;
    position: relative;
}

/* ── Two-Panel Layout ─────────────────────────────────────── */

.awards-content-wrapper {
    position: relative;
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    min-height: 380px;
}

/* ── Eyebrow Badge ─────────────────────────────────────────── */

.award-eyebrow {
    margin-bottom: 1rem;
}

.award-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    padding: 0.3rem 1rem;
}

.award-eyebrow-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-orange);
}

/* ── Mobile Award Image ────────────────────────────────────── */

.mobile-award-image-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.mobile-award-image {
    max-width: 320px;
    max-height: 300px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease;
    object-fit: contain;
}

.mobile-award-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ── Award Lightbox ────────────────────────────────────────── */

.award-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
}

.award-lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.award-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.award-lightbox-close:hover {
    color: #ff6b6b;
}

.award-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.award-lightbox-info {
    color: #fff;
    text-align: center;
}

.award-lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.award-lightbox-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Description Panel (Left Side) ─────────────────────────── */

.award-description-panel {
    flex: 1;
    min-height: 420px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease;
}

/* Orange left border accent */

.award-description-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f97316, #fb923c);
    border-radius: 4px 0 0 4px;
}

/* ── Award Header ──────────────────────────────────────────── */

.award-header h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
    font-weight: 500;
    opacity: 0.7;
}

.award-header h2 {
    font-size: 2.2rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-top: 0.25rem !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* ── Active Award Details ──────────────────────────────────── */

.active-award-details {
    flex-grow: 1;
    margin-bottom: 0;
}

.active-award-details .award-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-description {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease-in-out 0.1s;
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-meta {
    color: #64748b;
    font-size: 0.9rem;
    transition: all 0.4s ease-in-out 0.2s;
    transform: translateY(0);
    opacity: 1;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    /* Force items to stay on the same row */
    align-items: flex-start !important;
    /* Align to top if text wraps */
    gap: 1.5rem;
    margin-top: auto;
}

.award-meta-item {
    display: inline-flex !important;
    align-items: flex-start;
    /* Align icon with the first line of text */
    gap: 6px;
    line-height: 1.4;
}

.award-meta-item:first-child {
    flex-shrink: 0;
}

.award-meta-item svg {
    width: 15px;
    height: 15px;
    stroke: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
    /* Center with the first line of text */
}

.active-award-details .award-meta strong {
    color: #1e293b;
    margin-right: 4px;
}

/* ── Navigation Buttons (Unified Theme) ────────────────────── */

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-orange, #f97316);
    color: var(--primary-orange, #f97316);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

.nav-btn:hover {
    background: var(--primary-orange, #f97316);
    color: #ffffff;
    border-color: var(--primary-orange, #f97316);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.nav-btn svg path {
    stroke-width: 2.5px;
}

/* ── Awards Display Panel (Right Side) ─────────────────────── */

.awards-display-panel {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ── Awards Carousel ───────────────────────────────────────── */

.awards-carousel {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    will-change: transform;
    cursor: grab;
}

.awards-carousel.grabbing {
    cursor: grabbing;
}

/* ── Award Item (Carousel Cards) ───────────────────────────── */

.awards-carousel .award-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 100%;
    transform: translate(-50%, -50%) translateZ(-400px) scale(0.5);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform-origin: 50% 50%;
    border-radius: 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.awards-carousel .award-item.position-center {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    background: #ffffff;
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow:
        0 12px 32px rgba(249, 115, 22, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.awards-carousel .award-item.position-left {
    transform: translate(-100%, -50%) translateZ(-120px) rotateY(20deg) scale(0.88);
    opacity: 0.6;
    pointer-events: auto;
    z-index: 2;
    cursor: pointer;
}

.awards-carousel .award-item.position-right {
    transform: translate(0%, -50%) translateZ(-120px) rotateY(-20deg) scale(0.88);
    opacity: 0.6;
    pointer-events: auto;
    z-index: 2;
    cursor: pointer;
}

/* ── Award Icon (Image) ────────────────────────────────────── */

.awards-carousel .award-icon {
    width: 100%;
    height: 82%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0.5rem;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.awards-carousel .award-item.position-center .award-icon {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(249, 115, 22, 0.15));
}

/* ── Award Title (Carousel) ────────────────────────────────── */

.awards-carousel .award-item .award-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
    transition: all 0.5s ease;
}

/* ── Carousel Controls ─────────────────────────────────────── */

.carousel-controls-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    /* padding-top: 1.5rem; */
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
}

/* ── Indicators (Progress Dots) ────────────────────────────── */

.carousel-indicators {
    position: static !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 !important;
}

.indicator {
    width: 20px;
    height: 5px;
    border-radius: 10px;
    background: rgba(0, 16, 85, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator.active {
    width: 56px;
    background: rgba(249, 115, 22, 0.15);
}

.indicator.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #f97316;
    width: 0%;
    border-radius: 10px;
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.indicator:hover {
    background: rgba(249, 115, 22, 0.3);
}

/* ============================================================
   AWARDS — Responsive Breakpoints
   ============================================================ */

@media (max-width: 991px) {
    .awards-main-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .awards-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }

    .awards-main-card {
        padding: 1.5rem 1.25rem;
    }

    .award-description-panel {
        min-height: auto;
        padding: 1.5rem 1.5rem 1.5rem 1.8rem;
    }

    .award-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .awards-carousel {
        height: 320px;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .awards-main-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }

    .awards-content-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .mobile-award-image-container {
        display: flex;
        order: 1;
        margin-bottom: 1rem;
    }

    .award-description-panel {
        order: 2;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 1rem;
        padding: 1.5rem 1.25rem 1.5rem 1.5rem;
        min-height: 340px;
    }

    .awards-display-panel {
        display: none;
    }

    .carousel-controls-container {
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .award-eyebrow {
        margin-bottom: 0.75rem;
    }

    .award-header {
        text-align: center;
        margin-bottom: 1rem;
    }

    .award-header h3 {
        font-size: 0.9rem;
    }

    .award-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .active-award-details {
        text-align: left !important;
    }

    .active-award-details .award-title {
        font-size: 1.2rem;
    }

    .active-award-details .award-description {
        font-size: 0.9rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .award-meta-item {
        text-align: left !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .award-description-panel::before {
        width: 100%;
        height: 3px;
        left: 0;
        top: 0;
        border-radius: 1rem 1rem 0 0;
    }
}

@media (max-width: 480px) {
    .awards-main-card {
        padding: 1rem 0.75rem;
    }

    .award-description-panel {
        padding: 1.25rem 1rem 1.25rem 1.25rem;
        min-height: 320px;
    }

    .award-header h2 {
        font-size: 1.4rem;
    }

    .active-award-details .award-title {
        font-size: 1.1rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        font-size: 0.85rem;
        text-align: left;
    }
}

.award-lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.award-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.award-lightbox-close:hover {
    color: #ff6b6b;
}

.award-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.award-lightbox-info {
    color: #fff;
    text-align: center;
}

.award-lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.award-lightbox-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.award-description-panel {
    flex: 1;
    min-height: 380px;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow:
        inset 0 6px 0 0 #f97316,
        0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease;
}

/* .award-description-panel:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
} */

.award-description-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f97316;
    border-radius: 1.5rem 1.5rem 0 0;
}

.award-header h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.award-header h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.active-award-details {
    flex-grow: 1;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
}

.active-award-details .award-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.8rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-description {
    color: var(--text-main);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease-in-out 0.1s;
    transform: translateY(0);
    opacity: 1;
}

.active-award-details .award-meta {
    color: #64748b;
    font-size: 0.95rem;
    transition: all 0.4s ease-in-out 0.2s;
    transform: translateY(0);
    opacity: 1;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.active-award-details .award-meta strong {
    color: #1e293b;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Redundant nav-btn styles removed for unified theme */

.awards-display-panel {
    flex: 1;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.awards-display-panel::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* filter: blur(30px); */
}

.awards-carousel {
    position: relative;
    width: 100%;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.awards-carousel .award-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 100%;
    transform: translate(-50%, -50%) translateZ(-500px) scale(0.5);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform-origin: 50% 50%;
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.awards-carousel .award-item.position-center {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.awards-carousel .award-item.position-left {
    transform: translate(-100%, -50%) translateZ(-150px) rotateY(25deg) scale(0.85);
    opacity: 0.7;
    pointer-events: auto;
    z-index: 2;
    cursor: pointer;
}

.awards-carousel .award-item.position-right {
    transform: translate(0%, -50%) translateZ(-150px) rotateY(-25deg) scale(0.85);
    opacity: 0.7;
    pointer-events: auto;
    z-index: 2;
    cursor: pointer;
}

.awards-carousel .award-icon {
    width: 100%;
    height: 82%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0.5rem;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.awards-carousel .award-item.position-center .award-icon {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 15px 25px rgba(249, 115, 22, 0.2));
}

.awards-carousel .award-item .award-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.2px;
    transition: all 0.6s ease;
}

.awards-carousel .award-item .award-year {
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    line-height: 1.2;
    transition: all 0.6s ease;
}

.award-item {
    flex: 0 0 180px;
    height: 260px;
    background: 0 0;
    border-radius: 1.2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.95, -0.09, 0.12, 1.21);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.85);
    filter: blur(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-item.active {
    background: 0 0;
    transform: scale(1.2) translateY(-10px);
    opacity: 1;
    flex: 0 0 220px;
    height: 400px;
    z-index: 1001;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.award-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.award-item:hover::before {
    transform: translateX(100%);
}

.award-item:hover {
    transform: translateY(-4px);
    opacity: 0.95;
    filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.4));
}

.award-item:hover .award-icon {
    transform: none;
    box-shadow: none;
}

.award-icon {
    width: 400px;
    height: 400px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease-in-out;
}

.award-item .award-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.award-item .award-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.award-item .award-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.award-item .award-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: auto;
}

.award-details {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.award-category .badge {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 2rem;
}

.award-details .award-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.award-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.award-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.award-meta .award-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f97316;
}

.award-organization {
    font-size: 0.9rem;
    color: #64748b;
}

.carousel-controls-container {
    position: relative;
    /* margin-top: clamp(2.5rem, 5vh, 4rem); */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    width: 100%;
}

.carousel-indicators {
    position: static !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 !important;
}

.indicator {
    width: 20px;
    height: 6px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator.active {
    width: 60px;
    background: rgba(249, 115, 22, 0.2);
}

.indicator.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #f97316;
    width: 0%;
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.indicator:hover {
    background: rgba(249, 115, 22, 0.4);
}

.awards-carousel {
    will-change: transform;
    cursor: grab;
}

.awards-carousel.grabbing {
    cursor: grabbing;
}

@media (max-width: 991.98px) {
    .awards-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .awards-carousel {
        height: 350px;
    }

    .award-description-panel {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        min-height: 420px;
        height: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .award-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .active-award-details .award-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .award-item {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .awards-content-wrapper {
        flex-direction: column;
        gap: 0;
        min-height: auto;
        padding: 1.5rem 0.8rem;
    }

    .mobile-award-image-container {
        display: flex;
        order: 1;
        margin-bottom: 1.5rem;
    }

    .mobile-award-image {
        max-width: 320px;
        height: 280px;
        width: 100%;
        object-fit: contain;
    }

    .award-description-panel {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.5rem;
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        order: 2;
        height: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .awards-display-panel {
        display: none;
    }

    .carousel-controls-container {
        position: static;
        order: 3;
        transform: none;
        margin-top: 1.5rem;
    }

    .awards-carousel {
        height: auto;
        gap: 1rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }

    .award-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .award-header h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .award-header h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .active-award-details {
        text-align: left !important;
        margin-bottom: 1.5rem;
    }

    .active-award-details .award-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .active-award-details .award-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .award-meta-item {
        text-align: left !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .carousel-navigation {
        justify-content: center;
        margin-top: 1rem;
    }

    .award-item {
        flex: 0 0 140px;
        height: 200px;
        padding: 1rem;
        border-radius: 18px;
        transform: scale(1);
        margin: 0.5rem;
    }

    .award-item.active {
        flex: 0 0 160px;
        height: 220px;
        transform: scale(1.1) translateY(-8px);
    }

    .award-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .awards-carousel .award-item .award-title {
        font-size: 0.98rem;
        margin-top: 0.8rem;
    }

    .awards-carousel .award-item .award-year {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 576px) {
    .awards-content-wrapper {
        gap: 2rem;
        padding: 1.5rem 0.8rem;
    }

    .awards-carousel {
        gap: 1rem;
        padding: 0;
        justify-content: flex-start;
    }

    .award-description-panel {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .award-header h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .active-award-details .award-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .award-item {
        flex: 0 0 140px;
        height: 200px;
        padding: 1rem;
        border-radius: 18px;
        transform: scale(1);
    }

    .award-item.active {
        flex: 0 0 180px;
        height: 250px;
        transform: scale(1.12) translateY(-12px);
    }

    .award-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .awards-carousel .award-item .award-title {
        font-size: 0.98rem;
        margin-top: 0.8rem;
    }

    .awards-carousel .award-item .award-year {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .awards-content-wrapper {
        padding: 0rem 0.5rem;
        gap: 0;
    }

    .mobile-award-image-container {
        display: flex;
        order: 1;
        padding: 0.2rem;
        margin-bottom: 1.2rem;
    }

    .mobile-award-image {
        max-width: 320px;
        max-height: 280px;
        width: 100%;
        object-fit: contain;
    }

    .award-description-panel {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.2rem;
        padding: 1.8rem 1.2rem;
        margin-bottom: 0;
        order: 2;
        min-height: 380px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .awards-display-panel {
        display: none;
    }

    .carousel-controls-container {
        position: static;
        order: 3;
        transform: none;
        margin-top: 1rem;
    }

    .awards-carousel {
        height: auto;
        gap: 0.8rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
    }

    .award-header {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .award-header h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .award-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .active-award-details {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .active-award-details .award-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .active-award-details .award-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.8rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .award-meta-item {
        text-align: left !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .carousel-navigation {
        justify-content: center;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
    }

    .award-item {
        flex: 0 0 130px;
        height: 185px;
        padding: 0.9rem;
        border-radius: 16px;
        transform: scale(1);
        margin: 0.4rem;
    }

    .award-item.active {
        flex: 0 0 150px;
        height: 200px;
        transform: scale(1.05) translateY(-6px);
    }

    .award-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .awards-carousel .award-item .award-title {
        font-size: 0.9rem;
        margin-top: 0.7rem;
    }

    .awards-carousel .award-item .award-year {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
}

/* ============================================================
   RECRUITERS SECTION — Brand-Matched Redesign
   ============================================================ */

.recruiters-section {
    padding: 4rem 1rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.recruiters-section::before {
    display: none;
}

/* ── Section Header ────────────────────────────────────────── */

.recruiters-header {
    position: relative;
    z-index: 1;
}

.recruiters-eyebrow {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    padding: 0.3rem 1rem;
    margin-bottom: 0.75rem;
}

.recruiters-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Orange underline accent below title */

.recruiters-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), #fb923c);
    border-radius: 9999px;
    margin: 0.5rem auto 0;
}

.recruiters-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-main);
    margin-bottom: 0;
    opacity: 0.8;
}

/* ── Scroller Wrapper ──────────────────────────────────────── */

.recruiters-glass {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    background: #ffffff;
    border: 1.5px solid rgba(249, 115, 22, 0.15);
    box-shadow:
        inset 0 6px 0 0 #f97316,
        0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 0.5rem 0;
}

.recruiters-glass::after,
.recruiters-glass::before {
    display: none;
}

/* ── Scroller ──────────────────────────────────────────────── */

.recruiters-scroller {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    z-index: 1;
}

/* Fade masks — warm background colour matches the section */

.recruiters-scroller::before,
.recruiters-scroller::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.recruiters-scroller::before {
    left: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.recruiters-scroller::after {
    right: 0;
    background: linear-gradient(270deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0) 100%);
}

/* ── Track ─────────────────────────────────────────────────── */

.recruiters-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: recruiters-scroll 30s linear infinite;
    will-change: transform;
}

.recruiters-scroller:focus-within .recruiters-track,
.recruiters-scroller:hover .recruiters-track {
    animation-play-state: paused;
}

/* ── Individual Logo Card ──────────────────────────────────── */

.recruiter-card {
    position: relative;
    width: 140px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

/* Subtle top sheen */

.recruiter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.6) 0%,
            transparent 100%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
    z-index: 0;
}

.recruiter-card img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    max-width: 85%;
    max-height: 70%;
    filter: grayscale(20%) contrast(1.05);
    transition:
        filter 0.3s ease,
        transform 0.3s ease;
}

/* Hover — brand orange glow */

.recruiter-card:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow:
        0 12px 32px rgba(249, 115, 22, 0.18),
        0 4px 12px rgba(249, 115, 22, 0.1);
}

.recruiter-card:hover img {
    filter: grayscale(0%) contrast(1.08) saturate(1.1);
    transform: scale(1.05);
}

/* ── Keyframe ──────────────────────────────────────────────── */

@keyframes recruiters-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Mobile ────────────────────────────────────────────────── */

@media (max-width: 575.98px) {
    .recruiters-section {
        padding: 3rem 0.75rem;
    }

    .recruiter-card {
        width: 100px;
        height: 60px;
        border-radius: 10px;
        padding: 4px;
    }

    .recruiters-track {
        gap: 14px;
        animation-duration: 22s;
    }

    .recruiters-scroller::before,
    .recruiters-scroller::after {
        width: 60px;
    }
}

.call-pill {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.35rem 0.6rem;
    border-radius: 9999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.call-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

#campus-trail {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.campus-trail-glass {
    position: relative;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.campus-trail-glass::after,
.campus-trail-glass::before {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background:
        radial-gradient(40% 40% at 20% 50%,
            rgba(249, 115, 22, 0.15),
            transparent 60%),
        radial-gradient(35% 35% at 80% 50%,
            rgba(249, 115, 22, 0.1),
            transparent 60%);
    filter: blur(22px);
    z-index: 0;
}

.campus-trail-glass::after {
    background: radial-gradient(35% 35% at 15% 30%,
            rgba(249, 115, 22, 0.1),
            transparent 60%);
    transform: rotate(8deg);
}

.trail-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 500px;
}

.trail-map-container {
    position: relative;
    width: auto;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trail-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.trail-tracker {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10;
    transition: all 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tracker-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, gold, #ffed4e);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.tracker-pulse {
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.trail-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.trail-header {
    margin-bottom: 1.5rem;
}

.trail-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trail-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, gold, #ffed4e);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 50px;
}

.trail-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.building-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.building-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    opacity: 1;
}

.building-image:hover {
    transform: scale(1.05);
}

.college-name {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
}

.college-name h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: none;
}

.trail-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trail-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trail-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.trail-nav-btn:active {
    transform: translateY(0);
}

.trail-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.trail-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.poi-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.poi-marker:hover {
    transform: scale(1.2);
}

.poi-marker.active {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

@media (max-width: 991.98px) {
    .trail-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trail-map-container {
        height: 300px;
    }

    .trail-panel {
        height: auto;
        min-height: 300px;
    }

    .trail-title {
        font-size: 1.25rem;
    }

    .poi-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    #campus-trail {
        padding: 2rem 1rem;
    }

    .campus-trail-glass {
        padding: 1.5rem !important;
    }

    .trail-container {
        gap: 1rem;
    }

    .trail-map-container {
        height: 250px;
    }

    .trail-panel {
        padding: 1rem;
    }
}

.testimonials-section-glass {
    padding: 60px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.testimonials-section-glass::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(93, 7, 255, 0.25);
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    left: -50px;
    z-index: -1;
    animation: blob 20s ease-in-out infinite;
}

.testimonials-section-glass::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(93, 7, 255, 0.25);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -50px;
    right: -50px;
    z-index: -1;
    animation: blob 20s ease-in-out infinite;
    animation-delay: 2s;
}

.glass-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 20px; */
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

.banner-carousel {
    position: relative;
}

/* Banner Carousel Nav Buttons — Light / Orange Theme */

/* Unified Navigation Theme applied to Testimonials */

.nav-arrow-glass {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid var(--primary-orange, #f97316) !important;
    color: var(--primary-orange, #f97316) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
    padding: 0 !important;
}

.nav-arrow-glass:hover {
    background: var(--primary-orange, #f97316) !important;
    color: #ffffff !important;
    border-color: var(--primary-orange, #f97316) !important;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3) !important;
    transform: scale(1.1) !important;
}

.nav-arrow-glass svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
}

.nav-arrow-glass svg path {
    stroke-width: 2.5px !important;
}

/* Base theme already set for .bc-nav below */

.banner-carousel .bc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-orange, #f97316);
    color: var(--primary-orange, #f97316);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.banner-carousel .bc-prev {
    left: 10px;
}

.banner-carousel .bc-next {
    right: 10px;
}

.banner-carousel .bc-nav:hover {
    background: var(--primary-orange, #f97316);
    color: #fff;
    border-color: var(--primary-orange, #f97316);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
}

.banner-carousel .bc-nav i {
    font-size: 20px;
    line-height: 1;
}

/* Progress bar dots */

.bc-progress-wrap {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
    align-items: center;
}

.bc-dot {
    position: relative;
    width: 2rem;
    height: 5px;
    /* border-radius: 9999px; */
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition:
        width 0.3s ease,
        background 0.3s ease;
    border: none;
    padding: 0;
}

.bc-dot.is-active {
    background: rgba(249, 115, 22, 0.25);
    width: 3rem;
    border-radius: 9999px;
}

.bc-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-orange, #f97316);
    border-radius: 9999px;
    width: 0%;
    transition: width 0.1s linear;
}

.bc-dot.is-active::after {
    animation: bcDotFill var(--bc-interval, 5s) linear forwards;
}

@keyframes bcDotFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 1600px;
    overflow: hidden;
}

.bc-track {
    display: flex;
    width: 100%;
    transition: transform 500ms ease;
    will-change: transform;
}

.bc-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.bc-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Konsolidated with unified bc-nav styles at line 2345 */

.bc-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-80%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.bc-dot {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-dot.is-active {
    background: rgb(0 16 85 / 0.15);
    transform: scale(1.2);
}

.banner-hero .image-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-hero .image-scroll-track {
    display: flex;
    width: 200%;
    will-change: transform;
}

.banner-hero .image-scroll-track img {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    image-rendering: auto;
}

/* Base Body Styles */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
    /* Base for rem units */
}

body::before {
    background-image: none !important;
    background-color: #f7f7f794 !important;
}

/* Background Grid Layer */

.bg-grid-layer {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: clamp(3rem, 10vw, 5rem) clamp(3rem, 10vw, 5rem);
    pointer-events: none;
}

/* Floating Orbs Styles - REDESIGNED for high visibility and JS animation */

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    filter: blur(max(4rem, 6vw));
    opacity: 0.5;
    /* Significantly increased visibility as requested */
    mix-blend-mode: multiply;
    will-change: transform;
    border-radius: 50%;
}

.orb-1 {
    width: clamp(25rem, 45vw, 45rem);
    height: clamp(25rem, 45vw, 45rem);
    background: radial-gradient(circle,
            var(--primary-orange) 0%,
            transparent 70%);
    top: 10%;
    right: 15%;
}

.orb-2 {
    width: clamp(20rem, 35vw, 35rem);
    height: clamp(20rem, 35vw, 35rem);
    background: radial-gradient(circle,
            var(--primary-blue) 0%,
            transparent 70%);
    bottom: 20%;
    left: 10%;
}

.orb-3 {
    width: clamp(15rem, 30vw, 30rem);
    height: clamp(15rem, 30vw, 30rem);
    background: radial-gradient(circle,
            var(--primary-orange) 0%,
            transparent 70%);
    top: 50%;
    left: 40%;
}

/* Hero Header (Scrolls with Hero - Non-Sticky) */

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: clamp(1rem, 2.5vh, 1.8rem) clamp(1rem, 4vw, 3rem);
    pointer-events: none;
}

/* Legacy: keep .header-top-bar for any remaining references */

.header-top-bar {
    display: none;
}

.tmu-logo {
    height: clamp(5rem,
            12vh,
            9rem);
    /* Slightly smaller to save vertical space */
    width: auto;
    pointer-events: auto;
    filter: drop-shadow(0 0.25rem 0.8rem rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.tmu-logo:hover {
    transform: scale(1.05);
}

/* ── Inline Navigation ─────────────────────────────────────────────────── */

.hero-inline-nav {
    display: flex;
    align-items: center;
    pointer-events: auto;
    align-self: flex-start;
    margin-top: 0.5rem;
    /* Premium Glassmorphic Capsule */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-nav-link {
    font-family: "Outfit", sans-serif;
    color: var(--primary-blue);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02rem;
    padding: 0.55rem 1.2rem;
    position: relative;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Remove old underline */

.hero-nav-link::after {
    display: none;
}

.hero-nav-link:hover {
    color: white !important;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

/* Hero Section Layout */

.banner-hero {
    background-color: #f8fafc !important;
    background-image: none !important;
    height: 100svh !important;
    /* Locked — neon divider always sits at viewport bottom */
    min-height: 600px !important;
    /* Safety floor for very small screens */
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    /* Clip horizontal bleed; divider is inside so NOT clipped */
    z-index: 1;
}

/* Hero main content — centers row between header bottom and viewport bottom.
   padding-top = header clearance: logo(clamp(4.5rem,9vh,7rem)) + 2×pad(clamp(1rem,2.5vh,1.8rem))
   At min: 4.5+2 = 6.5rem. We use clamp(7rem, 14vh, 10rem) for safe clearance + breathing room. */

.hero-main-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    /* Pull content toward the top, leaving room at bottom for divider */
    justify-content: center;
    width: 100%;
    /* Top: clear the logo header. Bottom: leave space so content doesn't crowd the neon divider */
    padding: clamp(6rem, 11vh, 8rem) clamp(1rem, 3vw, 3rem) clamp(3rem, 5vh, 4rem);
    position: relative;
    z-index: 5;
}

/* Optimization for short viewports */

@media (max-height: 800px) {
    .hero-main-content {
        padding-top: clamp(5rem, 10vh, 7rem);
    }

    .glass-effect.p-3 {
        padding: 1rem !important;
    }

    #form-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .toggle-group {
        margin-bottom: 0.75rem !important;
    }
}

@media (max-height: 720px) {
    .glass-effect {
        max-height: 75vh;
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .hero-main-content {
        padding-top: 4.5rem;
    }
}

/* b-4 specific fix — prevent collision with logo */

.bc-slide--b4 img {
    object-position: center 15% !important;
}

/* Progress Dots visibility upgrade for light bright backgrounds */

.bc-dot {
    background: rgba(15, 23, 42, 0.25) !important;
}

/* USP Number Smooth Change Animation */

@keyframes numberSlide {
    0% {
        opacity: 0.6;
        transform: translateY(-8px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.number-change-anim {
    display: inline-block;
    animation: numberSlide 0.08s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* ── Unified USP Bar Styling ── */

#usp-unified-section {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.3s ease-out,
        transform 0.3s ease-out;
}

#usp-unified-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.usp-unified-bar {
    border-radius: 1.5rem;
    max-width: 1200px;
    font-family: "Outfit", sans-serif;
    background: #ffffff;
    border: 1.5px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.usp-orange-svg {
    stroke: #f97316;
}

.text-orange {
    color: #f97316 !important;
}

.usp-unified-bar svg {
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
}

@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding-left: 1.5rem;
    }
}

/* Banner art column — no downward margin; padding-bottom only on desktop */

.banner-art {
    margin-top: 0;
}

@media (min-width: 992px) {
    .banner-art {
        padding-bottom: clamp(1rem, 2vh, 2rem);
    }
}

/* Bottom glow — removed for solid design */

.banner-hero::after {
    display: none !important;
}

/* Neon Divider (Orange) */

.neon-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px !important;
    z-index: 10 !important;
    background: linear-gradient(to right,
            transparent 0%,
            var(--primary-orange) 20%,
            #ffe7d1 50%,
            var(--primary-orange) 80%,
            transparent 100%) !important;
    box-shadow:
        0 0 20px var(--primary-orange),
        0 0 40px rgba(249, 115, 22, 0.4) !important;
}

/* Firefly Particles (Orange) */

.neon-divider__particles {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--divider-band-height);
    pointer-events: none;
    z-index: 5;
}

.neon-firefly {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--firefly-orange) !important;
    box-shadow:
        0 0 10px var(--firefly-orange),
        0 0 16px rgba(249, 115, 22, 0.5) !important;
    opacity: 0.8;
}

/* Lead Form Shortening & Fluid Responsibility */

.glass-effect {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 0.06rem solid rgba(0, 0, 0, 0.05) !important;
    padding: clamp(0.75rem, 2.5vw, 1.25rem) !important;
    border-radius: 1.5rem !important;
    /* box-shadow NOT set here — defined in the FORM REDESIGN block below
       using inset technique for the orange top bar */
}

#register-form-fields {
    min-height: auto !important;
}

.form-control.glass-input,
.form-select.glass-input {
    padding: 0.5rem 0.8rem !important;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem) !important;
    margin-bottom: 0.3rem !important;
}

#form-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem) !important;
    margin-bottom: 1rem !important;
}

@media (min-width: 575.98px) {
    /* REMOVE Image Tint Filter */

    .bc-slide img {
        margin-top: 50px;
    }
}

/* Mobile Adjustments */

@media (max-width: 991.98px) {
    .hero-header {
        padding: 0.8rem 1rem;
    }

    .tmu-logo {
        height: clamp(7rem, 16vh, 10rem);
        pointer-events: auto;
    }

    .banner-hero {
        /* Mobile: allow hero to grow naturally so form is visible below carousel */
        height: auto !important;
        min-height: 100svh !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .hero-main-content {
        /* Increased top padding to clear the logo */
        padding: 10.5rem 0 clamp(1rem, 3vh, 2.5rem) !important;
    }

    .hero-main-content>.row {
        flex-direction: column-reverse !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .col-lg-7 {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .form-margin {
        margin-top: 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .glass-effect {
        /* Centered form with controlled width for tablets */
        margin: 0 auto !important;
        width: 92% !important;
        max-width: 550px !important;
        padding: 1.2rem !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    /* Progress dots smaller on mobile */
    .bc-progress-wrap {
        bottom: 0.5rem;
    }

    .bc-dot {
        width: 1.8rem;
    }

    .bc-dot.is-active {
        width: 2.5rem;
    }
}

/* Responsive Hero Background — solid, no gradients */

@media (max-width: 991.98px) {
    .banner-hero {
        background-image: none !important;
        background-color: #f8fafc !important;
    }
}

/* ============================================================
   Form Switch Animations — Height-Animated Wrapper
   ============================================================ */

/* The wrapper clips the height transition so nothing overflows */

.form-panels-wrapper {
    transition: height 0.3s ease;
    /* height is set dynamically by JS */
}

/* Both panels use block layout — JS controls display/opacity */

#register-form-fields,
#login-form-fields {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* Smooth title/subtitle text crossfade */

#form-title,
#form-subtitle {
    transition: opacity 0.18s ease;
}

/* ============================================================
   Z-Index Layering: background effects behind form & content
   ============================================================ */

/* Hero background glow — deepest layer */

.banner-hero::after {
    z-index: 0 !important;
}

/* Orbs sit behind everything */

.bg-orbs {
    z-index: 0;
}

/* Neon divider line — visible but non-interactive, below form */

.neon-divider {
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Firefly particles — below form and content */

.neon-divider__particles {
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Hero background image — moved to banner-hero to be behind all other layers */

.banner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    /* opacity: 0.2;
    filter: blur(2px); */
    pointer-events: none;
}

/* Hero content sits above all background effects */

.hero-main-content {
    position: relative;
    z-index: 5;
}

/* Form card above the hero row content */

.glass-effect {
    position: relative;
    z-index: 6;
}

/* Banner art / carousel stays at same level as rest of content */

.banner-art {
    position: relative;
    z-index: 5;
}

/* ============================================================
   Hero Row & Column Layout — DESKTOP ONLY (992px+)
   These rules only apply when banner art and form sit side by side.
   On mobile the columns stack vertically, so none of this applies.
   ============================================================ */

@media (min-width: 992px) {

    /* Row: center both columns in the available vertical space */
    .hero-main-content .row {
        align-items: center !important;
        height: 100%;
    }

    /* Banner art column — top-aligned so dots have room below */
    .col-lg-7 {
        align-self: flex-start;
        padding-top: clamp(0.5rem, 1vh, 1rem);
    }

    /* Form column — slight offset from top on standard desktops */
    .col-lg-5.form-margin {
        align-self: flex-start;
        margin-top: 5rem;
    }
}

/* Large screens (≥1450px) — form centers vertically in the hero */
@media (min-width: 1450px) {
    .col-lg-5.form-margin {
        align-self: center;
        /* Uses row's align-items: center; height: 100% */
        margin-top: 0;
        /* No fixed offset — pure flexbox centering */
    }
}

/* ============================================================
   FORM REDESIGN — Orange / Blue Brand Theme
   ============================================================ */

/* ── Card ──────────────────────────────────────────────────── */

.glass-effect {
    background: #ffffff !important;
    border: 1.5px solid rgba(249, 115, 22, 0.2) !important;
    border-radius: 1.5rem !important;
    box-shadow:
        inset 0 8px 0 0 #f97316,
        0 8px 32px rgba(0, 0, 0, 0.08) !important;
    position: relative;
    z-index: 6;
    max-width: 650px;
    margin-inline: auto !important;
}

/* ::before and .form-accent-bar are NOT used.
   The orange top bar is painted via inset box-shadow on .glass-effect above. */

.glass-effect::before {
    display: none;
}

.form-accent-bar {
    display: none;
    /* Removed in favour of inset box-shadow */
}

.separate-contact-items a,
.separate-contact-items span {
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.csel__trigger:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

/* Custom Select Trigger — the visible "box" that replaces the native select */

.csel {
    position: relative;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

.csel__trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.65rem;
    cursor: pointer;
    user-select: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    min-height: 38px;
    /* Match glass-input height */
}

.csel__trigger:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(255, 247, 237, 0.6);
}

.csel.is-open .csel__trigger {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
    border-radius: 0.65rem 0.65rem 0 0;
    border-bottom-color: transparent;
    background: #fff7ed;
}

/* Label text — grey when placeholder, dark when selected */

.csel__label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: inherit;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.csel__label--selected {
    color: #1e293b;
    font-weight: 500;
}

/* Chevron arrow */

.csel__arrow {
    width: 14px;
    height: 14px;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.csel.is-open .csel__arrow {
    transform: rotate(180deg);
}

/* Dropdown list */

.csel__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.3rem 0;
    background: #ffffff;
    border: 1.5px solid var(--primary-orange);
    border-top: none;
    border-radius: 0 0 0.65rem 0.65rem;
    box-shadow:
        0 8px 24px rgba(249, 115, 22, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    /* High enough to always overlay sibling elements */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.22s ease;
}

.csel.is-open .csel__list {
    max-height: 16rem;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

/* Scrollbar styling for the list */

.csel__list::-webkit-scrollbar {
    width: 4px;
}

.csel__list::-webkit-scrollbar-track {
    background: transparent;
}

.csel__list::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.3);
    border-radius: 2px;
}

/* Individual options */

.csel__option {
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: #1e293b;
    font-size: inherit;
    font-weight: 400;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        padding-left 0.15s ease;
    position: relative;
}

.csel__option::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: var(--primary-orange);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform 0.15s ease;
}

.csel__option:hover {
    background: rgba(249, 115, 22, 0.06);
    color: var(--primary-orange);
    padding-left: 1.3rem;
}

.csel__option:hover::before {
    transform: scaleY(1);
}

.csel__option.is-selected {
    background: rgba(249, 115, 22, 0.08);
    color: var(--primary-orange);
    font-weight: 600;
    padding-left: 1.3rem;
}

.csel__option.is-selected::before {
    transform: scaleY(1);
}

/* Staggered entrance for options when list opens */

.csel.is-open .csel__option {
    animation: cselOptIn 0.2s ease both;
}

.csel.is-open .csel__option:nth-child(1) {
    animation-delay: 0.03s;
}

.csel.is-open .csel__option:nth-child(2) {
    animation-delay: 0.07s;
}

.csel.is-open .csel__option:nth-child(3) {
    animation-delay: 0.11s;
}

@keyframes cselOptIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Input Field Polish ───────────────────────────────────── */

.form-control.glass-input {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}

.form-control.glass-input:hover:not(:focus) {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(255, 247, 237, 0.5) !important;
}

/* Override default blue focus to orange theme */

.form-control.glass-input:focus {
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14) !important;
    background: #fff7ed !important;
}

/* ── OTP Row: send OTP button beside mobile field ─────────── */

.otp-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    height: 48px;
    background: #f97316;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    border-radius: 0.65rem;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.15s ease;
    flex-shrink: 0;
}

.otp-send-btn:hover {
    background: #ea6c00;
    transform: translateY(-1px);
}

.otp-send-btn:active {
    transform: translateY(0);
}

/* ── Register / Submit Button ─────────────────────────────── */

.btn.glass-button {
    background: var(--primary-blue) !important;
    border: none !important;
    letter-spacing: 0.04em;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
    position: relative;
    overflow: hidden;
}

.btn.glass-button::after {
    display: none;
}

.btn.glass-button:hover {
    background: var(--primary-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35) !important;
    color: #ffffff !important;
}

.btn.glass-button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25) !important;
}

/* ── Toggle Group ─────────────────────────────────────────── */

.toggle-group .form-toggle-button.active {
    background: #ffffff !important;
    color: var(--primary-orange) !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.toggle-group .form-toggle-button:hover:not(.active) {
    background: rgba(249, 115, 22, 0.06) !important;
    color: var(--primary-orange) !important;
}

/* ── Captcha Display Box ──────────────────────────────────── */

#captcha-display {
    background: #f1f5f9 !important;
    border: 1.5px dashed rgba(30, 64, 175, 0.3) !important;
    color: var(--primary-blue) !important;
    font-family: "Courier New", monospace !important;
    letter-spacing: 0.35em !important;
    cursor: default;
    user-select: none;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
}

/* ── Form Section Labels (before selectors) ───────────────── */

.form-section-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-orange);
    margin-bottom: 0.3rem;
}

/* ── Mobile Specific Overrides ( ≤ 575px ) ────────────────── */

@media (max-width: 575.98px) {
    .glass-effect {
        margin: 0 !important;
        padding: 1rem 0.9rem !important;
        border-radius: 1.2rem !important;
    }

    .csel__trigger {
        font-size: 0.85rem;
        min-height: 40px;
        padding: 0.55rem 0.75rem;
    }

    .csel__list {
        font-size: 0.875rem;
    }

    .btn.glass-button {
        font-size: 1rem !important;
        padding: 0.7rem !important;
    }

    .toggle-group {
        transform: none;
    }

    #form-title {
        font-size: 1.3rem !important;
    }

    .otp-send-btn {
        font-size: 0.7rem;
        padding: 0 0.6rem;
    }
}

/* ── Tablet (576px – 991px) ───────────────────────────────── */

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-main-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .glass-effect {
        width: 100%;
        margin: 0 auto !important;
    }
}

/* ── Pulse animation on Register button to attract attention ─ */

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.35);
    }

    50% {
        box-shadow: 0 8px 30px rgba(30, 64, 175, 0.55);
    }
}

.btn.glass-button {
    animation: btnPulse 3s ease-in-out infinite;
}

.btn.glass-button:hover,
.btn.glass-button:focus {
    animation: none;
}

/* ============================================================
   MOBILE + OTP ROW — Space-Optimized Layout
   ============================================================ */

/* Row container: all 4 elements in a single flex row */

.mobile-otp-row {
    display: flex;
    align-items: stretch;
    gap: 0.4rem;
    width: 100%;
}

/* ── Country Code Selector ─────────────────────────────────── */

.country-code-wrap {
    flex-shrink: 0;
    width: 5.5rem;
    /* just enough for flag + code */
}

.country-code-select {
    width: 100%;
    height: 100%;
    min-height: 48px;
    padding: 0.5rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.65rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23f97316' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.3rem center;
    background-size: 12px 12px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
}

.country-code-select:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background-color: rgba(255, 247, 237, 0.6);
}

.country-code-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
    background-color: #fff7ed;
}

.country-code-select option {
    font-size: 0.85rem;
    padding: 0.4rem;
}

/* ── Mobile Input — grows to fill available space ──────────── */

.mobile-input-wrap {
    flex: 1 1 0;
    min-width: 0;
    /* allow shrink below content width */
}

/* ── OTP Input — compact width for 4-6 digit codes ────────── */

.otp-input-wrap {
    flex-shrink: 0;
    width: 4.5rem;
    /* enough for ~6 digits */
}

.otp-compact-input {
    text-align: center !important;
    letter-spacing: 0.2em !important;
    font-weight: 600 !important;
    font-family: "Outfit", monospace !important;
    font-size: 0.85rem !important;
}

.otp-compact-input::placeholder {
    letter-spacing: 0.05em !important;
    font-weight: 400 !important;
    text-align: center !important;
}

/* ── Send OTP Button — fixed to right ─────────────────────── */

.otp-btn-wrap {
    flex-shrink: 0;
}

.otp-btn-wrap .otp-send-btn {
    height: 100%;
    min-height: 38px;
    white-space: nowrap;
    padding: 0 0.65rem;
    font-size: 0.7rem;
    border-radius: 0.65rem;
}

/* ============================================================
   MOBILE RESPONSIVE — ≤ 575px: stack into 2 sub-rows
   ============================================================ */

@media (max-width: 575.98px) {
    .mobile-otp-row {
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    /* Sub-row 1: country code + mobile input */
    .country-code-wrap {
        width: 4.8rem;
        flex: 0 0 auto;
    }

    .mobile-input-wrap {
        flex: 1 1 calc(100% - 5.5rem);
        min-width: 50%;
    }

    /* Sub-row 2: OTP input + Send OTP button fill full width */
    .otp-input-wrap {
        flex: 1 1 calc(100% - 6rem);
        min-width: 50%;
    }

    .otp-compact-input {
        text-align: center !important;
    }

    .otp-btn-wrap {
        flex: 0 0 auto;
    }

    .otp-btn-wrap .otp-send-btn {
        font-size: 0.75rem;
        padding: 0 0.7rem;
        min-height: 38px;
    }

    .country-code-select {
        font-size: 0.78rem;
        padding: 0.35rem 0.25rem;
    }
}

/* ============================================================
   TABLET RESPONSIVE — 576px to 767px
   ============================================================ */

@media (min-width: 576px) and (max-width: 767.98px) {
    .mobile-otp-row {
        gap: 0.35rem;
    }

    .country-code-wrap {
        width: 5.2rem;
    }

    .otp-input-wrap {
        width: 4.2rem;
    }

    .otp-btn-wrap .otp-send-btn {
        font-size: 0.7rem;
        padding: 0 0.6rem;
    }
}

/* ============================================================
   MOBILE NAV — Hamburger + Slide-In Drawer
   ============================================================ */

.mob-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mob-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mob-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mob-nav-drawer.is-open {
    transform: translateX(0);
}

.mob-nav-drawer__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 3px solid var(--primary-orange);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mob-nav-drawer__inner::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    flex-shrink: 0;
}

.mob-nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem 0.75rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}

.mob-nav-logo {
    height: 2.8rem;
    width: auto;
}

.mob-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    color: var(--primary-orange);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mob-nav-close:hover {
    background: var(--primary-orange);
    color: #ffffff;
}

.mob-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    gap: 0.15rem;
    flex: 1;
}

.mob-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.22s ease;
    position: relative;
}

.mob-nav-link::after {
    content: "›";
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    color: rgba(249, 115, 22, 0.35);
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.mob-nav-link:hover {
    background: rgba(249, 115, 22, 0.08);
    color: var(--primary-orange);
    padding-left: 1.25rem;
}

.mob-nav-link:hover::after {
    transform: translateX(4px);
    color: var(--primary-orange);
}

.mob-nav-link__icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 8px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.mob-nav-link:hover .mob-nav-link__icon {
    background: rgba(249, 115, 22, 0.18);
}

/* Staggered link entrance */

.mob-nav-drawer.is-open .mob-nav-link {
    animation: navLinkSlideIn 0.3s ease both;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(1) {
    animation-delay: 0.05s;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(2) {
    animation-delay: 0.09s;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(3) {
    animation-delay: 0.13s;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(4) {
    animation-delay: 0.17s;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(5) {
    animation-delay: 0.21s;
}

.mob-nav-drawer.is-open .mob-nav-link:nth-child(6) {
    animation-delay: 0.25s;
}

@keyframes navLinkSlideIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mob-nav-drawer__footer {
    padding: 1rem 1.2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.12);
    background: rgba(249, 115, 22, 0.04);
}

.mob-nav-footer-text {
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.15rem;
}

.mob-nav-footer-sub {
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0;
}

body.mob-nav-open {
    overflow: hidden;
}

/* ============================================================
   MOBILE CAROUSEL — Centered Progress Bar + Inline Arrows
   ============================================================ */

@media (max-width: 991.98px) {

    /* Hide overlaid arrows on the image */
    .banner-carousel .bc-nav {
        display: none !important;
    }

    /* Reposition progress wrap below image, centered */
    .bc-progress-wrap {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        padding: 1rem 1rem !important;
        width: 100%;
    }

    /* Inline arrow buttons inside the progress bar row */
    .bc-inline-prev,
    .bc-inline-next {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid var(--primary-orange);
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary-orange);
        cursor: pointer;
        flex-shrink: 0;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.18);
        padding: 0;
    }

    .bc-inline-prev:hover,
    .bc-inline-next:hover {
        background: var(--primary-orange);
        color: #fff;
    }

    .bc-inline-prev i,
    .bc-inline-next i {
        font-size: 13px;
        line-height: 1;
    }

    /* Dots stay between arrows */
    .bc-dots {
        position: static !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        display: flex !important;
        gap: 0.6rem !important;
        align-items: center;
    }

    .bc-dot {
        width: 1.6rem !important;
        height: 4px !important;
        border-radius: 9999px !important;
    }

    .bc-dot.is-active {
        width: 2.4rem !important;
    }

    /* Space between form and carousel */
    .banner-art {
        margin-top: 1.5rem !important;
    }
}

/* ============================================================
   USP SECTION — Single Unified Card (Mobile)
   ============================================================ */

@media (max-width: 767.98px) {
    #usp-unified-section {
        margin-top: -1.5rem !important;
        padding: 0.75rem 1rem 1.25rem !important;

        /* Scroll-enter animation: starts invisible + shifted don */
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity 0.45s ease-out,
            transform 0.45s ease-out;
    }

    /* Trigger: is-visible is added by usp-counters.js IntersectionObserver */
    #usp-unified-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Single outer card ─────────────────────────────────── */
    .usp-unified-bar {
        max-width: 100% !important;
        margin-top: -1.8rem !important;
        border-radius: 1.25rem !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        border: 1.5px solid rgba(249, 115, 22, 0.18) !important;
        box-shadow:
            0 8px 32px rgba(249, 115, 22, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        overflow: hidden;
        position: relative;
    }

    /* Single orange top-accent stripe for the whole card */
    .usp-unified-bar::before {
        content: "";
        display: block;
        width: 100%;
        height: 3.5px;
        background: linear-gradient(90deg,
                var(--primary-orange),
                #fb923c,
                var(--primary-orange));
        flex-shrink: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 1.25rem 1.25rem 0 0;
    }

    /* Subtle orange glow in bottom-right of the whole card */
    .usp-unified-bar::after {
        content: "";
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle,
                rgba(249, 115, 22, 0.08),
                transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    /* ── 2×2 inner grid — no gap, use dividers instead ──── */
    .usp-unified-bar .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin: 0 !important;
        padding-top: 3.5px;
        /* push below the ::before stripe */
    }

    /* ── Each stat cell ─────────────────────────────────── */
    .usp-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: unset !important;
        padding: 0.5rem 0.3rem !important;
        border: none !important;
        border-left: none !important;

        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        /* Column layout — center all content in the cell */
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.25rem !important;
        position: relative;
        overflow: visible;
    }

    /* Remove individual card pseudo-elements */
    .usp-item::before,
    .usp-item::after {
        display: none !important;
    }

    /* Hairline right divider — left column only */
    .usp-item:nth-child(odd) {
        border-right: 1px solid rgba(249, 115, 22, 0.12) !important;
    }

    /* Hairline bottom divider for top row */
    .usp-item:nth-child(1),
    .usp-item:nth-child(2) {
        border-bottom: 1px solid rgba(249, 115, 22, 0.12) !important;
    }

    /* ── Number row — centered ───────────────────────────── */
    .usp-item .d-flex.align-items-baseline {
        gap: 0.15rem !important;
        justify-content: center !important;
        align-items: baseline !important;
    }

    .usp-item .usp-number {
        font-size: 1.6rem !important;
        line-height: 1 !important;
        font-weight: 800 !important;
    }

    .usp-item .fs-4.fw-bold.text-dark {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #475569 !important;
    }

    /* ── Label — centered ────────────────────────────────── */
    .usp-item .text-secondary.fs-6 {
        font-size: 0.65rem !important;
        line-height: 1.35 !important;
        font-weight: 600 !important;
        color: #64748b !important;
        text-align: center !important;
    }

    /* Remove desktop left-border dividers */
    .border-start-lg {
        border-left: none !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 375px) {
    .usp-item {
        padding: 0.55rem 0.6rem !important;
    }

    .usp-item .usp-number {
        font-size: 1.3rem !important;
    }
}

/* ============================================================
   AWARDS SECTION — Mobile Master Override
   Supersedes all conflicting rules in custom.min.css
   ============================================================ */

@media (max-width: 767.98px) {

    /* Stack everything vertically */
    .awards-content-wrapper {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0.5rem !important;
        position: relative;
    }

    /* 1. Award image: fixed height, no layout shift */
    .mobile-award-image-container {
        display: flex !important;
        order: 1;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 0 !important;
        margin-bottom: 1rem !important;
        width: 100%;
    }

    .mobile-award-image {
        width: 90% !important;
        max-width: 320px !important;
        height: 220px !important;
        object-fit: contain !important;
        display: block;
    }

    /* 2. Description card: Dynamic height — expands to fit content */
    .award-description-panel {
        order: 2;
        width: 100% !important;
        min-height: 320px !important;
        /* minimum height */
        height: auto !important;
        /* expand naturally */
        max-height: none !important;
        /* allow unlimited growth */
        overflow: visible !important;
        /* content never clips */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 1.4rem 1.2rem !important;
        border-radius: 1.2rem !important;
        margin-bottom: 0 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        border: 1px solid rgba(249, 115, 22, 0.15) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
        backdrop-filter: none !important;
    }

    /* Keep text sizes compact so they fit the fixed card */
    .award-header {
        text-align: center;
        margin-bottom: 0.6rem !important;
    }

    .award-header h3 {
        font-size: 0.8rem !important;
        margin-bottom: 0.1rem !important;
        color: #64748b;
    }

    .award-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .active-award-details {
        text-align: left !important;
        flex: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .active-award-details .award-title {
        font-size: 1rem !important;
        font-weight: 700;
        margin-bottom: 0.4rem !important;
        line-height: 1.3;
    }

    .active-award-details .award-description {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.5rem !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .active-award-details .award-meta {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
        margin-top: auto !important;
        padding-top: 0.4rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    .award-meta-item {
        text-align: left !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }

    /* 3. Hide desktop awards panel */
    .awards-display-panel {
        display: none !important;
    }

    /* 4. Controls outside the card, compact, no overflow */
    .carousel-controls-container {
        order: 3;
        position: static !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 1rem !important;
        padding: 0 !important;
    }

    /* Nav arrows: small compact circles */
    .carousel-controls-container .nav-btn {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .carousel-controls-container .nav-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Indicators row stays centred and doesn't overflow */
    .carousel-indicators {
        flex-wrap: nowrap !important;
        gap: 0.3rem !important;
        overflow: hidden !important;
        max-width: calc(100% - 100px) !important;
        /* leave room for both arrows */
    }

    .indicator {
        width: 14px !important;
        height: 5px !important;
        flex-shrink: 0;
    }

    .indicator.active {
        width: 36px !important;
    }
}

/* Our Programmes Section CSS (Integrated with TMU Brand Colors) */

#programmes {
    background: #f1f5f9;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.programme-card {
    display: block;
}

.programme-card-inner {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #f9741631;
    border-top: 4px solid #f97316;
    display: flex;
    flex-direction: column;
}

.programme-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.programme-header {
    border-bottom: 1px solid #ff770044;
    /* TMU Secondary Color */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.programme-college-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #001055;
    /* TMU Primary Color */
    margin: 0;
}

.programme-list-container {
    flex-grow: 1;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for list container */

.programme-list-container::-webkit-scrollbar {
    width: 4px;
}

.programme-list-container::-webkit-scrollbar-track {
    background: transparent;
}

.programme-list-container::-webkit-scrollbar-thumb {
    background: #ff7900;
    /* TMU Secondary Color */
    border-radius: 4px;
}

.programme-list {
    list-style: none;
    padding-left: 0.8rem;
    margin: 0;
}

.programme-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.4;
}

.programme-list li::before {
    content: "\25B8";
    color: #ff7900;
    /* TMU Secondary Color */
    position: absolute;
    left: -0.8rem;
    top: 0;
}

.programme-list li strong {
    color: #001055;
    /* TMU Primary Color */
    font-weight: 600;
}

#programmes-show-more-btn {
    transition: all 0.3s ease;
}

#programmes-show-more-btn:hover {
    background-color: #ff7900 !important;
    /* TMU Secondary Color */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 121, 0, 0.3);
}

/* ── Floating 3D Icons (General) ─────────────────────── */

.section-relative {
    position: relative;
    overflow: hidden;
}

.floating-background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Behind section content */
    overflow: hidden;
}

.float-icon {
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 0.45;
    filter: blur(3px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
    animation: floatAnimation 10s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.float-icon.size-xs {
    width: 40px;
}

.float-icon.size-sm {
    width: 70px;
}

.float-icon.size-md {
    width: 100px;
}

.float-icon.size-lg {
    width: 140px;
}

.delay-1 {
    animation-delay: -2s;
}

.delay-2 {
    animation-delay: -4s;
}

.delay-3 {
    animation-delay: -6s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) scale(1.05) rotate(5deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@media (max-width: 991.98px) {
    .float-icon.size-lg {
        width: 60px;
    }

    .float-icon.size-md {
        width: 45px;
    }

    .float-icon.size-sm {
        width: 35px;
    }
}

/* ============================================================
   USP MODAL — Premium Adjustments
   ============================================================ */

.usp-modal-icon {
    border-radius: 50% !important;
    /* Perfect circle as per screenshot */
    background: #fff7ed !important;
    border: 2px solid rgba(249, 115, 22, 0.15) !important;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.usp-modal-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2) !important;
}

.usp-modal-close {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(249, 115, 22, 0.05) !important;
    border: 1px solid rgba(249, 115, 22, 0.15) !important;
}

.usp-modal-close:hover {
    background: var(--primary-orange) !important;
    color: #ffffff !important;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3) !important;
}

.usp-modal-title {
    font-family: "Outfit", sans-serif !important;
    color: var(--primary-blue) !important;
}

.usp-modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) #f1f5f9;
}

/* ============================================================
   KEY ACHIEVEMENTS (FAQs) — Mobile Scaling
   ============================================================ */

@media (max-width: 768px) {
    #faqs {
        padding: 20px 0 !important;
    }

    #faqs .tmu-section-heading {
        font-size: 2rem !important;
        /* Reduced from 2.5rem */
        margin-bottom: 20px !important;
        letter-spacing: -0.5px !important;
    }

    .faq-accordion {
        padding: 0 10px !important;
    }

    .faq-header {
        padding: 16px 20px !important;
        /* Reduced padding to save space */
    }

    .faq-title {
        font-size: 1.05rem !important;
        /* Reduced from 1.25rem */
        line-height: 1.3 !important;
    }

    .faq-toggle-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }

    .faq-content {
        padding: 0 20px 20px !important;
    }

    .faq-content ul li {
        font-size: 0.9rem !important;
        /* Reduced from 1rem */
        padding: 8px 0 !important;
    }

    .faq-content ul li::before {
        left: -20px !important;
    }

    .faq-item {
        margin-bottom: 12px !important;
        /* Compact spacing */
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    #faqs .tmu-section-heading {
        font-size: 2rem !important;
    }

    .faq-title {
        font-size: 0.95rem !important;
    }

    .faq-header {
        padding: 14px 16px !important;
    }

    .faq-toggle-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .faq-content {
        padding: 0 16px 16px !important;
    }
}

@media (max-width: 768px) {
    #gallery .tmu-section-heading {
        margin-top: 25px;
        margin-bottom: 10px;
    }
}

/* ============================================================
   Back to Top Button
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff7900;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 121, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 16, 85, 0.3);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}