* {
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

#myBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background: linear-gradient(135deg, #02394f, #0475a8);
    box-shadow: 0 6px 20px rgba(2, 57, 79, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

#myBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

#myBtn .scroll-top-progress {
    display: none;
}

#myBtn .scroll-top-arrow {
    display: none;
}

#myBtn:hover i {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

#myBtn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 28px rgba(2, 57, 79, 0.45);
    background: linear-gradient(135deg, #064e6e, #20bd8d);
}

#myBtn:hover .scroll-top-arrow {
    transform: rotate(45deg) translate(-1px, -1px);
}

#myBtn:active {
    transform: translateY(-1px) scale(0.96);
}

#myBtn:focus-visible {
    outline: 3px solid rgba(32, 189, 141, 0.8);
    outline-offset: 4px;
}

@media (max-width: 575px) {
    #myBtn {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    #myBtn,
    #myBtn .scroll-top-arrow {
        transition: none;
    }
}

@keyframes btnGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes btnPulseRing {
    0% {
        box-shadow:
            0 4px 20px rgba(99, 102, 241, 0.45),
            0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    70% {
        box-shadow:
            0 4px 20px rgba(99, 102, 241, 0.45),
            0 0 0 12px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow:
            0 4px 20px rgba(99, 102, 241, 0.45),
            0 0 0 0 rgba(99, 102, 241, 0);
    }
}

/* ===== END SCROLL-TO-TOP BUTTON ===== */




.sticky {
    position: sticky;
    top: 0;
    z-index: 15;
}

/* ===== POPUP ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    z-index: 100005;
}



.popup-overlay.show {
    display: block;
    background: rgba(0, 0, 0, 0.55);
}

.popupnew {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 860px;
    max-width: 94vw;
    max-height: 92vh;
    padding: 16px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
    font-family: "Poppins", sans-serif;
    text-align: center;
    z-index: 99999;
    overflow-y: auto;
}

.popupnew button#close {
    display: block;
    margin: 0 0 6px auto;
    background: transparent;
    font-size: 28px;
    color: #aaa;
    border: none;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 8px;
    top: 0;
}

.popupnew button#close:hover {
    color: #e63946;
}

.popupnew h4 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    padding-right: 36px;
}

.popupnew h4 .material-symbols-outlined {
    font-size: 22px;
    color: #b71c1c;
}

/* Wrapper div for announcement content - allows quick re-sizing for any flyer/image */
.popup-content-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Image styles: scales automatically and respects max-height */
.popupnew img,
.onpop {
    width: 100%;
    height: auto;
    max-height: 78vh;
    /* Increased desktop image height (edit here as needed) */
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

@media (max-width: 991px) {
    .popupnew {
        width: 90vw;
        max-height: 90vh;
        padding: 14px 16px 18px;
    }

    .popupnew img,
    .onpop {
        max-height: 72vh;
    }
}

@media (max-width: 560px) {
    .popupnew {
        width: 96vw;
        padding: 8px 10px 14px;
    }

    .popupnew img,
    .onpop {
        max-height: 68vh;
    }
}

/* ==== END POPUP ==== */









.search {
    margin-top: 26px;
    color: #000038;
    border: 1px solid #000038;
}

.btn-shine {


    background-image: linear-gradient(to right, #4d4d4d 0, #e5d83a 10%, #4d4d4d 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite alternate ease-in-out;
    ;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;

}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 150px;
    }

    100% {
        background-position: 300px;
    }
}







#san {

    font-size: 20px;
    margin-top: 0px;

}


#lnk {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.lnk {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}



.mark1 {
    font-size: 17px;
    margin-top: 17px;
}







body {
    padding: 0;
    margin: 0;
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

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

.custom-tab-pane,
.news,
.marquee,
.list-group-item {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}


















































.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}









@media screen and (min-width: 1600px) {}

/* @media screen and (max-width: 900px) {
            }*/


@media screen and (max-width: 600px) {}








































































/* 
                */






/* Admission Card */
.admission-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(2, 57, 79, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.tab-list {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 11px 10px;
    background: #f8fafc;
    border: none;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    background: linear-gradient(135deg, #02394f, #0475a8);
    color: white;
}

.tab-pane {
    display: none;
    padding: 14px 16px;
}

.tab-pane.active {
    display: block;
}

.tab-pane h5 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #02394f;
}

.tab-pane p {
    margin: 0 0 10px;
    font-size: 12px;
    color: #64748b;
}



.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #02394f;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s;
    margin-right: 6px;
}

.cta-btn:hover {
    background: #20bd8d;
    color: white;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #02394f;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {}


@media only screen and (max-width: 600px) {}

.btn-shine {
    background-image: linear-gradient(to right,
            #4d4d4d 0,
            #e5d83a 10%,
            #4d4d4d 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite alternate ease-in-out;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 150px;
    }

    100% {
        background-position: 300px;
    }
}




#san {
    font-size: 14px;
}

#head {
    font-weight: bold;
    font-size: 17px;
    color: #000038;
    margin: 0px;
    padding-left: 0px;
    text-align: left;
}

@media only screen and (min-width: 1200px) {}

#livesearch {
    border: 1px solid rgb(165, 172, 178);
    background: rgb(255, 255, 255);
    width: 40%;
    position: relative;
    height: 200px;
    text-align: center;
    margin: auto;
    font-size: 20px;
    gap: 5px;
    overflow: scroll;
}

