﻿@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/Poppins-Regular.ttf)
}

@font-face {
    font-family: "Poppins-Medium";
    src: url(../fonts/Poppins-Medium.ttf);
   
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: "Mochiy";
    src: url(../fonts/mochiy.ttf);
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins-Regular";
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: 0.5s;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.scrolled {
    border-bottom: none !important;
    /*box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
}
ul{
    list-style: none;
}
.navbar-nav {
    margin-left: auto !important;
    display: flex;
    gap: 10px;
}
header {
    background: #ffffffb5;
    position: fixed;
    z-index: 1;
    padding: 10px 10px;
    width: 97%;
    border-radius: 20px;
    transform: translate(22px, 10px);
    backdrop-filter: blur(4px);
    border: 1px solid #ddd;
    z-index: 999;
    transition: 0.5s;
}

.headersticky {
    background: #fff;
    width: 100%;
    transform: unset;
    border-radius: 0px;
    box-shadow: 1px 1px 16px 0px #e3e3e3;
    border-bottom: none;
    transition: 0.5s;
}

header .navbar-brand img {
    width: 150px;
}

.topheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #dddddd;
}

    .topheader ul {
        display: flex;
        justify-content: start;
        align-items: center;
    }

        .topheader ul li {
            font-size: 14px;
            display: flex;
            justify-content: start;
            align-items: center;
            margin-right: 40px;
        }

            .topheader ul li span {
                font-family: 'Poppins-Medium';
                color: #0355a1;
            }

            .topheader ul li i {
                background: #c49750;
                color: #fff;
                width: 35px;
                height: 35px;
                border-radius: 50%;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                margin-right: 8px;
            }

a.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    /* border: 0; */
    vertical-align: middle;
    text-decoration: none;
    font-family: inherit;
    font-family: 'mochiy';
    font-size: 12px;
}

.learn-more {
    font-weight: 600;
    color: #382b22;
    text-transform: uppercase;
    padding: 8px 15px;
    background: #fde9c9;
    border: 2px solid #c49750;
    border-radius: 0.75em;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

    .learn-more::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #edcc98;
        border-radius: inherit;
        /* -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
    box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;*/
        -webkit-transform: translate3d(0, 6px, -1em);
        transform: translate3d(1, 1px, 8px);
        transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
    }

    .learn-more:hover {
        background: #fde9c9;
        -webkit-transform: translate(0, 0.25em);
        transform: translate(0, 0.25em);
    }

        .learn-more:hover::before {
            /*-webkit-box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
 box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;*/
            -webkit-transform: translate3d(0, 0.5em, -1em);
            transform: translate3d(0, 0.5em, -1em);
        }

    .learn-more:active {
        background: #fbe2b8;
        -webkit-transform: translate(0em, 0.75em);
        transform: translate(0em, 4px);
    }
.navcontainer {
    padding: 15px 30px !important;
    padding-bottom: 0 !important;
}

.navbar-nav .nav-item a {
    font-size: 14px;
    color: #000;
    font-family: 'Poppins-Regular';
    padding: 9px 15px;
}
    .navbar-nav .nav-item a.menustudentlogin {
        background: #0356a2;
        border-radius: 10px;
        padding: 8px 20px;
        color: #fff;
    }

/*.nav-item .dropdown .dropdiv .dropbtn a:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}*/

.nav-item .dropdown .dropdiv .dropbtn a:last-child {
    /*border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
    border-bottom: none !important
}

.nav-item .dropdown .dropdiv .dropbtn a {
    color: #000 !important;
    width: auto;
    padding: 7px 15px !important;
    border-bottom: 1px solid #f1f1f1;
    text-transform: capitalize !important;
    transition: all .1s ease-in;
    font-size: 14px;
    border-radius: 0px;
    cursor: pointer;
}

    .nav-item .dropdown .dropdiv .dropbtn a:hover {
        background: #c89e5b !important;
        color: white !important;
        cursor: pointer;
        
    }

.side-btns {
    gap: 2px;
    overflow: hidden;
}

    .side-btns a {
        background: #005BAB !important;
        border-radius: 4px;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        text-decoration: none;
        width: 141px;
        padding-left: 10px;
        padding-right: 10px;
        height: 44px;
        transition: transform 0.3s ease;
        position: relative;
    }

    .side-btns a {
        transform: translateX(100px);
    }

        .side-btns a:hover {
            transform: translateX(0);
        }

    .side-btns p {
        color: white;
        margin-bottom: 0;
    }

.hero .banner-home {
    width: 100%;
}

#playButton2 {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    padding: 20px;
    background: transparent;
    backdrop-filter: blur(3px);
    border-radius: 50px;
    background-color: #0000004D;
}

.play-home-video {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    padding: 30px;
    background: transparent;
    backdrop-filter: blur(3px);
    border-radius: 50px;
    background-color: #0000004D;
    /* height: 28px;
     width: 28px; */
}

.notice-circular {
    margin-top: 70px;
}

    .notice-circular .card {
        border: none;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 30px;
        height: 100%;
        position: relative;
    }

.ourbranches .card img {
    margin: 10px;
    transition: all .3s;
}

.card .layer {
    position: absolute;
    width: 100%;
    height: 0;
    background: #fcfcfc;
    background: linear-gradient(182deg, transparent 27%, rgba(7, 58, 97, 1) 100%);
    display: flex;
    align-items: end;
    justify-content: center;
    margin-left: 0;
    opacity: 0;
    transition: all .3s;
    color: white;
}

.card:hover .layer {
    height: 100%;
    width: 100%;
    opacity: .8;
    border-radius: 30px;
}

.card:hover .pre-img {
    transform: translateY(-8px);
}

.layer h4 {
    transition: all .4s;
}

.our-team .card:hover h4 {
    color: white;
    z-index: 1000
}

.reg-btn{
    text-decoration:none;
    color:red;
    font-weight:bold;
    z-index:9999 !important
}

/*.reg-btn {
    animation: blink 1.5s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}*/


.sports-card .layer {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, transparent 37%, rgb(0 136 255) 100%);
    display: flex;
    align-items: end;
    justify-content: center;
    margin-left: 0;
    opacity: 0;
    transition: all .3s;
    color: white;
    border-radius: 50%;
    background-size: cover;
}
    .sports-card .layer.cricketsport {
        background: url(../images/cricketbg.jpg);
        background-size: cover;
    }
    .sports-card .layer.basketballsport {
        background: url(../images/basketballbg.jpg);
        background-size: cover;
    }
    .sports-card .layer.footballsport {
        background: url(../images/footballbg.jpg);
        background-size: cover;
    }
    .sports-card .layer.taekwondosport {
        background: url(../images/taekwondobg.jpg);
        background-size: cover;
    }
    .sports-card .layer.tabletennissport {
        background: url(../images/TT.jpg);
        background-size: cover;
    }

    .sports-card .layer.yogasport {
        background: url(../images/yoga_img.JPG);
        background-size: cover;
        background-position:bottom;
    }
    .sports-card .layer.atheleticsport {
        background: url(../images/athelete_sport.JPG);
        background-size: cover;
    }
    .sports-card .layer.badmintonsport {
        background: url(../images/badminton_img.jpeg);
        background-size: cover;
    }

    .sports-card .layer.handballsport {
        background: url(../images/handball_sport.jpeg);
        background-size: cover;
        background-position:right;
    }

