html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body{
    margin:0;
    font-family: "Poppins", sans-serif;
    overflow-x:hidden;
    line-height: 1;
}

img {
    max-width: 100%;
}

figure {
    padding: 0;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
}

figure > img{
    width: 100%;
}

header{
    background:#111;
    padding:20px 0;
}

header.scrolled{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}


.logo{
    display:flex;
    align-items:center;
    color:white;
    transition: all 0.3s ease;
    width: 220px;
}

.school-text{
    display: none;
}

.school-text h3{
    margin: 10px 0 0 0px;
    font-size: 17px;
    font-weight: normal;
    line-height: 28px;
}

.school-text span{
    font-size:20px;
}

.logo > img {
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-menu li.dropdown{
    position: relative;
    padding-right: 11px;
}

li.dropdown > a:after {
    background-image: url(../images/next-arrow-g.svg);
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    background-position: center;
    right: -6px;
    top: 3px;
    transform: rotate(90deg);
    background-size: 7px;
    background-repeat: no-repeat;
}

li.dropdown > a:hover:after{
    background-image: url(../images/next-arrow-w.svg);
}

.nav-menu a{
    text-decoration:none;
    color:#BDBDBD;
    font-size:18px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu .active{
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Submenu hidden by default */
.submenu {
    display: none;
    position: absolute;
    top: 155%;
    left: 0;
    background: #111;
    list-style: none;
    padding: 0;
    min-width: 150px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index:    1;
}

.submenu li a {
    padding: 9px 0;
    display: inline-block;
        border-bottom: 2px solid transparent;
}

/* Hover pe show hoga */
.dropdown:hover .submenu {
    display: block;
    padding: 8px 14px;
}


.bg_color{
    background: transparent linear-gradient(180deg, #FFF9E0 0%, #FFDDDD 100%) 0% 0% no-repeat padding-box;
    padding: 50px 0;
}


.bg_img{
    background: url(../images/bg-1.jpg);
    padding: 40px 0;
    background-size: cover;
    background-repeat: no-repeat;
}


.bg_dark{
    background: #550009;
    padding: 40px 0;
}


.right_border{
    position: relative;
}


.right_border:after {
        content: "";
    border-right: 1px dashed #FFBB00;
    top: -40px;
    bottom: -40px;
    position: absolute;
    right: 6%;
}

.bg_light{
    background: transparent linear-gradient(180deg, #FFBB00 0%, #FFE291 100%) 0% 0% no-repeat padding-box;
    padding: 50px 0;
}

.space-r{
    padding-right: 40px; 
    box-sizing: border-box;
}

.cta, .form-container button {
    position: relative;
    background: #E60019;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    padding: 14px 44px 14px 24px;
    display: inline-block;
    font-size: 18px;
    margin-top: 30px;
    border: 0;
    transition: all 0.3s ease;
}

.cta:hover , .form-container button:hover{
        background: #0C0C0C;
}

/* Arrow as pseudo element */
.cta::after, .form-container button::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 52%;
    width: 11px;
    height: 11px;
    background: url(../images/next-arrow-w.svg) no-repeat center;
    background-size: contain;

    transform: translateY(-50%) translateX(0);
    transition: transform 0.3s ease;
}

/* Hover pe smooth move */
.cta:hover::after, 
.form-container button:hover::after {
    transform: translateY(-50%) translateX(6px);
}


.form-container button{
    margin-top: 0; 
}

hr.hr{
    border: 1px solid #FFE291;
    margin: 40px 0;
}


p{
    font-size: 14px;
    line-height: 22px;
    margin: 15px 0 0 0;
}

span.name {
    color: #fff;
    margin-top: 15px;
    display: block;
    font-size: 18px;
}

p.white.small {
    font-size: 11px;
    line-height: 18px;
        margin-top: 4px;
}

.span_cover {
    margin-top: 10px;
}

.labels{
    margin: 0;
    padding: 0;
}

.labels .label{
    background: #fff;
    color: #000;
    padding: 4px 9px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    margin: 5px 4px 5px 0px;
    font-size: 14px;
}

span.number,
span.message {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding-left: 25px;
}

span.number:after{
    content: "";
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    background: url(../images/phone-icon.svg) #E60019;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    top: -3px;
    border-radius: 3px;
}

span.message:after {
    content: "";
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    background: url(../images/email-icon.svg) #E60019;;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    top: -3px;
    border-radius: 3px;
}

span.number {
    margin-right: 10px;
}

.flex_box > .col_60 > img{
        width: 520px;
} 

.flex_box {
    display: flex;
    flex-wrap: wrap;
}

.col_60{
    flex: 0 0 58%;
    max-width: 58%;
}

.col_40{
    flex: 0 0 42%;
    max-width: 42%;
}

.col{
    flex: 0 0 50%;
    max-width: 50%;
}

.sub_heading{
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 20px 0;

}


.box{
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin: 0 12px;
}

.box .title {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.box p {
    text-align: left;
}

.box > .cta{
    margin-top: 15px;
    text-align: left;
}

.box i.icon {
        margin-bottom: 15px;
    display: flex;
    width: 54px;
    height: 54px;
}



.pic_box figure{
    position: relative;
}

.caption{
background: #550009 0% 0% no-repeat padding-box;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    bottom: 6px;
    left: 6px;
    right: 6px;
    top: auto;
    opacity: .8;
    padding: 17px 15px;
}

.caption h4 {
    color: #fff;
    padding: 0;
    margin: 0 0 8px 0;
        font-size: 16px;
}

.caption span {
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: 12px;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    position: absolute;
    bottom: 26px;
    left: 0;
    padding: 0;
    right: 0;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active{
    width: 15px;
}

ul.slick-dots li{
   width: 6px;
    height: 6px;
    background: #0C0C0C;
    border-radius: 8px;
    margin: 0 2px;
    border: 1px solid #FFBB00;
}


.toggle{
        background: #FFBB00;
    left: -32px;
}


.arrow{
    width: 26px;
    height: 26px;
    font-size: 0;
    border: 0;
    border-radius: 50px;
    position: absolute;
    cursor: pointer;
        background-size: 6px !important; 
}

.slick-arrow {
    width: 38px;
    height: 38px;
    font-size: 0;
    border: 0;
    border-radius: 50px;
    position: absolute;
    cursor: pointer;
}

.next,.slick-next{
    background: url(../images/next-arrow.svg) #FFBB00;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    right: 0;
    left: auto;
}

.slick-next{
    top: 45%;
    z-index: 1;
    right: -15px;
}

.slick-prev{
    top: 45%;
    z-index: 1;
    left: -15px !important;
}

.prev,.slick-prev{
    background: url(../images/previous-arrow.svg) #FFBB00;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    left: 0;
    right: auto;
}


.prev_next_cover {
    width: 105px;
    position: relative;
    margin: auto;
    bottom: 42px;
}



.bg_dark_2{
    background: #000;
    padding: 50px 0;
}

.white{
    color: #fff;
}

.red_box{
    background: #E60019;
    padding: 40px;
    border-radius: 16px;
    box-sizing: border-box;
}

.mb-0{
    padding-bottom: 0; 
}

.text{
    background: #FFBB00;
    border: 2px solid #0C0C0C;
    padding: 20px;
    border-radius: 12px;
    height:80px;
    overflow:hidden;
    position:relative;
}


.text p{
    position:absolute;
    animation:marqueeUp 4s linear infinite;
}

@keyframes marqueeUp{
    0%{
        bottom:-100%;
    }
    100%{
        bottom:100%;
    }
}

.map_box{
        background: #0C0C0C;
    padding: 50px 0;
}

.map_details li{
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
        margin: 13px 0;
}

ul.map_details li i {
        flex: 0 0 42px;
    height: 42px;
    background: #E60019;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

ul.map_details {
    margin: 0;
    padding: 0;
    list-style: none;
}

.map_details li p {
 flex: 0 0 70%;
    max-width: 70%;
    margin: 0 0 0 14px;
    line-height: 22px;
}

.flex_box.alin-center {
    align-items: center;
}

.Public_disclosre{
    padding: 0 40px;
}

.Public_disclosre .slick-slide > div{
    height: 100%;
}

.Public_disclosre ul.slick-dots,
.pic_box ul.slick-dots{
        position: static;
    margin-top: 14px;
}


.Public_disclosre ul.slick-dots li{
    width: 10px;
    height: 10px;
}

.Public_disclosre ul.slick-dots li.slick-active{
    width: 20px;
}


.Public_disclosre .slick-slide > div > h4,
.academics-public-disclosre h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.academics-public-disclosre .slide {
    margin-bottom: 40px;
}

.result-x{
    margin-bottom: 30px; 
}

.table_coll {
    border: 1px solid #fff;
    border-collapse: collapse;
    width: 100%;
}

.table_coll td{
    border: 1px solid #fff;
    padding: 10px 13px;
    font-size: 14px;
    line-height: 18px;
}


.documents-and-information {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-sizing: border-box;
}

.documents-and-information > a {
    position: relative;
    border: 1px solid #000;
    background: #fff;
    display: inline-block;
    padding: 10px 40px 10px 20px;
    margin: 7px 4px;
    text-decoration: none;
    border-radius: 30px;
    color: #000;
    font-size: 13px;
    transition: all 0.3s ease;
}

/* Arrow */
.documents-and-information > a::after {
    content: "";
    position: absolute;
    right: 21px;
        top: 49%;
    width: 8px;
    height: 8px;
    background: url(../images/next-arrow.svg) no-repeat center;
    background-size: contain;

    transform: translateY(-50%) translateX(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover */
.documents-and-information > a:hover {
    background: #E60019;
    color: #fff;
    border-color: #E60019;
}

/* Arrow hover move + color change */
.documents-and-information > a:hover::after {
    background: url(../images/next-arrow-w.svg) no-repeat center;
    background-size: contain;
    transform: translateY(-50%) translateX(6px);
}

.staff-information,.result,.school-infrastructure,.general-information {
    /*background: #550009;*/
    background: url(../images/Mandatory-Public-Disclosre-bg.jpg);
    color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-sizing: border-box;
}


/* CSS Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Container */
.container{
    width:100%;
    max-width:1140px;
    margin:auto;
    padding-left:15px;
    padding-right:15px;
}

h1.main-title {
    font-size: 27px;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 1;
}

.breadcrumb > a {
    font-size: 14px;
    text-decoration: none;
    margin-right: 5px;

}

.breadcrumb > a.home{
    color: #E60019;
    margin-right: 3px;
}

.banner{
    line-height: 0;
    position: relative;
}

.caption_layer {
   position: absolute;
    top: 20px;
    bottom: 11px;
    display: flex;
    align-items: end;
    left: 0;
    right: 0;
    flex-wrap: wrap;
    line-height: 1;
}

.banner img {
    width: 100%;
}

.form_heading{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #D5D5D5;
    padding-bottom: 15px;
}



.form-container {
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-container label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    height: 44px;
    font-family: "Poppins", sans-serif;
            font-weight: 500;
}

.form-container textarea {
    resize: none;
    height: 100px;

}


.academics_bg{
   background: url(../images/academics_bg.jpg);
    padding: 50px 0;
    background-size: contain;
}





/* Responsive Breakpoints */

/* Large devices (992px - 1199px) */
@media (max-width:1199px){
    .container{
        max-width:960px;
    }

    .nav-menu{
        gap:20px;
    }

    .logo{
        width: 300px;
    }
}

/* Medium devices (768px - 991px) */
@media (max-width:991px){
    .container{
        max-width:720px;
    }
}

@media (max-width: 992px){
        .three_box {
    padding: 0 20px;
    margin: 0 10px;
}


  .three_box  ul.slick-dots{
bottom: -22px;
}
}



/* mobile responsive */
@media (max-width:990px){

    .menu-toggle{
               display: block;
        color: #fff;
        position: absolute;
        right: 15px;
    }

    .bg_img{
        text-align: center;
    }

    .right_border {
    margin-bottom: 20px;
    }

    span.number{
                margin: 14px 0; 
    }

    .right_border:after{
        display: none;
    }

    nav{
        display: none;
    }

    .nav-menu{
                position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        gap: 20px;
        padding: 30px 40px;
        z-index: 1;
    }

    .active.active{
        display:block;
    }

    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col_60,.col_40{
         flex: 0 0 100%;
        max-width: 100%;
    }

    .space-r{
        padding: 0;
        margin-bottom: 15px; 
    }

    .dropdown:hover .submenu{
            width: 100%;
    }

    .container.header-flex {
    max-width: 96%;
}
}


@media (min-width: 991px){
    .pic_box {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}
}


@media (max-width: 990px){
    .pic_box {
    margin-top: 30px;
        padding: 0 30px;
}

.pic_box figure {
    margin: 0 10px;
}

.order1 {
    order: 1;
}

.order1{
    margin-top:20px; 
}
}


/* Small devices (576px - 767px) */
@media (max-width:767px){
    .container{
        max-width:100%;
    }
    .Public_disclosre{
        padding: 0;
    }

    .banner img {
   width: 100%;
        height: 160px;
        object-fit: cover;
        object-position: 40%;
}
}

@media (max-width:576px){

    .staff-information, .result, .school-infrastructure, .general-information{
        overflow: scroll;
    }

    .sub_heading{
        font-size: 24px;
    }

    .table_coll td{
                font-size: 10px;
        padding: 10px 6px;
    }

    .documents-and-information {
    padding: 20px 17px;
}

    .documents-and-information > a{
                margin: 7px 3px;
        font-size: 10px;
        padding: 10px 35px 10px 9px;
    }

    .logo{
        width: 220px;
    }

    .nav-menu {
        top: 76px;
    }

    .red_box{
        padding: 20px;
    }
    .staff-information, .result, .school-infrastructure, .general-information{
            padding: 30px 20px;
    }

    .banner img{
        object-position: 25%;
    }

    h1.main-title{
        font-size: 25px;
    }

    .documents-and-information .small {
    padding: 0 20px;
}
}