@media only screen and (max-width: 600px) {
    #livesearch {
        width: 70%;
    }
}

.cls a {
    text-decoration: none;
    color: #000038;
}

.cls a:hover {
    color: white;
}

.cls li {
    border-bottom: 1px solid gray;
    font-size: 14px;
    padding: -1px 12px 0px 12px;
    list-style-type: none;
}

.cls ul li a {
    display: inline-block;
    width: 250px;
    line-height: 32px;
    height: 15px;
    padding: 0px;
    margin: 0px;
    font-size: 16px;
}

/*ul:hover{color: white;   } */

.cls li:hover {
    background-color: #5ac043;
}


/* the Palette */

.acc-tools {
    font-size: 20px;
    cursor: pointer;
    color: black;
}

.color-palette {
    width: 250px;
}

.line {
    height: 3px;
    transition: 0.5s ease;
    background-color: #141414;
    width: 30%;
    margin: auto;
}

.insider {
    margin-left: 22px;
}

.color {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.color:hover {
    cursor: pointer;
}

/* ANNOUNCEMENTS BAR */
.announce-bar {
    background: #fff;
    border-bottom: 3px solid #003956;
    display: flex;
    align-items: center;
}

.announce-label {
    background: linear-gradient(135deg, #02394f, #064e6e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    min-width: 160px;
    white-space: nowrap;
}

.announce-content {
    padding: 8px 16px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.announce-content marquee {
    width: 100%;
    display: block;
}

.announce-content marquee a {
    color: #000038;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
    font-size: 13px;
}

.announce-content marquee a:hover {
    color: #0475a8;
}

/* HERO SECTION */
.hero-section {
    background: #f1f5f9;
    padding: 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 20px;
    width: 100%;
}

@media(min-width:1600px) {
    .hero-section {
        padding: 24px 36px;
    }

    .right-panel {
        width: 600px;
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* SLIDESHOW */
.slideshow-wrap {
    position: relative;
    /*min-height: 380px;*/
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #02394f;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 20px 16px 12px;
    font-size: 13px;
    font-weight: 500;
}

.hero-slide-info p {
    /* position: relative; */
    font-size: 12px;

    color: grey;
    font-weight: bold;
}

.slide-dots {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.slide-dot.active {
    background: #fff;
}

@media(max-width:900px) {
    .slideshow-wrap {
        height: 260px;
    }
}



/* RIGHT PANEL */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ADMISSION CARD  */
.admission-card-new {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(2, 57, 79, 0.08);
    border: 1px solid #cbd5e1 !important;
    overflow: hidden;
    font-family: "Poppins", "Inter", sans-serif;
    height: 265px;
    min-height: 265px;
    max-height: 265px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.adm-tab-row,
.adm-tab-row.nav,
.adm-tab-row.nav-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    background: #f8fafc !important;
    padding: 8px !important;
    gap: 6px !important;
    margin: 0 !important;
    border-bottom: 1px solid #cbd5e1 !important;
    flex-shrink: 0 !important;
    height: 126px !important;
    min-height: 126px !important;
    max-height: 126px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.adm-tab-lbl,
.adm-tab-lbl.nav-link {
    flex: 1 1 calc(50% - 6px) !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    line-height: 30px !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
    user-select: none !important;
    border: 1px solid #cbd5e1 !important;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease !important;
}

.adm-tab-lbl:hover,
.adm-tab-lbl.nav-link:hover {
    color: #02394f !important;
    background: rgba(2, 57, 79, 0.05) !important;
}

.adm-tab-lbl.active,
.adm-tab-lbl.nav-link.active,
.adm-tab-row.nav-pills .adm-tab-lbl.nav-link.active {
    background: linear-gradient(135deg, #02394f, #0475a8) !important;
    color: #ffffff !important;
    border-color: #02394f !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.adm-panes-wrap,
.adm-panes-wrap.tab-content {
    flex: 0 0 139px !important;
    min-height: 139px !important;
    height: 139px !important;
    max-height: 139px !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.adm-panes-wrap .adm-pane-new,
.adm-panes-wrap .tab-pane {
    display: none !important;
    padding: 16px 20px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

@media (max-width: 600px) {
    .admission-card-new {
        min-height: auto;
        height: auto;
    }

    .adm-panes-wrap {
        height: auto;
        min-height: auto;
    }

    .adm-tab-lbl {
        flex: 1 1 100%;
        padding: 9px 12px;
        font-size: 12px;
    }

    .slideshow-wrap {
        height: 260px;
        min-height: 260px;
    }
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show the active pane — high specificity beats the hide rule reliably */
.adm-panes-wrap .adm-pane-new.active,
.adm-panes-wrap .adm-pane-new.show,
.adm-panes-wrap .tab-pane.active,
.adm-panes-wrap .tab-pane.show.active,
.adm-pane-new.active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    opacity: 1 !important;
}

.adm-pane-new h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #000038;
}

.adm-pane-new p {
    margin: 0 0 12px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.adm-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #02394f, #0475a8);
    color: white;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 4px;
	width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 57, 79, 0.2);
}

.cta-b:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 57, 79, 0.3);
    color: #ffffff;
}

.cta-s {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #02394f;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.cta-s:hover {
    background: #f1f5f9;
    color: #02394f;
    border-color: #94a3b8;
}

.news-principal-row-new {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px;
    flex: 1;
    min-height: 0;
    align-items: stretch;
}

@media(max-width:600px) {
    .news-principal-row-new {
        grid-template-columns: 1fr;
    }
}

/* NEWS BOX */
.news-box-new {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.news-tabs-new {
    display: flex;
    background: #f1f5f9;
    padding: 4px 4px 0 4px;
    gap: 3px;
    border-bottom: 1px solid #e2e8f0;
}

.news-tab-new {
    flex: 1;
    padding: 8px 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid transparent;
    border-bottom: none;
    transition: all 0.15s ease;
}

.news-tab-new a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.news-tab-new:hover {
    color: #0f172a;
    background: #e2e8f0;
}

.news-tab-new.active {
    color: #02394f;
    background: #ffffff;
    font-weight: 700;
    border-color: #e2e8f0;
    border-bottom: 2px solid #02394f;
    margin-bottom: -1px;
    padding-bottom: 9px;
}

.news-tab-new.news-tab-ad a {
    color: #b91c1c;
    font-weight: 700;
}

.news-tab-new.news-tab-ad:hover {
    background: #fee2e2;
}

.news-list-new {
    height: 235px;
    overflow: hidden;
    background: #ffffff;
}

.news-list-new marquee {
    height: 235px;
}

.news-item-new {
    padding: 8px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.news-item-new:hover {
    background-color: #f8fafc;
}

.news-item-new .daten {
    font-size: 11px;
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-item-new .daten img {
    vertical-align: middle;
    height: 12px;
    width: auto;
}

.news-item-new a {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.45;
    display: block;
    box-shadow: none !important;
    transition: color 0.15s ease;
}

.news-item-new a:hover {
    color: #0284c7;
}

.news-footer-new {
    padding: 8px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    margin-top: auto;
}

.news-view-all-link {
    font-size: 12px;
    font-weight: 600;
    color: #02394f;
    text-decoration: none;
    transition: color 0.15s ease;
}

.news-view-all-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* PRINCIPAL MINI CARD */
.principal-card-new {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(2, 57, 79, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.principal-card-hdr {
    background: #02394f;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 7px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    flex-shrink: 0;
}

.person-slide>a {
    display: block;
    width: 100%;
    flex: 1 1 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
}

.principal-card-new img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: top;
    display: block;
}

.principal-card-bdy {
    padding: 6px 8px;
    text-align: center;
    width: 100%;
    background: #fff;
    flex-shrink: 0;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.principal-card-bdy h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #02394f;
    line-height: 1.25;
}

.principal-card-bdy p {
    margin: 2px 0 0 0;
    font-size: 10px;
    color: #64748b;
    line-height: 1.2;
}

/* PERSON SLIDER */
.person-slider {
    width: 170px;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.person-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    pointer-events: none;
    background: #fff;
}

.person-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 600px) {

    .person-slider.principal-card-new,
    .person-slider {
        display: block;
        height: 280px;
        min-height: 280px;
        align-items: center;
        justify-content: center;
        width: 250px;
        margin: 15px auto;
        position: relative;
    }
}

@keyframes personFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.custom-carousel-wrapper {
    width: 100%;
    background-color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.custom-carousel-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.custom-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.custom-carousel-card {
    flex: 0 0 300px;
    margin: 0 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.custom-carousel-card:hover {
    transform: translateY(-5px);
}

.custom-carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.custom-carousel-card-body {
    padding: 15px;
}

.custom-carousel-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-carousel-card-text {
    font-size: 14px;
    color: #555;
}

.custom-carousel-btn {
    position: absolute;
    border-radius: 30%;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.custom-carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.custom-carousel-prev {
    left: 10px;
}

.custom-carousel-next {
    right: 10px;
}

@media screen and (max-width: 768px) {
    .custom-carousel-card {
        flex: 0 0 80%;
        max-width: 280px;
    }
}

.imp_links {
    padding: 3px 0px 0px;
    background-color: #ffffff;
    width: 100%;
}

.imp_links .empty-space {
    border: 2px solid #e2e8f0;
    padding: 10px;
    border-radius: 10px;
    background: #fafbfc;
}

.imp_links .col-lg-2 {
    padding: 0;
}


@media (max-width: 600px) {
    .tab_link {
        border-left: 2px solid #1b2945;
    }

    .empty-space {
        padding: 0;
    }
}

.tab_link {
    border-left: 5px solid #1b2945;
    padding: 10px;
    margin: 10px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s cubic-bezier(0.34, 1, 0.6, 1);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab_link i {
    font-size: 14px;
    flex-shrink: 0;
}

.tab_link span {
    font-size: 13.5px;
    font-weight: 500;

    overflow: hidden;
    text-overflow: ellipsis;
}

.imp_data a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
}

/*animation*/
.tab_link {
    animation-duration: 0s;
    transform-origin: bottom;
}

.bounce:hover {
    background: #1b2945;
    color: #fff;
    border-left: 5px solid #20bd8d;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(2, 57, 79, 0.2);
    transform: translateY(-2px);
}


.bounce:hover i {
    animation-name: bounce;
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    transform-origin: bottom;
}

.bounce:hover a,
.bounce:hover span,
.bounce:hover i {
    color: #fff !important;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(-1px);
    }
}

.quotes {
    padding: 56px 18px 48px;
    background:
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 72%);
    border-top: 1px solid rgba(2, 57, 79, 0.08);
    border-bottom: 1px solid rgba(2, 57, 79, 0.08);
    overflow: hidden;
}

.quotes .container-fluid {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
}

.quotes .section-heading {
    color: #000038;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    position: relative;
}

.quotes .section-heading:after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffc107, #20bd8d);
}

.quotes .row.mt-5 {
    margin-top: 34px !important;
}

#testimonial-slider {
    padding: 8px 8px 32px;
}

#testimonial-slider .owl-wrapper {
    display: flex !important;
    align-items: stretch;
}

#testimonial-slider .owl-item {
    display: flex;
}

#testimonial-slider .owl-item>div,
#testimonial-slider .testimonial {
    width: 100%;
}

#testimonial-slider .testimonial {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: center;
    column-gap: 16px;
    row-gap: 18px;
    min-height: 238px;
    height: calc(100% - 30px);
    margin: 0 10px 30px;
    padding: 26px 24px 24px;
    border: 1px solid rgba(2, 57, 79, 0.1);
    border-radius: 8px;
    border-right: 5px solid #000038;
    background: #ffffff;
    box-shadow:
        0 16px 36px rgba(2, 57, 79, 0.12),
        0 2px 8px rgba(2, 57, 79, 0.05);
    overflow: visible;
    position: relative;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

#testimonial-slider .testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 189, 141, 0.36);
    border-right-color: #20bd8d;
    box-shadow:
        0 22px 46px rgba(2, 57, 79, 0.17),
        0 4px 12px rgba(2, 57, 79, 0.08);
}

#testimonial-slider .testimonial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 34px 34px 0 0;
    border-color: #ffc107 transparent transparent transparent;
    z-index: 2;
}

#testimonial-slider .testimonial:after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #ffc107;
    transform: none;
}

#testimonial-slider .testimonial .pic {
    grid-column: 1;
    grid-row: 1;
    width: 62px;
    height: 62px;
    margin: 0;
    border: 3px solid #ffffff;
    border-radius: 50%;
    outline: 1px solid rgba(2, 57, 79, 0.12);
    box-shadow:
        0 8px 20px rgba(2, 57, 79, 0.16),
        0 0 0 6px rgba(255, 193, 7, 0.13);
    overflow: hidden;
}

#testimonial-slider .testimonial .pic img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

#testimonial-slider .testimonial .title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: #000038;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

#testimonial-slider .testimonial .description {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    color: #1f2a44;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0;
    margin: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
}

#testimonial-slider .testimonial .description span {
    color: #20bd8d;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 0;
}