.handball-div{
    height:400px !important;
}

.sports-card:hover .layer {
    height: 100%;
    width: 100%;
    opacity: 1;
    border-radius: 0;
}

.sports-card:hover p {
    color: #00529C;
}

.sports-card .layer p {
    transform: translateX(40px);
    opacity: 0;
}

.sports-card:hover .layer p {
    transform: translateX(-40px);
    opacity: 1;
}

.our-team-img {
    border-radius: 5px;
}

.our-team .card {
    padding: 30px 0 !important;
}

.notice-circular .card h3 {
    color: #fff;
    font-size: 22px;
    padding: 10px 30px;
    background: linear-gradient(to right, #004c97, #c6933b);
    border-radius: 30px 30px 0 0;
}

.notice-circular .card .notices {
    padding: 21px 34px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.notice-circular .card .innercrd {
    padding: 12px 18px;
    border: 1px solid #D8D8D8;
    background: rgba(2, 83, 155, 0.05);
    border-radius: 14px;
}

    .notice-circular .card .innercrd p {
        font-size: 14px;
        line-height: 26px;
        margin: 0;
        color: #000;
    }

.navbar {
    position: relative;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 100;
}

.toptwobtns {
    position: absolute;
    display: flex;
    gap: 9px;
    top: 0;
    right: 30px;
}

    .toptwobtns a {
        color: #fff;
        background: #C89E5B;
        text-decoration: none;
        padding: 8px 15px;
        border-radius: 0 0 10px 10px;
        font-size: 14px;
    }

@media only screen and (min-width: 1200px) {
    .amazing-features {
        background-size: cover !important;
    }
}

@media only screen and (max-width: 600px) {
    .toptwobtns {
        display: none;
    }
}

.mainpillar {
    margin-top: 70px;
    background: rgba(200, 158, 91, 0.34);
    padding: 75px 0;
    background-image: url("../images/our-team-svg.png");
    background-repeat: no-repeat;
    background-position: top right;
}

    .mainpillar .row div span {
        font-size: 16px;
        color: #00529C;
        font-family: 'Poppins-Medium';
    }

    .mainpillar .row div h3 {
        font-size: 40px;
        font-family: 'Mochiy';
    }

    .mainpillar .row div p {
        font-size: 15px;
    }

.ourteam {
    margin-top: 44px;
}

    .ourteam .card {
        padding: 22px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 2px dotted #000000;
        margin: 0 8px;
        height: 288px;
        margin-bottom: 25px;
    }

        .ourteam .card img {
            width: 168px;
        }



@media only screen and (max-width : 991px) {
    .megaimg {
        display: none;
    }

    .ourteam {
        grid-gap: 0 !important;
    }
}

.ourbranches {
    padding: 75px 0;
}

    .ourbranches .row div span {
        font-size: 16px;
        color: #00529C;
        font-family: 'Poppins-Medium';
    }

    .ourbranches .row div h3 {
        font-size: 40px;
        font-family: 'Mochiy';
    }

    .ourbranches .row div p {
        font-size: 14px;
    }

    .ourbranches .row .card {
        background: #F2F6FA;
        border: none;
        border-radius: 20px;
    }

        .ourbranches .row .card img {
            width: 80px;
        }

@media only screen and (max-width: 991px) {
    .maingap {
        margin-top: 40px;
    }
}

.ourteam .card h4 {
    margin-top: 11px;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 0;
}

.ourteam .card span {
    margin-top: 2px;
    font-size: 15px !important;
    letter-spacing: 0;
    color: #000 !important;
}

.about-us {
    margin-top: 70px;
}

    .about-us .row div span {
        font-size: 16px;
        color: #00529C;
        font-family: 'Poppins-Medium';
    }

    .about-us .row div h3 {
        font-size: 40px;
        font-family: 'Mochiy';
    }

    .about-us .row div p {
        font-size: 15px;
    }

.about-us-features {
    background: #ebebeb;
    border-radius: 11px;
    padding: 15px 20px;
    transition: 0.5s;
    background: linear-gradient(213deg, #c4964e30, transparent);
    border-radius: 11px;
    padding: 15px 20px;
    border: 1px solid #ddd;
}
    .about-us-features:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
        transition: 0.5s;
        background: linear-gradient(213deg, transparent, #c4964e30);
    }
    .about-us-features img {
        padding: 10px;
        background: #c89e5c;
        border-radius: 15px;
        width: 45px;
    }

.amazing-features {
    background-image: url(../images/custombg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding: 45px 0;
}
.featuresheading{
    text-align: center;
}
    .featuresheading h3 {
        font-family: 'Mochiy';
        font-size: 35px;
    }

    .amazing-features p {
        color: #000;
    }
.amazing-icons {
    justify-content: center;
    margin-top: 30px;
}
    .amazing-features img {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid #ddd;
    }

.amazing-inner-div {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .amazing-inner-div p {
        margin-top: 10px;
        font-size: 18px;
        text-align: center;
        font-family: 'Poppins-Medium';
        margin-bottom: 0px;
    }

.why-choose {
    padding: 70px;
}

    .why-choose span {
        color: #005BAB
    }

    .why-choose p {
        margin: auto
    }

.why-choose-inner .card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 25px;
    height: 190px;
    border: none;
}

    .why-choose-inner .card img {
        width: 46px;
        height: 46px;
    }

.why-choose-inner p {
    text-align: center;
}

.why-choose .blue-active {
    background: #005BAB;
}

    .why-choose .blue-active p {
        color: #fff
    }

    .why-choose .blue-active img {
        padding: 5px;
        border-radius: 50%;
        background: white;
    }

.admission-section {
    width: 100%;
    background: url(../images/admissionbghome.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-left: 98px;
    padding-bottom: 40px;
    padding-top: 130px;
    border-radius: 20px;
}

    .admission-section p {
        max-width: 600px;
    }


.btn-danger {
    background: #C89E5B;
    border: 1px solid #C89E5B;
}

.sports small {
    font-size: 16px;
    color: #00529C;
    font-family: 'Poppins-Medium';
}

.sports-card {
    border: 1px solid #c5c5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
}

.sports .col-md-3 {
    padding: 0
}

.sports-card img {
    width: 74px;
    height: 74px
}

.sports-card p {
    font-size: 18px
}

.short-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.explore-maxfort {
    width: 100%;
    background: linear-gradient(2deg, black, transparent), url(../images/mxmidbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 76px;
}

footer {
    margin-top: 70px;
    background: rgba(200, 158, 91, 0.34) !important;
    padding: 75px 0;
    background-image: url(../images/footer-svg.png);
    background-repeat: no-repeat;
    background-position: top right;
}

    footer img {
        transition: all .1s ease-in;
    }

    footer li a {
        font-size: 15px;
        color: #000;
        text-decoration: none;
    }

.copyright {
    background-color: #D8CDBC;
    display: flex;
    justify-content: center;
    padding: 10px;
}

footer h5 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    font-family: 'Mochiy';
}

footer li {
    font-size: 15px !important;
    margin: 0 !important;
    transition: .2s all ease-in;
}

    footer li:hover a {
        color: #005bab !important;
    }

    footer li:hover {
        transform: translateX(5px);
    }

.icon-list li:hover {
    transform: translateX(0) !important;
}

.icon:hover {
    transform: scale(1.1) !important
}

footer img:hover {
    transform: scale(.95) !important;
}

footer .icon img:hover {
    transform: translateY(-3px) !important;
}



.copyright p {
    font-size: 15px !important;
    margin: 0 !important;
    font-family: "Poppins", sans-serif;
}

    .copyright p a {
        color: #005BAB !important;
    }

.icon {
    padding: 10px;
    background: #005BAB;
    border-radius: 50%;
}

.btn-danger:hover {
    background: #c6933b !important;
    border: 1px solid #c6933b !important;
}



.navbar-brand-centered {
    position: absolute;
    left: 50%;
    display: block;
    width: 160px;
    text-align: center;
    background-color: transparent;
}

.navbar > .container .navbar-brand-centered,
.navbar > .container-fluid .navbar-brand-centered {
    margin-left: -80px;
}

.dropdown a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

.dropdow li:hover {
    background-color: #c6933b !important;
}

.dropdown-menu {
    background-color: #004c97;
}

    .dropdown-menu a {
        color: white;
    }

.hero video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}



@media (min-width: 1200px) {

    .no-border-left {
        border-left: none !important;
    }

    .no-border-right {
        border-right: none !important;
    }

    .no-border-top {
        border-top: none !important;
    }

    .no-border-bottom {
        border-bottom: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1250px) {
    .amazing-features {
        background-image: url("../images/amazing-features.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        min-height: 300px;
    }


    .amazing-icons {
        gap: 10px !important;
    }

    .sports-card {
        border: 1px solid #00529C;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .no-border-left {
        border-left: none !important;
    }

    .no-border-right {
        border-right: none !important;
    }

    .no-border-top {
        border-top: none !important;
    }

    .no-border-bottom {
        border-bottom: none !important;
    }

    .hero {
        height: 65vh;
        position: relative;
    }

   
    .item {
        height: 400px !important;
    }
}

@media(max-width: 768px) {
    

    .html {
        overflow-x: hidden;
    }

    .side-btns {
        top: 15% !important;
    }

    .hero .play-home-video {
        padding: 18px !important
    }


    .hero {
        height: 55vh;
    }

        .hero .banner-home {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }


    .why-choose {
        padding: 10px !important;
        margin-top: 50px;
    }

    /*.admission-section {
        padding: 65px 20px 115px 20px;
        background-size: inherit;
        margin-top: 50px;
    }*/

    .explore-maxfort {
        padding: 25px 10px;
    }

        .explore-maxfort h3 {
            font-size: 32px !important;
            text-align: center;
        }

    .small-flex-div {
        gap: 10px !important;
        align-items: center;
    }

        .small-flex-div p {
            text-align: center;
            font-size: 11px !important;
        }

    .sports-card {
        margin-top: 10px;
    }

    .explore-maxfort .btn-danger {
        margin-left: 20px !important;
        margin-top: 5px !important;
    }

   

    

    .img-grid .img-fluid {
        width: 88%;
    }

    .navcontainer {
        padding-left: 20px !important;
        padding-right: 0 !important;
        padding-top: 8px !important;
    }

    .navbar-brand img {
        width: 125px !important;
    }

    .navbar-nav li {
        margin: 0 !important;
    }

    .our-visionaries-detail {
        flex-wrap: wrap;
    }

    .megacontent {
        display: none;
    }

    .small-text {
        font-size: 15px !important;
    }

    .large-text {
        font-size: 28px !important
    }

    .gallery-row {
        margin-left: 0px !important;
    }
}

.gallery-row {
    margin-left: 0px;
}
/* @media (max-width:400px) {
    .hero .play-home-video {
        padding: 12px !important;
        height: 45px;
        width: 45px;
    }

    .hero .play-home-video img {
        top: 15% !important;
    }

    .side-btns {
        top: 35px !important;
    }

    .side-btns a {
        padding: 10px;

    }
} */


@media(max-width:600px) {
}

.mission-hero {
    height: 73vh;
}

    .mission-hero img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 15%;
    }

.mission-div {
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px !important;*/
    border-radius: 10px;
    margin-top: 70px;
    width: 100%;
}

    .mission-div h4 {
        margin-bottom: 30px;
    }

    .mission-div p {
        font-size: 15px;
        margin-bottom: 10px;
    }

.our-mission {
    background: #005BAB;
    padding: 12px;
}


/* ............advisory............. */

.advisory {
    padding: 20px;
    border-radius: 10px;
}

.about-details {
    background: #7b85a4 !important;
    padding: 35px;
    margin: 20px 0;
    color: white;
    border-radius: 150px 0;
    padding: 70px;
}

    .about-details p {
        margin: 0 !important;
    }

.orange-bg-color {
    background: #dea27c !important;
    border-radius: 0 150px;
    padding: 70px;
}

/* .............our visionaries............ */

our-visionaries-hero {
    height: 73vh;
}

.our-visionaries-hero img {
    object-position: bottom !important;
}

.our-visionaries-detail {
    padding: 35px;
    margin: 20px 0;
    display: flex;
    gap: 20px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 8px;
}

    .our-visionaries-detail:hover {
        box-shadow: rgba(10, 26, 54, 0.25) 0px 2px 3px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    }

    .our-visionaries-detail img {
        border-radius: 8px 8px 0 0;
    }

    .our-visionaries-detail p {
        text-align: justify;
        padding: 0 !important;
    }


.our-visionaries-detail {
    border-radius: 10px;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.5s ease-in;
}

    .our-visionaries-detail::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: #005BAB;
        height: 100%;
        width: 0;
        z-index: -1;
        transition: width 0.5s ease;
    }

    .our-visionaries-detail:hover::before {
        width: 100%;
    }

    .our-visionaries-detail:hover .message {
        color: #ffffff;
    }

    .our-visionaries-detail:hover .our-visionaries-detail img {
        background: white !important;
    }

    .our-visionaries-detail p {
        padding: 10px 0;
    }


.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-card {
    position: relative;
    font-family: sans-serif;
    width: 220px;
    min-height: fit-content;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(182, 182, 182, 0.4);
    transition: .6s;
    margin: 0 25px;
    flex-basis: 32% !important;
    transition: all .3s;
    margin: 0;
}

/* .profile-card:hover {
    box-shadow: 0 0 18px rgba(116, 116, 116, 0.4);


} */

.profile-card {
    border-radius: 10px;
    height: fit-content;
}

    .profile-card .img {
        position: relative;
        width: 100%;
        height: 100%;
        transition: .6s;
        z-index: 99;
        position: relative;
        width: 100%;
        height: 100%;
        transition: .6s;
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }

    .profile-card .img {
        transform: translateY(-60px);
    }

.img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card img {
    border-radius: 10px;
    transition: all .5s;
}

.profile-card:hover img {
    border-radius: 50% !important;
}


.caption {
    margin-top: 70px;
}

.profile-card .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
    font-family: sans-serif;
}

.caption p {
    font-size: 15px;
    color: #5f5f5f;
    font-family: sans-serif;
    margin: 2px 0 9px 0;
    text-align: justify;
}

    .caption p a {
        color: rgb(0, 102, 255) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        cursor: pointer;
    }

.caption .social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    color: #0c52a1;
}

.modal-body {
    color: #4e4e4e;
    font-size: 14px;
}

.visionary-text {
    width: fit-content;
    margin: auto;
}

    /*.visionary-text::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0px;
        height: 30px;
        width: 30px;
        border-radius: 50px 0;
        background: #00529C;
        left: 50%;
        transform: translate(-50%, -50%);
    }*/

    .visionary-text::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0px;
        height: 3px;
        width: 70%;
        background: #00529C;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.our-visionaries-hero {
    height: 73vh !important;
}

@media (max-width: 1200px) {
    .main {
        flex-wrap: wrap;
        height: auto !important;
    }

    .profile-card {
        flex-basis: 100% !important;
        margin-top: 100px;
    }

    .our-visionaries-hero {
        height: 50vh !important;
    }
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}

.modal-body .row {
    margin-top: 10px;
}

.modal-body p {
    text-align: justify;
    font-size: 13px;
}

.closebtn {
    background-color: #004c97;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.visioner {
    background-color: #004c9785;
    padding: 5px;
    font-size: 14px;
    margin: 0;
    color: #fff;
    text-align: center;
    position: absolute;
    width: 91%;
    bottom: 23px;
}

.gallery-img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}




