/* Minification failed. Returning unminified contents.
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(38,22): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(69,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(73,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(112,17): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(135,25): run-time error CSS1039: Token not allowed after unary operator: '-text'
(142,29): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(143,34): run-time error CSS1039: Token not allowed after unary operator: '-light'
(167,21): run-time error CSS1039: Token not allowed after unary operator: '-text'
(176,30): run-time error CSS1039: Token not allowed after unary operator: '-light'
(177,25): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(182,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(189,22): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(354,21): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(375,17): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(403,32): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(417,21): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(475,21): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(496,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(509,17): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(552,26): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(577,22): run-time error CSS1039: Token not allowed after unary operator: '-light'
(593,25): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(622,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(680,25): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(714,32): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(722,21): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(727,21): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(735,22): run-time error CSS1039: Token not allowed after unary operator: '-light'
(771,22): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(783,17): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(820,21): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(827,25): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(848,21): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(853,25): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(880,21): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(887,25): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(932,26): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(973,17): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(1003,25): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(1370,21): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(1468,28): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(1525,22): run-time error CSS1039: Token not allowed after unary operator: '-navy'
(1649,1): run-time error CSS1019: Unexpected token, found '@import'
(1649,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css2?family=Hind+Guntur&display=swap')'
(1666,26): run-time error CSS1039: Token not allowed after unary operator: '-ts-5'
(1682,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-blue'
(1691,22): run-time error CSS1039: Token not allowed after unary operator: '-ts-5'
(1705,26): run-time error CSS1039: Token not allowed after unary operator: '-ts-5'
(1721,21): run-time error CSS1039: Token not allowed after unary operator: '-ts-5'
(1730,17): run-time error CSS1039: Token not allowed after unary operator: '-sixColor'
(1825,21): run-time error CSS1039: Token not allowed after unary operator: '-ts-5'
(1949,64): run-time error CSS1039: Token not allowed after unary operator: '-primaryColor'
 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --dark: #08415d;
    --navy: #269DAD;
    --orange: #f7941d;
    --light: #f7f9fc;
    --text: #333;
    --white: #fff;
}

body {
    font-family: 'Poppins',sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* TOP BAR */
.topbar {
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    min-height: 40px;
}

.topbar-logo img {
    height: 28px;
    display: block;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .topbar-right a {
        padding: 5px 16px;
        border-radius: 3px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
    }

.btn-adm-top {
    background: var(--dark);
}

.btn-erp {
    background: var(--dark);
}

.btn-menu {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* NAVBAR */
nav {
    /*background: #fff;*/
    /*box-shadow: 0 2px 10px rgba(0,0,0,.1);*/
    padding: 15px 30px;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-logo img {
        /*height: 52px;*/
    }

.nav-logo-text h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.nav-logo-text p {
    font-size: 10px;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

    .nav-menu > li {
        position: relative;
    }

        .nav-menu > li > a {
            display: block;
            padding: 8px 10px;
            font-size: 12.5px;
            font-weight: 500;
            color: var(--text);
            border-radius: 4px;
            transition: color .2s,background .2s;
            white-space: nowrap;
        }

            .nav-menu > li > a:hover {
                color: var(--navy);
                background: var(--light);
            }

        .nav-menu > li:hover > .sub {
            display: block;
        }

.sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    min-width: 200px;
    z-index: 1000;
}

    .sub a {
        display: block;
        padding: 9px 16px;
        font-size: 12px;
        color: var(--text);
        border-bottom: 1px solid #f5f5f5;
    }

        .sub a:last-child {
            border-bottom: none;
        }

        .sub a:hover {
            background: var(--light);
            color: var(--navy);
        }

/* ANNOUNCEMENT */
.ann {
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ann-tag {
    background: var(--navy);
    color: #fff;
    padding: 9px 20px;
    font-weight: 500;
    font-size: 25px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ann-wrap {
    overflow: hidden;
    flex: 1;
}

.ann-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    padding: 9px 0;
    color: #fff;
    font-size: 15px;
}

    .ann-text a {
        color: #fff;
    }

@keyframes marquee {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%)
    }
}

/* HERO SLIDER */
.slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

.sl {
    display: none;
}

    .sl.on {
        display: block;
    }

    .sl img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

.sl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
}

    .sl-btn:hover {
        background: rgba(0,0,0,.65);
    }

    .sl-btn.p {
        left: 12px;
    }

    .sl-btn.n {
        right: 12px;
    }

.sl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.sdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    border: none;
}

    .sdot.on {
        background: #fff;
    }