#testimonial-slider .testimonial .post {
    display: none;
}

#testimonial-slider.owl-theme .owl-controls {
    margin-top: -4px;
}

#testimonial-slider.owl-theme .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px !important;
    background: rgba(2, 57, 79, 0.24) !important;
    opacity: 1;
}

#testimonial-slider.owl-theme .owl-controls .owl-page.active span,
#testimonial-slider.owl-theme .owl-controls .owl-page:hover span {
    width: 32px;
    background: #20bd8d !important;
    border: 0;
}

#testimonial-slider.owl-theme .owl-controls .owl-buttons div {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(2, 57, 79, 0.14);
    border-radius: 50%;
    background: #ffffff;
    color: #000038;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    padding: 0;
    font-size: 26px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(2, 57, 79, 0.12);
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

#testimonial-slider.owl-theme .owl-controls .owl-buttons div:hover {
    background: #000038;
    color: #ffffff;
    transform: translateY(-2px);
}

@media only screen and (max-width: 1199px) {
    #testimonial-slider .testimonial {
        min-height: 220px;
        padding: 28px 26px 26px;
    }

    #testimonial-slider .testimonial .description {
        font-size: 15px;
    }

    #testimonial-slider .testimonial .title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .quotes {
        padding: 42px 12px 38px;
    }

    .quotes .section-heading {
        font-size: 23px;
    }

    #testimonial-slider .testimonial {
        min-height: auto;
        margin: 0 8px 26px;
        padding: 24px 20px 24px;
    }

    #testimonial-slider .testimonial .description {
        font-size: 14px;
        line-height: 1.65;
    }

    #testimonial-slider .testimonial .title {
        font-size: 14px;
    }
}