.item {
    height: 10rem;
    padding: 6px;
    opacity: 0.4;
    transition: .4s ease all;
    transform: scale(0.9);
    height: 260px;
}

    .item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }



.slick .item {
    background: #3498db;
}

.active .item,
.slick-center {
    opacity: 1;
    transform: scale(1);
}

.owl-controls {
    position: absolute;
    margin-top: 300px;
}

.owl {
    width: 100%;
    margin: auto;
}

.owl-dots {
    width: 85%;
    margin: auto;
}

.owl img {
    border-radius: 8px !important;
}

@media (max-width:700px) {
    .item {
        padding: 0;
        margin: 0 00px;
    }


    .ourteam {
        gap: 15px !important;
    }

}

.owl-controls .btn {
    margin: 0 10px;
}

.nav-item .dropdown .dropdiv {
    width: auto !important;
    position: absolute !important;
    top: 20px !important;
    border: none;
    border-radius: unset;
    animation-duration: .7s;
    background: transparent !important;
    z-index: 10;
}



.megacontent,
.megaimg {
    padding: 0 20px;
}

.maintitme {
    font-weight: 600;
    font-size: 19px;
}

.mainpara {
    font-size: 14px !important;
    line-height: 25px;
    text-align: justify;
}

.row-padding {
    padding: 0 100px;
}