/* SOCIAL FLOAT */
.soc-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
}

    .soc-float a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: #fff;
        font-size: 14px;
    }

.sf-ig {
    background: #e1306c;
}

.sf-fb {
    background: #1877f2;
}

.sf-yt {
    background: #ff0000;
}

.sf-wa {
    background: #25d366;
}

/* ADMISSION */
.adm-sec {
    background-image: linear-gradient(#184065c7, #184065), url(../img/Addmission-open-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    padding: 23px 60px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.adm-text {
    flex: 1.6;
}

    .adm-text .lbl {
        font-size: 13px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .adm-text h2 {
        font-size: 37px;
        font-weight: 500;
        color: white;
        margin-bottom: 16px;
    }

    .adm-text p {
        font-size: 16px;
        color: white;
        line-height: 1.75;
        margin-bottom: 22px;
        text-align: justify;
    }

.btn-org {
    background: white;
    color: var(--dark);
    padding: 11px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    transition: opacity .2s;
}

    .btn-org:hover {
        opacity: .85;
    }

.adm-img {
    flex: 1;
    text-align: right;
}

    .adm-img img {
        max-height: 330px;
        border-radius: 10px;
        box-shadow: 0 6px 25px rgba(0,0,0,.12);
    }

/* ACHIEVEMENTS */
.ach {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 4px solid var(--orange);
}

.ac {
    background: #fff;
    padding: 22px 20px 0px 20px;
    border-right: 1px solid #eee;
}

    .ac:last-child {
        border-right: none;
    }

    .ac h4 {
        color: var(--navy);
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .ac p {
        color: #555;
        font-size: 14.5px;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* ABOUT */
.about {
    display: flex;
    align-items: flex-start;
    padding: 0px 17px;
    gap: 30px;
    background: #fff;
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ab-img {
    flex: 1;
}

    .ab-img img {
        max-width: 100%;
        height: auto;
        display: block;
    }

.ab-txt {
    flex: 1.2;
}

.eyebrow {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 6px;
}

.ab-txt h2 {
    font-size: 41px;
    font-weight: 400;
    color: black;
    margin-bottom: 16px;
    line-height: 1.3;
}

    .ab-txt h2 em {
        font-style: normal;
        color: var(--navy);
    }

.ab-txt > p {
    font-size: 15px;
    color: #000000;
    line-height: 1.75;
    margin-bottom: 24px;
}

.svc {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.svc-ic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin: auto;
}

.svc-bd h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.svc-bd p {
    line-height: 1.6;
    font-size: 15px;
    color: #000000;
}

/* STATS */
.stats {
    background-image: linear-gradient(90deg,#0000005e, #0000005e), url(../img/achievement.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*background: linear-gradient(90deg,#1b3a6b,#2a5298);*/
    display: grid;
    grid-template-columns: repeat(4,1fr);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.st {
    padding: 20px 0px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border: 1px solid white;
    gap: 10px;
    margin: 9px;
    border-radius: 13px;
}



.st-ic {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: .85;
}

    .st-ic i {
        background: var(--dark);
        border-radius: 100px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

.st-n {
    font-size: 27px;
    font-weight: 500;
    color: white;
}

.st-l {
    font-size: 19px;
    font-weight: 400;
    justify-content: center;
}

/* EVENTS */
.ev-sec {
    padding: 60px;
    background: var(--light);
}

.sec-hd {
    text-align: center;
    margin-bottom: 40px;
}

    .sec-hd h2, .Leadership h2 {
        font-size: 39px;
        font-weight: 400;
        color: black;
    }

        .sec-hd h2 em, .Leadership h2 em {
            font-style: normal;
            color: var(--navy);
        }

.ev-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.ev-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
    transition: transform .25s;
}

    .ev-card:hover {
        transform: translateY(-5px);
    }

    .ev-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

.ev-lbl {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
}

    .ev-lbl a {
        color: #fff;
    }

.ev-video {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .ev-video img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        display: block;
        filter: brightness(0.5);
    }

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(255,0,0,.85);
    color: #fff;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* LIFE */
.life {
    padding: 60px;
    background: #fff;
}

    .life h2 {
        font-size: 39px;
        font-weight: 400;
        color: black;
        margin-bottom: 10px;
        text-align: center
    }

        .life h2 span {
            color: var(--navy);
        }

    .life .ld {
        font-size: 13.5px;
        color: #555;
        line-height: 1.75;
        margin-bottom: 32px;
        max-width: 820px;
        margin: 30px auto;
    }

.lg {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.lg2 {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.lc {
    text-align: center;
}

    .lc img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        border-radius: 10px;
        border: 3px solid var(--navy);
        display: block;
        margin-bottom: 10px;
    }

    .lc .lcn {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark);
    }

    .lc .lck {
        font-size: 11px;
        color: var(--navy);
    }

.life-bottom {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    background: var(--light);
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
}

.lb-img {
    flex: 1;
}

    .lb-img img {
        width: 100%;
        border-radius: 10px;
    }

.lb-mv {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mvb {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.mv-ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mvb h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.mvb p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.6;
}

/* WHY JPS */
.why {
    padding: 60px;
    gap: 30px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-img {
    flex: 1;
}

    .why-img img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0,0,0,.1);
    }

.why-cnt {
    flex: 1.2;
}

    .why-cnt h2 {
        font-size: 40px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 14px;
        line-height: 1.3;
    }

        .why-cnt h2 em {
            font-style: normal;
            color: var(--navy);
        }

    .why-cnt p {
        font-size: 16px;
        color: #000000;
        line-height: 1.75;
        margin-bottom: 22px;
    }

.why-ul {
    padding-left: 0;
    list-style: none;
}

    .why-ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 12px;
    }

        .why-ul li i {
            color: var(--dark);
            font-size: 18px;
        }

/* LEADERSHIP */
.lead {
    /*padding: 60px;*/
    display: grid;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding-bottom: 41px;
}

    .lead .ey {
        font-size: 13px;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 2px;
        color: black;
        margin-bottom: 6px;
        text-align: center;
    }

    .lead h2 {
        font-size: 40px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 32px;
        text-align: center;
    }

        .lead h2 em {
            font-style: normal;
            color: var(--navy);
            text-align: center;
        }

.lr {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-bottom: 12px;
}

.lcard {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.09);
    background: #fff;
    transition: transform .25s;
}

    .lcard:hover {
        transform: translateY(-4px);
    }

    .lcard img {
        width: 100%;
        display: block;
    }

.cdots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
}

.cdot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
}

    .cdot.on {
        background: var(--navy);
    }

/* FOOTER */
footer {
    background: #131313FA;
    color: #bbb;
    padding: 50px 60px 0;
}

.fi {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.fl-logo img {
    margin-bottom: 16px;
    display: block;
    width: 150px;
    height: auto;
    margin-left: auto;
}

.fc i {
    font-size: 12.5px;
    line-height: 2.2;
}

.fc ul {
    padding-left: 0px;
}

.fc li {
    color: white;
    list-style: none;
}

.fc i {
    color: var(--orange);
    margin-right: 8px;
    width: 16px;
}

.fcol h4, .fc h4 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 18px;
}

.flinks {
    list-style: none;
    display: flex;
    padding-left: 5px;
}

    .flinks li {
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .flinks a {
        font-size: 16px;
        color: white;
        transition: color .2s;
    }

        .flinks a:hover {
            color: var(--orange);
        }

.fsocs {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.fs {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

    .fs:hover {
        opacity: .8;
    }

.fs-fb {
    background: #1877f2;
}

.fs-ig {
    background: #e1306c;
}

.fs-yt {
    background: #ff0000;
}

.fs-wa {
    background: #25d366;
}

.fb {
    text-align: center;
    padding: 18px;
    font-size: 12px;
    color: white;
}

    .fb a {
        color: white;
    }

.school-section .slick-prev {
    left: -33px !important;
}

.school-section .slick-next {
    right: -34px !important;
}

@media(max-width:900px) {
    .nav-menu {
        display: none;
    }

    .ach, .ev-grid, .lr, .stats {
        grid-template-columns: 1fr;
    }

    .about, .why, .life-bottom {
        flex-direction: column;
        padding: 10px 20px 30px 20px;
    }

    .about {
        margin-top: 10px !important;
    }

    .vision-missom {
        padding: 0px 20px;
        margin-bottom: 20px;
    }

    .why-cnt {
        margin-top: 20px;
    }

    .school-section button {
        display: none !important;
    }

    .ab-img {
        padding-bottom: 0px !important;
    }

    .lg {
        grid-template-columns: repeat(2,1fr);
    }

    .lg2 {
        grid-template-columns: repeat(2,1fr);
    }

    .fi {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ev-sec, .lead, .life {
        padding: 40px 20px;
    }

    .sl img {
        height: 220px;
    }
}

.svc-ic i {
    font-size: 26px;
}

.school-section {
    /*display: grid;*/
    grid-template-columns: 1fr 420px;
    min-height: 600px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 60%, #f59e0b 100%);
    overflow: hidden;
    position: relative;
}

/* ── SOCIAL ICONS (right edge) ── */
.social-bar {
    position: absolute;
    right: 425px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

    .social-bar a {
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #f97316;
        font-size: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: transform 0.2s;
    }

        .social-bar a:hover {
            transform: scale(1.1);
        }

/* ── LEFT CONTENT ── */
.left-content {
    padding: 52px 64px 52px 52px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    /*max-width: 680px;*/
    font-weight: 300;
    margin-bottom: 0;
    text-align: justify;
}

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex !important;
    margin: 0px 5px;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }

.card-img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    margin-bottom: 20px;
    background: #e5e7eb;
}

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Placeholder circles with colored backgrounds when no real image */
.placeholder-library {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.placeholder-physics {
    background: linear-gradient(135deg, #a5f3fc, #0ea5e9);
}

.placeholder-chemistry {
    background: linear-gradient(135deg, #bbf7d0, #22c55e);
}

.placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.card-link {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

    .card-link:hover {
        color: #f97316;
    }

/* ── RIGHT PHOTO ── */
.right-photo {
    position: relative;
    overflow: hidden;
}

    .right-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

/* Fallback placeholder for right image */
.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #fed7aa 0%, #fb923c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

    .photo-placeholder span {
        font-size: 5rem;
    }

    .photo-placeholder p {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        opacity: 0.8;
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .school-section {
        grid-template-columns: 1fr;
    }


    .social-bar {
        right: 10px;
        top: auto;
        bottom: 340px;
        transform: none;
    }

    .left-content {
        padding: 36px 24px;
    }



    .card-img-wrap {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 600px) {

    .section-title {
        font-size: 1.8rem;
    }
}


.vision-missom .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1050px;
    width: 100%;
    margin: auto;
}

.vision-missom .card {
    background: #f4f6f8;
    border: 1.5px solid #c9d6e3;
    border-radius: 14px;
    padding: 2px 1px;
    display: flex;
    text-align: left;
    flex-direction: column;
    gap: 14px;
}

    .vision-missom .card h3 {
        color: var(--dark);
        font-size: 1.5rem;
        font-weight: 400;
        margin: 0;
        text-align: left;
    }

.vision-missom .card-body {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.vision-missom .icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

    .vision-missom .icon svg {
        width: 26px;
        height: 26px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vision-missom .card p {
    color: #444;
    font-size: 0.8rem;
    line-height: 1.7;
    margin: 10px 0px;
}

@media(max-width:600px) {
    .vision-missom .cards {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 50px 13px 0;
    }

    .fl-logo img {
        margin-right: auto !important;
        margin-left: 0px !important;
    }
}


.footerline {
    padding: 40px 0px;
}

.mentorsslider .lcard {
    padding: 10px;
    text-align: center;
}

    .mentorsslider .lcard img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }


.Leadership {
    gap: 30px;
    background: #fff;
    text-align: center;
}

.slick-dots {
    display: none !important;
}

.lifeslider .slick-slide {
    padding: 25px 10px;
    box-sizing: border-box;
}

.lifeslider .slick-list {
    margin: 0 -10px !important;
}





.offcanvas {
    background-color: var(--dark) !important;
}

    .offcanvas .btn-close {
        background-color: white;
        opacity: 1;
        color: white;
        border-radius: 25px;
    }

.sidebar {
}

    /* Links */
    .sidebar .nav-link {
        color: white;
        padding: 14px 15px;
        display: block;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

        .sidebar .nav-link:hover {
            background-color: #343a40;
        }

/* Submenu */
.submenu {
    display: none;
    background-color: #063447;
    padding-left: 0;
}

    .submenu li {
        list-style: none;
    }
/* ✅ Desktop: hover works */
@media (min-width: 768px) {
    .nav-item:hover .submenu {
        display: block;
    }
}

/* ✅ Mobile: click (active class) */
.nav-item.active .submenu {
    display: block;
}

/* Submenu links */
.submenu .nav-link {
    padding-left: 30px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.nav-item:hover > .nav-link {
    background: var(--navy)
}

.admiss {
    border-bottom: 1px solid white;
}
.home i {
    font-size: 25px;
}

.home p{
    margin-top:20px;
}
.active{
    display:block !important;
}

#myCarousel_pop img {
    max-height: 600px;
    width: 100%;
    /* object-fit: cover; */
    padding: 0px 27px 10px 27px;
}
#myModal .modal-body {
    padding: 0px
}
.carousel-inner {
    max-height: 600px;
}



@media only screen and (min-width:1201px)
{
    nav {
        padding: 15px 70px;
    }
    .adm-sec {
        padding: 40px 150px 0px 150px;
    }
    .ev-sec, .stats {
        padding: 40px 150px 40px 150px;
    }
    .ach, .about, .Leadership {
        padding: 0px 150px 0px 126px;
    }
    .services{
        max-width:500px;
    }
    .why-cnt {
        max-width: 625px;
    }
    .ab-img img{
        padding-left:20px;
    }
}


@media only screen and (max-width:767px) {
    .ann-tag {
        padding: 9px 9px;
        font-size: 15px;
    }
    .ann-text{
        font-size:13px !important;
    }
    .ac p {
        text-align: justify;
    }
    .topbar-right a {
        padding: 5px 10px !important;
    }
    p, li {
        font-size: 14.5px !important;
    }
    h2 {
        font-size: 29px !important;
        font-weight: 500 !important;
    }
    nav{
        padding:15px 14px !important;
    }
    .topbar-right {
        margin:22px auto 0 auto;
        /*margin-top: 22px;*/
    }
    .nav-logo {
        margin: auto;
    }
    .ab-txt > p {
        text-align: justify;
    }
    .why-cnt p {
        text-align: justify;
    }
    .about, .stats, .adm-sec {
        grid-template-columns: 1fr;
    }
    .why-cnt h2 {
        font-size: 35px;
    }
    .right-photo img {
        width: 300px;
        max-height: 786px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .cards-grid, .why {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .adm-sec {
        padding: 27px 27px 0px 27px !important
    }
}

@media only screen and (min-width:768px) and (max-width:1199px) {
    .cards-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
    
@import url('https://fonts.googleapis.com/css2?family=Hind+Guntur&display=swap');

.lblheading1 + p.italic {
    display: none;
}
/* navbar */
.navbar__box > ul {
    display: flex;
    align-items: center;
    /*margin-top: 17px;*/
    /*margin-bottom: 14px;*/
}
    .navbar__box li{
        text-align:start;
    }
    .navbar__box > ul > li, .navbar__box > ul > li > ul > li, .navbar__box > ul > li > ul > li > ul > li, .navbar__box > ul > li, .navbar__box1 > li > ul > li, .navbar__box1 > li > ul > li > ul > li {
        position: relative;
        transition: var(--ts-5);
        list-style: none;
    }

.men_div_img > span {
    opacity: 1 !important;
}
.stricky .navbar__box > ul > li > a {
    color: black !important;
    font-weight: bold;
}

    .stricky .navbar__box > ul > li > a:hover{
        color:black !important;
    }
.navbar__box > ul > li > a {
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 20px 16px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: var(--ts-5);
    text-decoration: none;
}

    .navbar__box > ul > li > a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: -11.8px;
        width: 100%;
        height: 0px;
        background: #02143c;
        margin: 0 8px;
        z-index: -1;
        transition: var(--ts-5);
    }

.navbar__box > ul > li:hover > a {
}

    .navbar__box > ul > li:hover > a::before {
        /* height: 40px; */
    }



.navbar__box > ul > li > ul > li > a, .navbar__box > ul > li > ul > li > ul > li > a, .navbar__box > ul > li > ul > li > ul > li > ul > li a {
    font-size: 14px;
    letter-spacing: .5px;
    font-weight: 500;
    transform: var(--ts-5);
    text-decoration: none;
    color: black !important;
    padding: 13px 6px 13px 10px;
    transition: .4s;
    line-height: 1.42857143;
}

.navbar__box > ul > li > ul > li:hover a, .navbar__box > ul > li > ul > li > ul > li:hover a {
    color: var(--sixColor);
}

.navbar__box > ul > li > ul > li, .navbar__box > ul > li > ul > li > ul > li {
    padding: 10px 0px;
    border-bottom: 1px solid #01081842;
}

.navbar__box > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 40px;
    transform: translateY(0px);
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    background: white;
    overflow: auto;
    max-height:390px;
}



.navbar__box > ul > li > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0px;
    transform: translateY(0px);
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    padding-left: 0;
    text-align:left;
}

.navbar__box > ul > li > ul {
    position: absolute;
    z-index: 9;
    background: #d6d6d6;
    left: -4px;
    top: 32px;
    width: 240px;
    opacity: 0;
    text-align: start;
    visibility: hidden;
    transform: translateY(40px);
    opacity: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    padding-left: 6px !important;
}


.alumni-form strong {
    color: #e47f1f;
}

.navbar__box > ul > li > ul > li > ul {
    position: absolute;
    z-index: 1;
    background: white;
    left: 240px;
    top: 0px;
    width: 200px;
    opacity: 0;
    text-align: start;
    visibility: hidden;
    transform: translateY(40px);
}

#navbar__box1 > li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}


#navbar__box1 > li > ul {
    right: 220px;
    visibility: hidden;
    transform: translateY(40px);
}


#navbar__box1.open {
    visibility: visible;
    top: 57px;
    opacity: 1;
    z-index: 999;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#navbar__box1 li {
    padding: 10px 10px 10px 18px;
    border-bottom: 1px solid #01081842;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    transform: var(--ts-5);
}

    #navbar__box1 li a {
        color: #00305b;
        text-decoration: none;
    }


.stricky .toggle-menu i {
    background: black;
}
/* menu navbar 1  icon */
.toggle-menu {
    width: 38px;
    height: 38px;
    display: inline-block;
    position: relative;
    top: 42px;
    float: right;
    z-index: 1000;
    text-align: center;
    margin: auto;
}

    .toggle-menu i {
        position: absolute;
        display: block;
        height: 2px;
        background: black;
        width: 24px;
        left: 0px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

        .toggle-menu i:nth-child(1) {
            top: 16px;
        }

        .toggle-menu i:nth-child(2) {
            top: 24px;
        }

        .toggle-menu i:nth-child(3) {
            top: 32px;
        }

    .toggle-menu.active i:nth-child(1) {
        top: 25px;
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
    }

    .toggle-menu.active i:nth-child(2) {
        background: transparent;
    }

    .toggle-menu.active i:nth-child(3) {
        top: 25px;
        -webkit-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
    }

.open {
    right: 0px;
    transition: right linear .2s;
}

/* navbar close icon */
.navbar__box--icon {
    position: absolute;
    top: 6px;
    float: right;
    text-align: end;
    right: -12px;
}

#navbar__box1 {
    position: absolute;
    top: 70px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    right: 0px;
    width: 220px;
    z-index: 1;
    box-shadow: -4px 10px 15px #3333332e;
    background: #d6d6d6;
}

/* media */





@media only screen and (max-width: 991px) {


    #navbar__box {
        position: absolute;
        top: 71px;
        left: 0;
        max-width: 500px;
        display: none;
        height: 500px;
        overflow: scroll;
    }

    .navbar {
        height: 45px;
    }

    .navbar__box--icon {
        position: absolute;
        top: -25px;
        float: right;
        left: 21px;
    }

    .navbar {
        background: linear-gradient(-90deg, #f7f8f9 60px, var(--primaryColor) 0);
    }




    .men_div_img > span.close {
        background-position: 0 -45px;
    }

    .men_div_img > span {
        position: absolute;
        top: 16px;
        right: 0px;
        height: 40px;
        width: 40px;
        /*background-image: url('../img/menu.png');*/
        background-repeat: no-repeat;
        background-position: 0 0;
        transition: .3s all cubic-bezier(0, 0, 0, 1.36);
    }

    #navbar__box > ul {
        display: grid;
        width: 320px;
        margin-top: 0px;
        margin-left: 0px;
        background: #f7f8f9;
        z-index: 99;
        position: relative;
    }

        #navbar__box > ul > li > ul {
            display: grid;
            width: 320px;
            margin-top: 0px;
            margin-left: 0px;
            /*background: #f7f8f9;*/
            z-index: 99;
        }

        #navbar__box > ul > li > ul {
            display: none;
            top: 0;
        }

   

    #navbar__box > ul {
        padding: 0px;
        list-style: none;
        margin: 0px;
        width: 100%;
        height: auto;
        display: inline-block;
        position: relative;
        background-color: #fff;
    }

        #navbar__box > ul > li {
            position: relative;
            float: left;
            width: 100%;
            display: inline-block;
            border-bottom: 1px solid #dcdcdd;
        }

            #navbar__box > ul > li > a {
                padding: 10px 20px;
                text-align: left;
                font-weight: 500;
                width: calc(100% - 70px);
                float: left;
                z-index: 999;
            }

    .navbar__box > ul > li > a {
        color: #192e5c;
        font-size: 15px;
        letter-spacing: .5px;
    }

    span.nav_plus {
        position: absolute;
        top: -1px;
        right: 23px;
        color: #133654;
        font-size: 16px;
        width: 50px;
        height: 46px;
        line-height: 40px;
        background: #fff;
        border: 1px solid #e1e1e1;
        cursor: pointer;
        z-index: 999;
        text-align: center;
    }

    .vis_mob_nav {
        opacity: 1 !important;
        display: block !important;
        position: relative !important;
        visibility: visible !important;
        transform: none !important;
    }

    .navbar__box > ul > li > ul > li > a {
        background: #f7f8f9;
        border-bottom: 1px solid #d9d9d978;
    }

    .navbar__box > ul > li > ul > li > a {
        color: #133c60;
        white-space: normal;
        padding: 5px 30px 6px 30px;
        border-bottom: 1px solid #33333321;
        border-bottom: 0;
        position: relative;
        white-space: normal !important;
    }

    .navbar__box > ul > li > ul > li > a {
        color: #0b253c;
        width: 100%;
        height: auto;
        display: inline-block;
        padding: 9px 14px;
        font-size: 14px;
        position: relative;
        background: #fff;
        font-weight: 500;
        text-align: left;
        z-index: 98;
    }

    .navbar__box > ul > li > ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
    }

    .navbar__box > ul > li > ul > li {
        position: relative;
    }

    .navbar__box > ul > li > ul {
        position: absolute;
        top: 0;
        left: 0;
        border: none;
        visibility: hidden;
        transform: none !important;
        box-shadow: 1px 0px 5px 8px #33333308;
    }

    .navbar__box ul > li > ul > li > ul {
        left: 0;
        width: 100%;
        background: #f7f8f9;
    }

    .navbar__box > ul > li > ul > li > ul > li > a {
        color: #011b54 !important;
        font-size: 14px;
        padding-left: 12px;
        font-weight: 600;
    }

    .navbar__box > ul > li > ul > li > ul > li {
        border-bottom: 1px solid #dcdcdd;
    }
}


@media only screen and (min-width:1024px) and (max-width:1199px) {

   
    .contact_block-text {
        padding: 38px 32px !important;
    }

    .navbar__box > ul > li > a {
        padding: 20px 5px !important;
    }

    .navbar__box > ul {
        padding: 0px;
    }

    /*.navbar__box--icon {
        right: 14% !important;
    }*/

    #navbar__box1.open {
        right: 15% !important;
    }
}


@media only screen and (min-width:1200px) and (max-width:1400px) {
    .main_nav {
        margin-top: 2%;
    }
    .contact_block-text {
        padding: 33px 32px !important;
    }
    .navbar__box > ul > li > a {
        padding: 20px 10px !important;
    }

    .navbar__box > ul {
        padding: 0px;
    }

    /*.navbar__box--icon {
        right: 11% !important;
    }
*/
    #navbar__box1.open {
        right: 16% !important;
    }
}

.navbar__box ul {
    /*overflow-x: clip;*/
    justify-content: center;
    margin-right: 5%;
}
@media only screen and (min-width:1400px) {
    .main_nav {
        margin-top: 2%;
    }
    .navbar__box ul {
        justify-content: center;
    }
}
/*.navbar__box li:hover{
    color:black !important;
}
*/