/*Quotes Slider CSS END*/
.row {
    margin-right: 0px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 80%;
    margin: auto;
}

/* .ns1{
					  	background: url(img/clgsketch.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -170px;
					  }		*/

/* Style the buttons inside the tab */
.tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    width: 25%;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #003956;
    color: #fff;
    border-bottom: 5px solid green;
    outline: none;
}

.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: #fff;
    border-top: none;
    width: 80%;
    margin: auto;
}

.vision {
    display: block;
}

.counter-container {
    text-align: center;
}

.counter::after {
    content: "+";
}

.cntinfo {
    font-size: 25px;
    color: #000038;
}

.counter {
    font-size: 45px;
    margin-top: 10px;
    color: #000038;
}

.news-card {
    background: white;
    color: #000;
}

.news1 {
    padding: 30px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(5, 66, 125, 0.08);
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
    height: 350px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.news-image {
    height: 150px;
}

.news-image img {
    box-shadow: 0px 0px 1px 1px #0000001a;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

.news-title h3 {
    font-size: 23px;
    margin-bottom: 6px;
}

.new-title span {
    font-size: 10px;
}

.news-meta {
    padding: 1px 15px;
    font-size: 13px;
    position: absolute;
    line-height: 1.8;
    background: -webkit-linear-gradient(right,
            #f1630d,
            #fc8c1d 0.01%,
            #fbab18);

    width: fit-content;
    color: #fff;
    min-width: 65px;
    right: unset;
    top: 7%;
}

.news1:hover {
    --card-gradient: rgba(0, 0, 0, 0.8);
    --card-gradient: #5e9ad9, #e271ad;
    --card-blend-mode: overlay;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0.05rem 0.1rem 0.3rem -0.03rem rgb(0 0 0 / 45%);
    padding-bottom: 1rem;
    background-image: linear-gradient(var(--card-gradient),
            white max(9.5rem, 27vh));
    overflow: hidden;
}

#news-link {
    text-decoration: none;
}

@media only screen and (max-width: 600px) {

    .sec_left,
    .sec_right {
        display: none;
    }
}

.sec_left,
.sec_right {
    /*background: #337ab7;
				background: #1da1f2;*/
    background: linear-gradient(135deg, #02394f, #064e6e);
    border: 2px solid #20bd8d;
    height: 15px;
}

.sec_left {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.sec_right {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left,
.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.card-body {
    padding: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}


.arrow-pointer {
    width: 300px;
    height: 50px;
    display: flex;
    background: #003956;
    /*background: #32557f;*/
    position: absolute;
    left: 0;
    text-decoration: none;
    color: #fff;
    top: 240px;
}


.wd {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background: #f1f5f9;
}

.arrow-pointer:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #ffffff;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}

.arrow-pointer:before {
    content: '';
    position: absolute;
    right: -25px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #003956;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}

.wd {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    background: #f1f5f9;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.rainbow {
    /* position: relative; */
    z-index: 30;

    border-radius: 10px;
    overflow: hidden;
}

.rainbow::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size:
        50% 50%,
        50% 50%;
    background-position:
        0 0,
        100% 0,
        100% 100%,
        0 100%;
    background-image:
        linear-gradient(#399953, #399953),
        linear-gradient(#fbb300, #fbb300),
        linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
    animation: rotate 4s linear infinite;
}

.rainbow::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 5px;
}

.topper {
    margin: 10px 0px 10px 0px;
}

.topper .custom_card {
    border: 5px solid #dee2e6;
    padding: 0px;
    height: auto;
}

.topper .custom_card .info {
    justify-content: center;
    align-items: center;
    display: grid;
}

.topper .custom_card .info h1 {
    font-weight: bold;
}

.topper .custom_card h3 {
    background-color: #dee2e6;
    color: #000;
    padding-bottom: 10px;
    margin: 0px;
}

.topper .custom_card img {
    padding: 10px;
}

.topper .college h2 {
    font-size: 20px;
}

.topper .custom_card hr {
    border-top: 1px solid #000;
}

.topper .threed {
    margin-top: 50px;
}

@media screen and (max-width: 600px) {
    .topper .custom_card {
        height: auto;
    }

    .topper .threed {
        margin-top: 50px;
    }

    .topper .college {
        margin-top: 125px;
    }
}

h2.section-heading {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
    font-family: "Inter", "Poppins", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h2.section-heading::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    /*background-color: #84BD5A;*/
    background: linear-gradient(135deg, #20bd8d, #0ea5e9);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.placement-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 8px 0;
}

.placement-marquee-wrap marquee img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d0f0e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    margin: 5px 10px;
    transition: transform 0.2s ease;
}

.placement-marquee-wrap marquee img:hover {
    transform: scale(1.12);
    border-color: #20bd8d;
}

/* -- section-15 -- */
.plant {
    display: inline-block;
    position: fixed;
    bottom: 50px;
    left: -1px;
    z-index: 999;
    border: none;
}

.chess {
    display: inline-block;
    position: fixed;
    top: 72px;
    left: -1px;
    z-index: 9;
    border: none;
}

.accessibility{
	display: inline-block;
    position: fixed;
    top: 260px;
    left: -1px;
    z-index: 9;
    border: none;
		}

.suggestion {
    display: inline-block;
    position: fixed;
    top: 390px;
    left: -1px;
    z-index: 9;
    border: none;
}

.accimg {
    width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02394f, #20bd8d);
    box-shadow: 0 4px 15px rgba(32, 189, 141, 0.4);
    padding: 10px;
    transition: transform 0.3s ease;
}

.accimg:hover {
    transform: scale(1.1);
}

.treeplant {
    width: 100px;
}

@media only screen and (max-width: 600px) {
    .treeplant {
        width: 90px;
    }

    .accimg {
        width: 50px;
    }
}

/* SITE FOOTER (FROM rsml webpage 2) */

.site-footer {
    background-color:#002b3a;
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
}

@media(min-width:1400px) {
    .site-footer {
        font-size: 2rem;
    }
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 35px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
	
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.foundation-box {
    background-color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
    border-left: 5px solid #ff6d00;
}

.foundation-title {
    color: #e65100;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0;
}

.foundation-tagline {
    color: #334155;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 0;
}

.foundation-initiatives {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.init-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #e2e8f0;
    font-weight: 500;
    text-decoration: none;
}

.init-icon {
    font-size: 1.8rem;
    color: #818cf8;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #20bd8d;
    margin-bottom: 16px;
}

.map-sub-heading {
    margin-top: 14px;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    margin: 0;
}

.footer-links li a {
    text-decoration: none;
    color: #e2e8f0;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: var(--accent-gold, #c5a059);
}

.footer-links .arr {
    color: #38bdf8;
    font-weight: 700;
}

.contact-details p {
    font-size: 0.76rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-details p span {
    color: #38bdf8;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-map-box {
    background-color: #0b1e36;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.map-pin {
    color: #ff4500;
    font-size: 1.6rem;
}

/* CONTACT WITH US BOTTOM STRIP WITH COLORFUL SQUARE SOCIAL BUTTONS */
.footer-social-strip {
    background-color: #002b3a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
}

.social-strip-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-strip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.social-square-buttons {
    display: flex;
    gap: 10px;
}

.social-sq-btn {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: transform 0.2s ease;
    font-size: 1.1rem;
}

.social-sq-btn:hover {
    transform: translateY(-3px);
}

.social-sq-btn.fb {
    background-color: #3b5998;
}

.social-sq-btn.tw {
    background-color: #1da1f2;
}

.social-sq-btn.ig {
    background-color: #e1306c;
}

.social-sq-btn.yt {
    background-color: #ff0000;
}

.social-sq-btn.gp {
    background-color: #dd4b39;
}

.footer-bottom-bar {
    background-color: #001f2b;
    padding: 14px 20px;
}

.footer-bottom-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: #94a3b8;
}

.legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--accent-gold, #c5a059);
}

.copyright-text {
    display: flex;
    gap: 20px;
}

.copyright-text p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }

    .social-strip-container {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .copyright-text {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* -- section-19 -- */
:root {
    --pm-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --pm-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


.anim-prep {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
}

.anim-prep.anim-in {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.75s var(--pm-ease-out),
        transform 0.75s var(--pm-ease-out);
}

h2.section-heading.anim-prep::before {
    width: 0;
}

h2.section-heading.anim-in::before {
    width: 60px;
    transition: width 0.9s var(--pm-ease-out) 0.25s;
}

.hero-slide::before,
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-repeat: no-repeat;
    background-position: center;
}

/* Blurred, darkened. */
.hero-slide::before {
    z-index: 0;
    background-size: cover;
    filter: blur(22px) brightness(0.68) saturate(1.05);
    transform: scale(1.12);
}

.hero-slide::after {
    z-index: 1;
    background-size: 100% 90%;
}

.hero-slide-info {
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s ease 0.35s,
        transform 0.55s var(--pm-ease-out) 0.35s;
}

.hero-slide.active .hero-slide-info {
    opacity: 1;
    transform: none;
}

.slide-dot {
    transition:
        width 0.35s var(--pm-ease-out),
        background-color 0.3s ease;
}

.slide-dot.active {
    width: 22px;
    border-radius: 999px;
}



@keyframes pmDropIn {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(0);
    }
}

.tab_link i {
    transition: transform 0.35s var(--pm-ease-spring);
}

.bounce:hover i {
    transform: translateX(4px) scale(1.18);
}

.cta-s,
.adm-tab-lbl,
.news-tab-new {
    border: 2px solid rgb(206, 205, 205);
    transition: all 0.3s var(--pm-ease-out);
}

.custom-carousel-btn {
    transition:
        background-color 0.25s ease,
        transform 0.3s var(--pm-ease-spring),
        box-shadow 0.3s ease;
}

.custom-carousel-btn:hover {
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.custom-carousel-track {
    transition: transform 0.85s var(--pm-ease-out);
}

.news-item-new a {
    transition:
        color 0.2s ease,
        transform 0.25s var(--pm-ease-out);
}

.news-item-new a:hover {
    transform: translateX(4px);
}

.footer .footer_cont a,
.footer .list-inline a {
    transition:
        color 0.22s ease,
        padding-left 0.28s var(--pm-ease-out);
}

.footer .footer_cont a:hover {
    padding-left: 5px;
}

/* Events carousel */
#recipeCarousel .carousel-item {
    transition: transform 0.75s var(--pm-ease-out);
}

#testimonial-slider .owl-wrapper {
    transition-timing-function: var(--pm-ease-out) !important;
}

/* Popup entrance. */
.popup-overlay.show .popupnew {
    animation: pmPopIn 0.5s var(--pm-ease-spring);
}

@keyframes pmPopIn {
    from {
        transform: translate(-50%, -47%) scale(0.94);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.accimg,
.treeplant {
    transition: transform 0.35s var(--pm-ease-spring);
}

.treeplant {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(2, 57, 79, 0.3);
    border: 1px solid rgba(2, 57, 79, 0.12);
}

.plant {
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.plant:hover {
    opacity: 1;
}

.plant .plant-close {
    position: absolute;
    top: -9px;
    right: -9px;
    width: 22px;
    height: 22px;
    padding: 0;
    border-radius: 50%;
    background: #02394f;
    color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.plant .plant-close:hover {
    background: #e63946;
}

@media (prefers-reduced-motion: reduce) {

    .anim-prep,
    .anim-prep.anim-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-slide-info {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-slide {
        transform: none;
        transition: opacity 0.3s ease;
    }

}

/* ============================================================
   ADMISSIONS 2026-27 & PLACEMENTS UI STYLES
   (Adapted from rsml webpage)
   ============================================================ */

:root {
    --primary-color: #003366;
    --accent-gold: #c5a059;
    --accent-gold-light: #dfb974;
    --primary-blue: #0b1e36;
    --primary-navy: #011931;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

/* BANNER HEADINGS */
.banner-heading {
    text-align: center;
    position: relative;
    margin: 16px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.banner-heading .sec_left,
.banner-heading .sec_right {
    flex: 1 1 0%;
    min-width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #02394f, #064e6e);
    border: 2px solid #20bd8d;
}

.banner-heading .sec_left {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.banner-heading .sec_right {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.banner-heading h2 {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    margin: 0;
    white-space: nowrap;
    flex: 0 0 auto;
}

.banner-heading h2::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #20bd8d, #0ea5e9);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* SLIDER WRAPPER & ARROWS */
.slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: #02394f;
    color: #ffffff;
    border: 1.5px solid #20bd8d;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(2, 57, 79, 0.25);
    transition: all 0.25s ease;
}

.slider-arrow:hover {
    background-color: #20bd8d;
    color: #ffffff;
    border-color: #20bd8d;
    box-shadow: 0 6px 16px rgba(32, 189, 141, 0.45);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left-arrow {
    left: -15px;
}

.slider-arrow.right-arrow {
    right: -15px;
}

/* ADMISSIONS & EVENTS Showcase Sections */
.admissions-showcase-section,
.events-showcase-section {
    padding: 16px 24px 18px;
    background-color: #f8fafc;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.events-showcase-section {
    background-color: #ffffff;
    padding: 6px 24px 12px;
}

.events-showcase-section .banner-heading {
    margin: 4px 0 10px 0;
}

.events-showcase-section .showcase-cards-container {
    padding: 6px 4px;
}

.events-showcase-section .showcase-card {
    min-width: 360px;
    flex: 0 0 360px;
    height: 280px;
}

.events-showcase-section .showcase-card-body {
    padding: 24px 18px 12px;
}

.showcase-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    width: 100%;
}

.showcase-cards-container::-webkit-scrollbar {
    display: none;
}

.showcase-card {
    min-width: 420px;
    flex: 0 0 420px;
    height: 350px;
    background-color: #0c1626;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(2, 57, 79, 0.09);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    font-family: "Inter", "Poppins", sans-serif;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(2, 57, 79, 0.22);
    border-color: #20bd8d;
}

.showcase-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0c1626;
    display: flex;
    align-items: center;
    justify-content: center;
}


.showcase-card-bg {
    position: absolute;
    inset: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    object-fit: cover;
    filter: blur(24px) brightness(0.65) saturate(1.3);
    opacity: 0.88;
    transform: scale(1.1);
    pointer-events: none;
}

.showcase-card-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
    transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-card-img {
    transform: scale(1.03);
}


.showcase-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 34px 20px 16px;
    background: linear-gradient(to top, rgba(2, 57, 79, 0.95) 0%, rgba(2, 57, 79, 0.65) 60%, transparent 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.showcase-card-body h3 {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.showcase-card-body p {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #20bd8d;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}


.placements-showcase-section {
    padding: 16px 24px 18px;
    background-color: #f8fafc;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: "Inter", "Poppins", sans-serif;
}

@media (min-width: 1400px) {
    .placements-showcase-section {
        padding: 16px 36px 18px;
    }

    .admissions-showcase-section {
        padding: 16px 36px 18px;
    }

    .events-showcase-section {
        padding: 6px 36px 12px;
    }
}

@media (min-width: 1600px) {
    .placements-showcase-section {
        padding: 16px 48px 18px;
    }

    .admissions-showcase-section {
        padding: 16px 48px 18px;
    }

    .events-showcase-section {
        padding: 6px 48px 12px;
    }
}

.placement-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
}

.placement-box-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    vertical-align: top;
    white-space: normal;
    width: 180px;
    height: 200px;
    box-sizing: border-box;
    margin: 0 10px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 10px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(2, 57, 79, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    font-family: "Inter", "Poppins", sans-serif;
}

.placement-box-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(2, 57, 79, 0.12);
    border-color: #20bd8d;
}

.student-avatar-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    overflow: hidden;
    border: 2.5px solid #20bd8d;
    background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(32, 189, 141, 0.15);
    flex-shrink: 0;
}

.student-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-avatar-box.default-avatar span {
    font-size: 2rem;
    color: #02394f;
}

.student-box-name {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.25;
    flex-shrink: 0;
}

.student-box-dept {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.25;
    flex-shrink: 0;
}

.student-box-company {
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #02394f;
    background-color: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }

    .banner-heading h2 {
        font-size: 1.25rem;
        white-space: normal;
        padding: 0 10px;
    }

    .banner-heading .sec_left,
    .banner-heading .sec_right {
        display: none;
    }

    .admissions-showcase-section,
    .events-showcase-section,
    .placements-showcase-section {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ABOUT & COUNTER SECTION - Clean Professional Layout */
.news_section1 {
    width: 100%;
    background-color: #ffffff;
    padding: 24px 20px 32px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 14px auto 0 auto;
}

.about-stat-card {
    padding: 20px 12px 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}


.about-stat-card .counter {
    font-size: 34px;
    font-weight: 700;
    color: #000038;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.about-stat-card .counter::after {
    content: "+";
}

.about-stat-card .cntinfo {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 6px;
    font-family: 'Poppins', sans-serif;
}

/* About Tabs Container */
.about-tabs-wrap {
    margin: 26px auto 0 auto;
}

.about-tabs-wrap .tab {
    display: flex;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.about-tabs-wrap .tab button {
    flex: 1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    background: transparent;
    transition: all 0.2s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', sans-serif;
}

.about-tabs-wrap .tab button:hover {
    background: #e2e8f0;
    color: #000038;
}

.about-tabs-wrap .tab button.active {
    background: #003956;
    color: #ffffff;
    border-bottom: 3px solid #20bd8d;
    font-weight: 600;
}

.about-tabs-wrap .tabcontent {
    display: none;
    padding: 10px 30px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
    margin: 0;
    min-height: 150px;
    box-sizing: border-box;
    animation: tabFadeIn 0.2s ease-in-out;
}

@keyframes tabFadeIn {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.about-tabs-wrap .tabcontent.vision {
    display: block;
}

.about-tabs-wrap .tabcontent h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000038;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-tabs-wrap .tabcontent p {
    font-size: 15.5px;
    color: #334155;
    line-height: 1.75;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.about-tabs-wrap .tabcontent ul {
    padding-left: 20px;
    margin: 0;
    display: grid;
    gap: 8px;
}

.about-tabs-wrap .tabcontent li {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.core-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media only screen and (max-width: 991px) {
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .about-tabs-wrap .tabcontent {
        padding: 20px 22px;
    }
}

@media only screen and (max-width: 768px) {
    .news_section1 {
        padding: 18px 12px 24px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-stats-grid .about-stat-card:last-child {
        grid-column: span 2;
        max-width: 240px;
        margin: 0 auto;
        width: 100%;
    }

    .about-stat-card {
        padding: 14px 10px;
    }

    .about-stat-card .counter {
        font-size: 28px;
    }

    .about-stat-card .cntinfo {
        font-size: 12px;
    }

    .about-tabs-wrap {
        margin-top: 18px;
    }

    .about-tabs-wrap .tab button {
        font-size: 15px;
        padding: 11px 8px;
    }

    .about-tabs-wrap .tabcontent {
        padding: 18px 16px;
        min-height: auto;
    }

    .about-tabs-wrap .tabcontent h3 {
        font-size: 18px;
    }

    .about-tabs-wrap .tabcontent p {
        font-size: 14.5px;
    }

    .about-tabs-wrap .tabcontent li {
        font-size: 14px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Footer at 1400px+ */
@media (min-width: 1400px) {

    .footer-container,
    .social-strip-container,
    .footer-bottom-container {
        max-width: 1380px;
    }

    .footer-heading {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links li a {
        font-size: 0.95rem;
    }

    .foundation-title {
        font-size: 1.25rem;
    }

    .foundation-tagline {
        font-size: 0.95rem;
    }

    .init-item {
        font-size: 0.95rem;
    }

    .init-icon {
        font-size: 1.8rem;
    }

    .contact-details p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-strip-title {
        font-size: 1.15rem;
    }

    .social-sq-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-bottom-container {
        font-size: 0.9rem;
    }
}

/* Floating Social Media Bar (Clean, Professional & Faithful to Original) */
.float-sm {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fl-fl {
    display: flex;
    align-items: center;
    background: #ffffff;
    width: 190px;
    height: 46px;
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    border-right: none;
    transform: translateX(142px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
    text-decoration: none !important;
    overflow: hidden;
    cursor: pointer;
}

.fl-fl:hover {
    transform: translateX(0);
    box-shadow: -4px 4px 14px rgba(0, 0, 0, 0.18);
    background: #f8fafc;
}

.fl-fl .icn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fl-fl span {
    flex: 1;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    padding-right: 10px;
}

/* Authentic Brand Colors (from original_main_page.html) */
.float-fb .icn,
.float-fb span {
    color: #4867aa;
}

.float-tw .icn,
.float-tw span {
    color: #1da1f2;
}

.float-gp .icn,
.float-gp span {
    color: #d34338;
}

.float-rs .icn,
.float-rs span {
    color: #f2b504;
}

.float-ig .icn,
.float-ig span {
    color: #e6495d;
}

.float-pn .icn,
.float-pn span {
    color: #fe0000;
}

.float-fb:hover {
    border-left: 3px solid #4867aa;
}

.float-tw:hover {
    border-left: 3px solid #1da1f2;
}

.float-gp:hover {
    border-left: 3px solid #d34338;
}

.float-rs:hover {
    border-left: 3px solid #f2b504;
}

.float-ig:hover {
    border-left: 3px solid #e6495d;
}

.float-pn:hover {
    border-left: 3px solid #fe0000;
}

.imghealth{
    height: 110px;
	margin: auto;
	display: flex;
}

/* Hide on Mobile & Tablet Views */
@media (max-width: 991px) {
    .float-sm {
        display: none !important;
    }
}