.megacontent .hdred-cta {
    font-size: 15px;
    color: #fff !important;
    background: #C89E5B;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
}

.megaimg img {
    width: 100%;
}



#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    background-color: #d79f4500;
    color: white;
    border: none;
    padding: 0px 0px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
    transition: 0.5s;
}
#scrollToTopBtn:hover{
    bottom: 30px;
    transition: 0.5s;
}
    #scrollToTopBtn img {
        width: 26px;
    }

html {
    scroll-behavior: auto; /* Disable native smooth scrolling */
}

.grid-div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .grid-div img {
        width: 100%
    }

.grid-div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .grid-div img {
        width: 100%
    }


.img-layer {
    position: absolute;
    height: 90%;
    width: 93%;
    background-color: #000000d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    padding: 10px 40px;
    text-align: center;
    transition: all .3s ease-in;
    border-radius: 10px;
}
    .img-layer p {
        font-size: 28px;
        font-family: 'Mochiy';
    }

    .img-layer * {
        transform: translateY(-75%);
        opacity: 0;
        transition: all .3s ease-in
    }

.col-span:hover .img-layer {
    opacity: 1;
}

    .col-span:hover .img-layer * {
        transform: translateY(0);
        opacity: 1;
    }
.newherosection {
    background-size: cover;
    padding: 330px 0 150px 0;
    position: relative;
}

.bannerheading h3 {
    color: #fff;
    font-size: 45px;
    font-family: 'mochiy';
    position: absolute;
    bottom: 0;
    background: linear-gradient(1deg, #000000, #0000005c, transparent);
    margin-bottom: 0px;
    width: 100%;
    left: 0;
    text-align: center;
    padding: 20px 0;
}
.contentsidewrapper h4 {
    font-family: 'Mochiy';
    margin-bottom: 20px;
    font-size: 40px;
    color: #034e92;
}

.contentsidewrapper p {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: justify;
}
.mb-70{
    margin-bottom: 70px;
}
.miniheading {
    font-size: 16px;
    color: #00529C;
    font-family: 'Poppins-Medium';
}
.contentsideimg img{
    width: 100%;
    border-radius: 10px;
}
.whychoosecontent h3 {
    font-size: 35px;
    font-family: 'Mochiy';
    margin-bottom: 15px;
}

.whychoosecontent p {
    font-size: 15px;
}

.whychoosecard {
    background: #f3f3f3;
    padding: 30px 20px;
    border-radius: 30px;
    margin-top: 30px;
    text-align: center;
}

    .whychoosecard img {
        width: 50px;
        margin-bottom: 10px;
    }

    .whychoosecard h4 {
        font-size: 20px;
        font-family: 'Mochiy';
    }

    .whychoosecard p {
        font-size: 15px;
    }
.mobileshow{
    display: none;
}
.bannerslider .slick-prev, .bannerslider .slick-next {
    font-size: 20px;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: #00000057;
    border-radius: 50%;
    backdrop-filter: blur(1px);
    z-index: 1;
}
.bannerslider .slick-next {
    right: 35px;
}

.bannerslider .slick-prev {
    z-index: 1;
    left: 35px;
}
.bannermainwrapper {
    height: 100vh;
}

.banner1 {
    background: url(../images/maxfortbg.jpg);
    background-size: cover;
    background-position: center;
}

.banner2 {
    background: url(../images/slider_img2.jpg);
    background-size: cover;
    background-position: top;
}

.banner3 {
    background: url(../images/slider_img3.jpg);
    background-size: cover;
    background-position: top;
}

.banner4 {
    background: url(../images/slider_img4s.jpg);
    background-size: cover;
    background-position: center -35px;
}
.banner5 {
    background: url(../images/slider_img5.jpg);
    background-size: cover;
    background-position-y:0;
}
.banner6 {
    background: url(../images/slider_img6.jpg);
    background-size: cover;
    background-position: center;
}
.banner7 {
    background: url(../images/slider_img7.jpg);
    background-size: cover;
    background-position: center -100px;
}
.banner7s {
    background: url(../images/slider_img7s.JPG);
    background-size: cover;
    background-position: center -100px;
}
.banner8 {
    background: url(../images/slider_img8.jpeg);
    background-size: cover;
    background-position: center -100px;
}
.banner9 {
    background: url(../images/slider_img9.jpeg);
    background-size: cover;
    background-position: center -100px;
}
.banner10 {
    background: url(../images/slider_img10.jpeg);
    background-size: cover;
    background-position: center -100px;
}
.banner11 {
    background: url(../images/slider_img11.jpeg);
    background-size: cover;
    background-position: center -100px;
}




.sidebar {
    position: fixed;
    right: -500px; /* hidden by default */
    top: 0;
    width: 500px;
    height: 100%;
    background: #fff;
    color: #0054A2;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    padding-top: 65px; /* space for close button */
    z-index: 4444;
}

    /* Open state */
    .sidebar.open {
        right: 0;
    }

/* Close button */
.close-btn {
    position: absolute;
    top: 30px;
    right: 55px;
    font-size: 34px;
    cursor: pointer;
}

/* Sidebar list */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    padding: 9px 20px;
    cursor: pointer;
    position: relative;
}

    .sidebar li:hover {
        background: #9b9b9b1c;
    }

/* Submenu */
.submenu {
    display: none;
    background: #9b9b9b1c;
}

    .submenu li {
        padding-left: 40px;
    }

.has-submenu {
    position: relative;
    padding-right: 40px;
    color: #0054A2 !important;
}

    .has-submenu::after {
        content: "\f0d7";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 8% !important;
        pointer-events: none;
    }

    .has-submenu.open::after {
        content: "\f0d8";
        top: 2% !important;
    }

.maxfort-navbar {
    position: fixed;
    top: 30px;
    z-index: 3333;
    margin: auto;
    width: 90% !important;
    left: 5%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.sidebar a {
    text-decoration: none;
    color: #0054A2;
}

.menu-toggle {
    background: #0054A2;
}

.std-login {
    background: #0356a2;
    border-radius: 10px;
    padding: 8px 20px;
    color: #fff !important;
}

.reg-btn {
    background: #fff;
    border-radius: 10px;
    padding: 8px 20px;
    color: #fff !important;
    border: 1px solid #cf973a;
    color: #cf973a !important;
}

    .reg-btn:hover {
        background: #cf973a;
        color: #fff !important;
        border: 1px solid #cf973a;
        transition: all .3s;
        font-weight: 500 !important;
    }

.sidebar li a {
    display: block !important;
}

@media (max-width: 600px) {
    .sidebar {
        width: 100%;
    }

    .menu-toggle:hover {
        background: none;
        border: none;
        color: transparent
    }

    .btn-div {
        flex-direction: column;
    }

        .btn-div a {
            width: 100%;
            text-align: center;
        }

    .maxfort-navbar {
        top: 0px
    }

    .menu-toggle {
        padding: 10px;
    }

        .menu-toggle::after {
            content: "☰";
            font-size: 24px;
            background: #0b5ed7;
            color: white;
            padding: 6px 15px;
            margin-left: -51px;
            /* margin-top: -16px !important; */
            border-radius: 7px;
        }

    /* Hide original text */
    .menu-toggle {
        color: transparent; /* hides text content */
        background: none;
        border: none;
    }

        .menu-toggle * {
            display: none; /* extra insurance */
        }

    .max-logo {
        width: 120px;
        margin-top: 21px;
    }
}

.maxfort-navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 100% !important;
    left: 0;
    padding: 10px 50px;
    top: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

/*.banner2 {
    background: url(../images/bannerslider2.JPG);
    background-size: cover;
    background-position: top;
}

.banner3 {
    background: url(../images/bannerslider3.JPG);
    background-size: cover;
    background-position: top;
}

.banner4 {
    background: url(../images/bannerslider1.JPG);
    background-size: cover;
    background-position: center;
}*/
.amazing-icons {
    gap: 50px;
}
.visionariescard {
    background: linear-gradient(29deg, #c69a5540, #0356a21c);
    padding: 50px 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 20px;
    position: relative;
}

.visionarypersonwrap {
    text-align: center;
    padding: 15px 15px;
    border-radius: 10px;
    margin-right: 20px;
    width: 300px;
    display: inline-block;
}

    .visionarypersonwrap h2 {
        font-size: 24px;
        font-family: 'Poppins-Medium';
        margin-top: 10px;
        display: inline-block;
        margin-bottom: 0px;
    }

    .visionarypersonwrap p {
        margin-bottom: 0px;
    }

.visionarycontent {
    display: inline-block;
    width: calc(100vw - 670px);
    position: relative;
    background: #fff;
    font-size: 15px;
    padding: 30px 50px;
    border-radius: 20px;
}

    .visionarycontent img:nth-child(1) {
        position: absolute;
        width: 69px;
        top: -20px;
        left: -20px;
    }

    .visionarycontent img:nth-child(2) {
        position: absolute;
        width: 69px;
        right: -20px;
        bottom: -20px;
    }

    .visionarycontent p {
        font-size: 15px;
        margin-bottom: 0px;
    }

.visionarypersonwrap img {
    width: 65%;
    border-radius: 10px;
    margin-bottom: 8px;
}
.pincipalmessage {
    background: url(../images/principalmessagebg.png);
    background-size: cover;
    background-position: bottom;
}

.pincipalmessage {
    background: url(../images/principalmessagebg.png);
    background-size: cover;
    background-position: bottom;
    padding: 80px 64px;
    border-radius: 26px;
    border: 1px solid #ddd;
}

    .pincipalmessage h3 {
        font-size: 35px;
        font-family: 'Mochiy';
        margin-bottom: 15px;
    }

    .pincipalmessage h4 {
        font-size: 22px;
        font-family: 'Poppins-Medium';
    }

    .pincipalmessage p {
        font-size: 14px;
        margin-bottom: 6px;
    }

        .pincipalmessage p:nth-child(4) {
            width: 800px;
        }

        .pincipalmessage p:nth-child(5) {
            width: 700px;
        }

        .pincipalmessage p:nth-child(6) {
            width: 680px;
        }

        .pincipalmessage p:nth-child(7) {
            font-size: 16px;
            font-family: 'Poppins-Medium';
            margin-top: 20px;
        }
#successmodal .modal-body {
    padding: 30px 50px;
    text-align: center;
}
    #successmodal .modal-body h4 {
        font-size: 25px;
        font-family: 'Mochiy';
        color: #000;
        margin-bottom: 10px;
    }
    #successmodal .modal-body i {
        background: green;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        margin: auto;
        margin-bottom: 20px;
    }
    #successmodal .modal-body p {
        text-align: center;
        font-size: 14px;
    }
    #successmodal .modal-body .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
    }
.bannerslider .slick-prev:hover, .bannerslider .slick-prev:focus, .bannerslider .slick-next:hover, .bannerslider .slick-next:focus {
    color: #ffffff;
    outline: none;
    background: #00000057;
}

.reg-link {
    color: red;
    font-weight: bold;
    position: absolute;
    right: 20%;
    z-index: 5555;
    text-decoration: none;
}


