/* font family */

@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);
}




/* color pallete 
dark gray : #1C1C1C text color;
soft white : #F5F8FA for bg content
orange  : #FF7B00 for hvr
light blue : #E8F0FA for cards */

/* font family end */

* {
    margin: 0;
    padding: 0;
}


body {
    font-size: 16px;
    font-family: "Poppins-Regular";
    transition: 0.5s;
    color: #000;
}

html {
    scroll-behavior: smooth;
}


input, select, textarea{
    font-size: 14px;
}
img {
    max-width: 100%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-80 {
    margin-top: 80px;
}

.paddingspacing {
    padding: 60px 0px;
}

.mt-140 {
    margin-top: 140px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

#scrollTopBtn{
    position: fixed;
    right: 25px;
    bottom: 55px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(189deg, #121E7D, #1E2F96, #4F6DFF);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-120px);

    transition: opacity 0.3s ease;
}

/* Show Button */
#scrollTopBtn.show{
    opacity: 1;
    visibility: visible;

    animation: dropButton 0.7s ease forwards;
}

/* Drop Animation */
@keyframes dropButton{

    0%{
        transform: translateY(-120px);
    }

    60%{
        transform: translateY(15px);
    }

    80%{
        transform: translateY(-5px);
    }

    100%{
        transform: translateY(0);
    }
}

.mainheader {
    border-bottom: 1px dashed #d3d3d3;
}

.mainheader .navbar-brand {
    width: 296px;
}

.mainheader {
    width: 100%;
    transition: all 0.4s ease;
}

/* jab sticky lage */
.headersticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transform: translateY(0);
    animation: slideDown 0.4s ease;
}

/* smooth entry animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.ylwbtn {
    background-color: #E8A526;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    transition: 0.5s;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
    text-decoration: none;
    justify-content: center;
}

.primarybtn:hover {
    background-color: #fff;
    color: #000;
    transition: 0.5s;
}

.mgntbtn {
    background-color: #EB8362;
    padding: 10px 18px;
    border-radius: 10px;
    color: #ffffff;
    transition: 0.5s;
    font-size: 15px;
    border: 1px solid #EB8362;
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
    text-decoration: none;
    justify-content: center;
}

.secondarybtn:hover {
    background-color: #000;
    color: #fff;
    transition: 0.5s;
}



.topbarcontent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbarcontent .headerfeetag {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 15px;
    gap: 0 6px;
    color: #000;
}

.topheader {
        border-bottom: 1px solid #ddd;
    padding: 10px 0px;
    background: linear-gradient(88deg, #121E7D, #1E2F96, #4F6DFF);
}
.topbarsocial{
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    gap: 0 8px;
}
.topbarsocial h4{
    margin-bottom: 0px;
    font-size: 18px;
}
.topbarsocial ul {
        display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 14px;
}
.topbarsocial ul li{
    line-height: 0;
}
.topbarsocial ul li a{
        color: #fff;
    font-size: 18px;
    line-height: 0;
    display: inline-block;
}
.topbardropdownwrapper{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 50px;
    position: relative;
}
.topbardropdownwrapper::before{
    position: absolute;
    content: '';
    background: #fff;
    width: 2px;
    height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}
.topbardropdown .dropdown-toggle{
    background: transparent;
    border: none;
    color: #fff;
    padding: 0px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.topbardropdown .dropdown-toggle i{
        margin-right: 6px;
}
/* .topbarcontent ul {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0 10px;
} */

.topbardropdown .dropdown-menu{
        width: max-content;
    padding: 10px 20px;
        transform: translate(0px, 34px) !important;
}
.topbardropdown .dropdown-menu li{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.topbardropdown .dropdown-menu li:last-child{
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.topbardropdown .dropdown-menu li img{
        width: 29px;
}
.topbardropdown .dropdown-menu li a{
        font-size: 15px;
    font-family: 'Poppins-Medium';
    padding: 0 0;
}
.topbardropdown .dropdown-menu li a i{
    position: relative;
    top: 2px;
    margin-right: 3px;
}
.topbardropdown .dropdown-item:hover{
    background: transparent;
}
.topbardropdown .dropdown-menu li a p{
        margin-bottom: 0px;
    font-size: 12px;
    font-family: 'Poppins-Regular';
    color: #323232;
}
.navmenucustom {
    justify-content: space-between;
}

.navmenucustom .nav-item .nav-link {
    color: black;
    font-size: 14px;
    padding: 0 10px;
}

/* Jab kisi ek item pe hover ho */
.navmenucustom .navbar-nav:hover .nav-link {
    color: #a3a3a3;
    /* gray */
}

/* Jo actual hovered link hai wo black rahe */
.navmenucustom .navbar-nav .nav-link:hover {
    color: #121E7D;
}

.navmenucustom .headerbtnwrap {
    display: flex;
    gap: 0 8px;
}

.navmenucustom .navbar-nav {
    margin-left: auto;
}

.videosectionwrapper {
        width: 100%;
    background: #f7f5f5;
}

.videosectionwrapper video {
    width: 100%;
}

.about_content {
    padding-right: 30px;
    position: relative;
}

.about_content h3 {
    font-size: 34px;
    font-family: 'Poppins-Medium';
    margin-bottom: 15px;
}

.about_content p {
    font-size: 15px;
    margin-bottom: 0px;
}

.about_content .headinghead {
    margin-bottom: 4px;
}
.aboutfeatures{
    background: #E6DECB;
    padding: 16px 20px;
    border-radius: 15px;
    transition: 0.5s;
}
.aboutfeaturesinnercontent{
    background: #F7F7F2;
    padding: 20px;
    border-radius: 15px;
}
.aboutfeaturesinnercontent h4{
    font-size: 26px;
    font-family: 'Poppins-Medium';
    margin-bottom: 12px;
}
.aboutfeaturesinnercontent ul li{
        display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
    gap: 0 8px;
    border-bottom: 1px dashed #B3B3B3;
    padding-bottom: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
}
.aboutfeaturesinnercontent ul li:hover{
    transition: 0.5s;
    padding-left: 10px;
}
.headinghead {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.headinghead::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../img/star.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    vertical-align: middle;
}

.statsnmbr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
}

.statsnmbr li {
    position: relative;
    text-align: center;
}
.statsnmbr li::before{
        content: '';
    position: absolute;
    width: 1px;
    height: 26px;
    background: #828282;
    right: -70px;
    top: 14px;
}
.statsnmbr li:last-child:before{
     display: none;
}

.statsnmbr li h4 {
    font-size: 30px;
    font-family: 'Poppins-Semibold';
    margin-bottom: 2px;
}
.statsnmbr li h6{
    font-size: 14px;
    color: #565656;
}

.statsnmbr li h5 {
    font-size: 15px;
}

.mainheading_wrapper {
    width: 1034px;
    margin: auto;
    text-align: center;
    margin-bottom: 35px;
}

.mainheading_wrapper h3 {
    font-size: 34px;
    margin-bottom: 0px;
}

.wingcard {
    border-radius: 15px;
    position: relative;
    transition: 0.5s;
}
.wingcard:hover{
        transform: translateY(-8px);
        cursor: pointer;
        transition: 0.5s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}
.wingcardcontent {
    padding: 12px 15px;
    text-align: center;
    border-radius: 0px 0px 15px 15px;
}

.wingcardcontent h4 {
    font-size: 18px;
    font-family: 'Poppins-Medium';
    margin-bottom: 2px;
}

.wingcardcontent p {
    font-size: 14px;
    margin-bottom: 0px;
}

.wgcolor1 {
    background: #FDF7EA;
    color: #D5910F;
}

.wgcolor2 {
    background: #D1E8FD;
}

.wgcolor3 {
    background: #F1F1DA;
    color: #9A9A33;
}

.admissionbg {
    background-image: url(../img/admissionbg.png);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-top: 35px;
}

.admissioncontet {
    text-align: center;
    padding: 30px 0px;
}

.admissioncontet h4 {
    font-size: 25px;
    margin-bottom: 2px;
    font-family: 'Poppins-Medium';
}

.admissioncontet h5 {
    font-size: 16px;
    margin-bottom: 25px;
    font-family: 'Poppins-Regular';
}

.achievementbg {
    background: linear-gradient(88deg, #121E7D, #1E2F96, #4F6DFF);
    border-radius: 15px;
    padding: 35px 0px;
    color: #fff;
}

.achievementinner {
    width: 1034px;
    margin: auto;
    text-align: center;
}
.achievementinner button{
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    border-radius: 7px;
    transition: 0.5s;
    padding: 10px 20px;
}
.achievementinner button:hover{
        border: 1px solid #fff;
    background: #1a2a8e;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}
.achievementsstats{
        border-top: 1px dashed #ffffff73;
    margin-top: 37px;
}
.galleryimgwrapper img {
    vertical-align: middle;
    margin: 10px 0px;
}

.graybg{
    background: #F7F5F5;
    padding: 60px 0px;
}
.shapingtext h3{
    font-size: 23px;
    margin-bottom: 24px;
}
.shapincardwrapper {
    border-radius: 15px;
    padding: 24px 16px 16px 16px;
    margin: 17px 0px;
    transition: 0.5s;
}
.shapincardwrapper:hover{
    transform: translateY(-8px);
    cursor: pointer;
    transition: 0.5s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.shapingcardcontent h4 {
    font-size: 20px;
    margin-bottom: 4px;
    margin-top: 21px;
}

.shapingcardcontent p {
    font-size: 12px;
    margin-bottom: 0px;
}

.shapincardwrapper1 {
    background: linear-gradient(360deg, #93D4FF, #D1ECFF);
    border: 1px solid #98D6FF;
}
.shapincardwrapper2 {
    background: linear-gradient(360deg, #FFDD90, #FFE8AD);
    border: 1px solid #FFDD90;
}
.shapincardwrapper3 {
    background: linear-gradient(360deg, #93D4FF, #D1ECFF);
    border: 1px solid #98D6FF;
}
.shapincardwrapper4 {
    background: linear-gradient(360deg, #FFDD90, #FFE8AD);
    border: 1px solid #FFDD90;
}
.shapincardwrapper5 {
    background: linear-gradient(360deg, #EBD8FF, #F3E6FF);
    border: 1px solid #EBD8FF;
}
.shapincardwrapper6 {
    background: linear-gradient(360deg, #FFA57D, #FFE1C9);
    border: 1px solid #FFA57D;
}

.contactbg{
    background-image: url(../img/contactbg.png);
    padding: 60px 0px;
    background-size: cover;
    background-position: center;
}
.contactform{
    background: #fff;
    border-radius: 15px;
    padding: 40px;
}
.contactform h4{
font-size: 25px;
margin-bottom: 4px;
}
.contactform p{
    font-size: 15px;
}
.contactform form .form-group{
    margin-bottom: 12px;
}
.contactform form .form-group label{
    font-size: 15px;
    margin-bottom: 4px;
    color: #000;
}
.contactcards{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 16px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 15px 22px;
}
.contactcards div label{
    font-size: 18px;
    margin-bottom: 1px;
}
.contactcards div p{
    color: #565656;
    margin-bottom: 0px;
    font-size: 15px;
}
.contactcontent h3{
    font-size: 24px;
    margin-bottom: 35px;
    font-family: 'Poppins-Regular';
}
.contactcontent h4{
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Poppins-Regular';
}
footer{
    background-image: url(../img/footerbg.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0px 0px 0px ;
}
.footerlinks h4{
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Poppins-Medium';
}
.linkslist li a{
    display: inline-block;
    color: #000;
    font-size: 15px;
    margin-bottom: 11px;
    border-bottom: 1px dashed #3f3f3f;
    transition: 0.5s;
}
.linkslist li a:hover{
        margin-left: 5px;
        transition: 0.5s;
}
.footerbottom{
    margin-top: 45px;
    border-top: 1px dashed #3f3f3f;
    padding: 10px 0px;
    
}
.footerbottomwrap{
display: flex;
    justify-content: space-between;
    align-items: center;
}
.footerbottomwrap p{
    color: #000;
    margin-bottom: 0px;
    font-size: 15px;
}
.footerbottomwrap p a{
    color: #EB8362;
}
.footerbottomwrap ul{
        display: flex;
    justify-content: end;
    margin-bottom: 0px;
    gap: 0 8px;
}
.footerbottomwrap ul li a{
    color: #000;
}

.footerabout img{
    margin-bottom: 16px;
}
.footerabout ul{
        display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 22px;
}
.footerabout ul li a{
    color: #000;
    font-size: 18px;
    transition: 0.5s;
}
.footerabout ul li a:hover{
    transition: 0.5s;
    transform: translateY(5px);
}
.footerabout ul li a i{
    transition: 0.5s;
}
.footerabout ul li a i:hover{
        transform: translateY(-5px);
        transition: 0.5s;
}
.footerabout h4{
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 23px;
    position: relative;
}
.footercontactlinks li{
    margin-bottom: 11px;
}
.footercontactlinks li a{
    display: flex;
    color: #000;
    font-size: 15px;
    gap: 0 12px;
    align-items: baseline;
    justify-content: start;
}

.trendingnewswrapper h4{
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Poppins-Regular';
}
.trendingnewscard{
    border-radius: 15px;
    background: #f5f5f5;
    border: 1px solid #DDDDDD;
    transition: 0.5s;
    margin-bottom: 20px;
    padding: 18px 20px;
}

.trendingnewscard h2{
    font-size: 18px;
    margin-bottom: 4px;
    color: #121E7D;
    font-family: 'Poppins-Regular';
}
.trendingnewscard p{
    font-size: 14px;
    color: #666666;
    padding-bottom: 12px;
    border-bottom: 1px dashed #CDCDCD;
    margin-bottom: 12px;
}
.trendingnewscard ul{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 4px;
}
.trendingnewscard h5{
    margin-bottom: 0px;
    font-size: 16px;
    color: #000;
}
.eventcalendarbg{
    background: linear-gradient(88deg, #121E7D, #1E2F96, #4F6DFF);
    border-radius: 15px;
    color: #fff;
    padding: 22px;
}
.eventcalendarbg h4{
    font-size: 28px;
    margin-bottom: 28px;
    font-family: 'Poppins-Medium';
}
.eventcalendarbg ul li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 13px;
    margin-bottom: 15px;
}
.eventcalendarbg ul li:last-child{
    margin-bottom: 0px;
}
.eventcalendarbg ul li .datetag{
        font-size: 16px;
    color: #121E7D;
    background: #fff;
    padding: 12px 19px;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eventcalendarbg ul li h5{
    font-size: 18px;
    margin-bottom: 0px;
}
.facultymessage{
    padding: 22px;
    border-radius: 15px;
    transition: 0.5s;
    background: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 20px;
    margin-top: 25px;
}
.facultymessage:hover{
        transform: translateY(-8px);
    cursor: pointer;
    transition: 0.5s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.facultymessage div p{
    font-size: 15px;
    margin-bottom: 8px;
}
.facultymessage div h5{
    font-size: 16px;
    margin-bottom: 2px;
}
.facultymessage div h6{
    color: #565656;
    margin-bottom: 0px;
    font-size: 13px;
}
.facilitiescard{
    border-radius: 15px;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}
.facilitiescard .facilityname{
    background: linear-gradient(359deg, #18278a, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.swiper-slide {
  width: auto !important; /* optional fix */
}
.sliderbtn{
    background: #fff;
    color: #121E7D;
    border: 1px solid #121E7D;
    border-radius: 50%;
    z-index: 111;
}
.sliderbtn svg{
    width: 10px !important;
    color: #121E7D;
}
.facilitiesliderwrapper{
    position: relative;
}
.facilitiesliderwrapper .swiper-button-next{
    right: -20px !important;
}
.facilitiesliderwrapper .swiper-button-prev{
    left: -20px !important;
}
.aboutsectionbg{
        background: #F7F5F5;
    padding: 60px 0px 120px 0px;
}
.aboutimg_wrapper{
        position: relative;
}
.aboutimg_wrapper img{
        filter: brightness(0.6);
        width: 100%;
}
.aboutimg_wrapper .playbutton{
        position: absolute;
    left: 50%;
    top: 50%;
    border: none;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121E7D;
    transform: translate(-50%, -50%);
}
.aboutftrs{
    margin-top: -60px;
}
.featurespd{
       display: flex;
    justify-content: space-between;
    background: #F7F7F2;
    padding: 20px;
    border-radius: 15px;
    flex-direction: column;
}
.pdpsowner{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 11px;
}
.pdpsowner div h5{
    font-size: 16px;
    margin-bottom: 2px;
}
.pdpsowner div h6{
    color: #656565;
    font-size: 14px;
    margin-bottom: 0px;
}
.aboutfeaturesheight{
    height: -webkit-fill-available;
}
.aboutfeaturesinnercontentheight {
    height: -webkit-fill-available;
}
.about_contentbtn{
    display: flex;
    gap: 0 19px;
}
.about_contentbtn a{
    display: inline-block;
}

.achievementsstats .statsnmbr li h6{
    color: #fff;
}
.achievementsstats .statsnmbr li::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 26px;
    background: #d7d7d7;
    right: -92px;
    top: 14px;
}
.galleryimgwrapper div{
    position: relative;
    transition: 0.5s;
}
.galleryimgwrapper div:hover img{
    filter: brightness(0.4);
}
.galleryimgwrapper div img{
    transition: 0.5s;
}
.galleryimgwrapper div:hover button{
    display: block;
    transition: 0.5s;
}
.galleryimgwrapper div button{
        display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 60px;
    transition: 0.5s;
}

.innerherosection{
    background-image: url(../img/innerbg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 160px 0;
}

.innerherosectioncontent{
        position: absolute;
    text-align: center;
    width: 100%;
    background: linear-gradient(181deg, #121e7d3b, #121e7da1, #121E7D);
    left: 0;
    bottom: 0;
    padding: 12px;
    color: #ffff;
}
.innerherosectioncontent h3{
    font-size: 34px;
    margin-bottom: 0px;
}

.textframebg{
    background-image: url(../img/aboutframe.png);
    background-size: cover;
    padding: 60px 0px;
}
.messageperson img{
    margin-bottom: 12px;
    width: 100%;
}
.messageperson h4{
    font-size: 18px;
    font-family: 'Poppins-Medium';
}
.messageperson p{
    color: #565656;
    font-size: 15px;
    font-family: 'Poppins-Medium';
}
.messageboxwrapper h3{
    font-size: 34px;
    margin-bottom: 12px;
    font-family: 'Poppins-Medium';
}
.messageboxwrapper p{
    font-size: 15px;
    margin-bottom: 8px;
    font-family: 'Poppins-Regular';
}
/* ============================= */
/* NAVBAR DROPDOWN HOVER EFFECT  */
/* ============================= */


/* Optional: smooth caret rotation */
.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}
.dropdown-menu{
    box-shadow: 1px 1px 14px 0px #cdcdcd;
    border: none;
}
.navbar .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.dropdown-item{
        font-size: 14px;
    padding: 6px 15px;
}
.dropdown-item:hover{
    color: #121E7D;
}
.galleryfilters{
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}
.galleryfilters ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    padding-left: 0px;
    margin-bottom: 0px;
}
.albumcard{
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    transition: 0.5s;
}
.albumcard img{
        width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}
.albumcard h4{
        font-size: 20px;
    margin-top: 15px;
    margin-bottom: 4px;
}
.albumcard p{
    font-size: 14px;
    color: gray;
    margin-bottom: 0px;
}
.albumcard p span{
    color: #121E7D;
        font-family: 'Poppins-Medium';
}
.albumcard:hover{
    transition: 0.5s;
    cursor: pointer;
        transform: translateY(-8px);
}
#galleryModal .modal-body .btn-close{
    position: absolute;
    right: 20px;
}
.albumallimgwrapper h4{
        margin-bottom: 20px;
    font-size: 19px;
    font-family: 'Poppins-Regular';
}
.albumallimgwrapper ul{
        display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding-left: 0px;
    margin-bottom: 0px;
}
.albumallimgwrapper ul li{
    position: relative;
}
.albumallimgwrapper ul li:hover img{
        filter: brightness(0.4);
        transition: 0.5s;
        cursor: pointer;
}
.albumallimgwrapper ul li:hover i{
        display: block;
        transition: 0.5s;
}
.albumallimgwrapper ul li img{
        width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}
.albumallimgwrapper ul li i{
        display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 60px;
    transition: 0.5s;
}



/* TOP */
.mpd_top {
  background: #eef3ff;
  padding: 25px;
  border-radius: 12px;
}

.school_info h4 {
  font-weight: 700;
  color: #0d2c6c;
}

.school_info ul {
  padding: 0;
  list-style: none;
}

.school_info li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* CARD */
.mpd_card {
  background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e3e8f0;
    height: -webkit-fill-available;
}

.mpd_card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0d2c6c;
}

.mpd_card h4 span {
  background: #0d2c6c;
  color: #fff;
  padding: 4px 10px;
  border-radius: 50%;
  margin-right: 8px;
}

/* TABLE */
.mpd_card table {
  width: 100%;
  border-collapse: collapse;
}

.mpd_card table th,
.mpd_card table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.mpd_card table th {
  background: #f3f6fb;
}

/* DOC LIST */
.doc_list {
  list-style: none;
  padding: 0;
}

.doc_list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.doc_list i {
  margin-right: 8px;
  color: #0d2c6c;
}

.doc_list a {
  background: #0d2c6c;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
}

/* RESULT BOX */
.result_box h5 {
  background: #0d2c6c;
  color: #fff;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
}

/* LINKS */
.quick_links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick_links a {
  background: #eef3ff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: #0d2c6c;
}


.contact_section {
  background: #f5f7fb;
  padding: 60px 0;
}

/* LEFT */
.contact_left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact_left p {
  color: #555;
  margin-bottom: 25px;
}

.contact_info {
  display: grid;
  gap: 15px;
}

.info_item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info_item i {
  font-size: 22px;
  color: #0d2c6c;
  margin-top: 5px;
}

.info_item h5 {
  margin: 0;
  font-size: 16px;
}

.info_item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* TIMINGS */
.office_timings {
  margin-top: 30px;
}

.office_timings h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.office_timings ul {
  padding-left: 18px;
}

.office_timings li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* FORM */
.contact_form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact_form h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #0d2c6c;
}

/* BUTTON */
.contact_form button {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.contact_form button:hover {
  background: #0d2c6c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact_left {
    margin-bottom: 30px;
  }
}

.mapwrapper{
    border-radius: 15px;
    overflow: hidden;
}
.mapwrapper h4 {
    font-size: 18px;
    font-family: 'Poppins-Medium';
    margin-bottom: 0px;
    text-align: center;
    margin: 15px 0px;
}

.guidingmessagebg{
   background-image: linear-gradient(45deg, #ffffffab, #ffffffab), url(../img/brownbg.png);
    background-size: cover;
    padding: 60px 60px;
    border-radius: 20px;
    text-align: center;
}
.guidingmessage p{
        margin-bottom: 4px;
}
.guidingmessage h4{
    font-size: 22px;
}

.schoolinfowrapper{
border-radius: 15px;
padding: 20px;
      background: #f2fbff;
}
.schoolinfoheader{
        background: linear-gradient(88deg, #121E7D, #1E2F96, #4F6DFF);
    border-radius: 15px;
    padding: 15px 15px;
    color: #fff;
    position: relative;
}
.schoolinfoheader div{
        display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 15px;
}
.schoolinfoheader div img{
        width: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 16px;
}
.schoolinfoheader div h4{
        font-size: 22px;
    margin-bottom: 0px;
}
.schoolinfoheader .rightsideimg{
    position: absolute;
    right: 30px;
    width: 80px;
    top: 14px;
    opacity: 0.4;
}
.schoollinkwrapper{
        background: #fff;
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
}
.schoollinkwrapper ul{
    padding-left: 0px;
    margin-bottom: 0px;
}
.schoollinkwrapper ul li{
        display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 20px;
}
.schoollinkwrapper ul li:first-child{
        margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed gray;
}
.schoollinkwrapper ul li i{
        background: #14208133;
    color: #142081;
    padding: 10px;
    border-radius: 50%;
}
.schoollinkwrapper ul li div h4{
        font-size: 21px;
    margin-bottom: 3px;
}
.schoollinkwrapper ul li div p{
        font-size: 15px;
    margin-bottom: 0px;
}


.mobilelinks{
        position: fixed;
    background: #fff;
    z-index: 9999;
    height: 100vh;
    width: 100%;
    right: 0;
    padding: 20px;
    top: 0;
}
.mobilelinks .btnclose{
    position: absolute;
    background: transparent;
    border: none;
    font-size: 30px;
    right: 20px;
}
.mobilelinks .impmoilelinks{
        list-style: circle;
    padding-left: 18px;
}
.mobilelinks .impmoilelinks li a {
  display: inline-block;
    color: #000;
    font-size: 15px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #3f3f3f;
    transition: 0.5s;
}

.mobilelinks img{
        width: 230px;
    margin-bottom: 30px;
}

.impmobilesocial h4{
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 23px;
    position: relative;
}
.impmobilesocial{
        position: absolute;
    bottom: 20px;
}
.impmobilesocial ul{
        display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 22px;
}

.impmobilesocial ul li a{
    color: #000;
    font-size: 17px;
}
.mbmenubtn{
        display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 10px;
}
.menuopenbtn{
    display: none;
        background: none;
    border: none;
    font-size: 22px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 40px;
}



.mobilelinks{
    display: none;
}

.agebg{
     background-image: url(../img/agebg.png);
    background-size: cover;
    border-radius: 20px;
    padding: 60px;
}
.withdrawlbg{
     background-image: url(../img/withdrawlbg.png);
    background-size: cover;
    border-radius: 20px;
    padding: 60px;
}
.agetable thead tr th{
        background: #ffe2c4;
    font-size: 14px;
    font-family: 'Poppins-Regular';
}

.agetable .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: #fffbf7;
}

.nurserybgwrap{
    background-image: url(../img/nurserybg.png);
    background-size: contain;
    background-position: top;
    padding: 60px 0px;
}

.nurserrysideimg img{
    width: 100%;
}
.nurserycontent h3{
        font-size: 34px;
    font-family: 'Poppins-Medium';
    margin-bottom: 15px;
}
.nurserystatswrap{
        background: #fff;
    border: 1px solid #efefef;
    border-radius: 9px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 12px;
    padding: 15px 15px;
    box-shadow: 1px 1px 20px 0px #cfcfcf;
}
.nurserystatswrap h4{
        font-size: 18px;
    font-family: 'Poppins-Medium';
    margin-bottom: 4px;
    color: #0f255c;
}
.nurserystatswrap p{
    font-size: 14px;
    margin-bottom: 0px;
}
.nurserystatswrap i{
        background: #e0ecfb;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
    color: #0f255c;
}
.nurserystats{
    margin-top: 30px;
}

.nurserystatswrap1 i{
    background: #d4f6e8;
}
.nurserystatswrap2 i{
    background: #fbe4e9;
}
.mapinnerwrapper{
        border-radius: 20px;
    overflow: hidden;
}



.primary-wing-section{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.primary-image-wrapper{
    position:relative;
}

.main-school-img img{
    width:100%;
    border-radius:35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.floating-tag{
    position:absolute;
    top:25px;
    left:25px;
    background:#0b3d91;
    color:#fff;
    padding:20px;
    border-radius:20px;
    width:160px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.floating-tag i{
    font-size:30px;
    margin-bottom:10px;
    display:block;
}

.floating-tag span{
    font-size:15px;
    line-height:1.6;
    font-weight:500;
}

.small-gallery{
    display:flex;
    gap:18px;
    margin-top:-70px;
    position:relative;
    z-index:2;
    padding:0 20px;
}

.gallery-card{
    flex:1;
}

.gallery-card img{
    width:100%;
    border-radius:25px;
    border:6px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.facility-wrapper{
    margin-top:45px;
}

.facility-wrapper h3{
    text-align:center;
    margin-bottom:30px;
    color:#0b3d91;
    font-weight:700;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.facility-card{
    background:#fff;
    padding:25px 15px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-8px);
}

.facility-card i{
    font-size:32px;
    color:#0b3d91;
    margin-bottom:15px;
}

.facility-card span{
    display:block;
    font-size:15px;
    font-weight:600;
    line-height:1.6;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border:2px solid #dbe7ff;
    border-radius:50px;
    color:#0b3d91;
    font-weight:700;
    background:#fff;
    margin-bottom:25px;
}

.primary-heading{
    font-size:68px;
    font-weight:800;
    color:#0b3d91;
    margin-bottom:40px;
    line-height:1.1;
}

.content-block{
    display:flex;
    gap:25px;
    padding-bottom:30px;
    margin-bottom:30px;
    border-bottom:1px solid #dfe7f3;
}

.icon-box{
    min-width:65px;
    height:65px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:26px;
    color:#0b3d91;
}

.content-block p{
    margin:0;
    color:#333;
    line-height:2;
    font-size:17px;
}

.counter-wrapper{
    margin-top:80px;
    background:#0b3d91;
    border-radius:30px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.counter-box{
    text-align:center;
    color:#fff;
    border-right:1px solid rgba(255,255,255,0.2);
}

.counter-box:last-child{
    border-right:0;
}

.counter-box h4{
    font-size:50px;
    font-weight:800;
    margin-bottom:10px;
    color:#ffd54f;
}

.counter-box p{
    margin:0;
    font-size:17px;
}

@media(max-width:991px){

    .primary-heading{
        font-size:48px;
    }

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .primary-heading{
        font-size:38px;
    }

    .small-gallery{
        flex-direction:column;
        margin-top:30px;
        padding:0;
    }

    .facility-grid{
        grid-template-columns:1fr;
    }

    .content-block{
        flex-direction:column;
    }

    .counter-wrapper{
        grid-template-columns:1fr;
    }

    .counter-box{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,0.2);
        padding-bottom:20px;
    }

    .counter-box:last-child{
        border-bottom:0;
    }
}

.housetable tbody tr td:first-child{
    font-family: 'Poppins-Medium';
}
.tabscontentwrapper{
    margin-top: 30px;
}
.tabscontentwrapper h4{
        font-size: 22px;
    margin-bottom: 6px;
}

.tabswrapper .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #E8A526;
    border-color: var(--bs-nav-tabs-link-active-border-color);
}
.tabswrapper .nav-tabs{
    border-bottom: 0px;
}
.tabswrapper .nav-tabs .nav-link {
    padding: 10px 18px;
    border-radius: 10px;
        background: #e8a5261c;
    color: #000;
        margin-right: 10px;
}
.tabswrapper .nav-tabs .nav-link:hover{
    color: #fff;
    background-color: #E8A526;
}

.tabscontentwrapper ul{
        padding-left: 18px;
    list-style: circle;
    margin-bottom: 0px;
}
.tabscontentwrapper ul li a {
    text-decoration: none;
    color: #0b3d91;
    font-size: 14px;
    display: inline-block;
    margin: 4px 0;
    transition: 0.5s;
}
.tabscontentwrapper ul li a:hover{
    margin-left: 8px;
    transition: 0.5s;
}
.listwrapper{
        background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
}

.pdfviewer{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    padding: 10px;
    margin-top: 30px;
}

.pdfviewer iframe{
    border: none;
    border-radius: 14px;
}

.assignmentbg{
        background: linear-gradient(45deg, #ffffff, transparent), url(../img/brownbg.png);
    background-size: cover;
    padding: 60px 0px;
    border-radius: 30px;
}

.pdf-listing{
        list-style: circle;
    column-count: 2;
    padding-left: 68px;
}
.pdf-listing li a{
    text-decoration: none;
    color: #000;
    font-size: 15px;
    display: inline-block;
    margin: 7px 0;
    transition: 0.5s;
    font-family: 'Poppins-Medium';
}

.pdf-listing li a:hover{
    margin-left: 8px;
    transition: 0.5s;
    text-decoration: underline;
}
.pdf-listingsingle{
        list-style: circle;
    padding-left: 68px;
}
.pdf-listingsingle li a{
    text-decoration: none;
    color: #000;
    font-size: 15px;
    display: inline-block;
    margin: 7px 0;
    transition: 0.5s;
    font-family: 'Poppins-Medium';
}

.pdf-listingsingle li a:hover{
    margin-left: 8px;
    transition: 0.5s;
    text-decoration: underline;
}

.feepoints ul{
    list-style: circle;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px 0px;
}
.feepoints ul li{
    color: #0b3d91;
    font-family: 'Poppins-medium';
}
.withdrawal_rules ul{
    list-style: circle;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px 0px;
}
.mottoimg_wrapper img{
    border-radius: 20px;
}

/* ── PHOTO STRIP ── */
  .pdps-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .pdps-photo-card {
    border-radius: 16px;
    overflow: hidden;
    height: 190px;
    position: relative;
  }

  .pdps-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
  }

  .pdps-photo-card:hover img {
    transform: scale(1.06);
  }

  .pdps-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.1rem 1.25rem 0.9rem;
    background: linear-gradient(0deg, rgba(18,30,125,0.88), transparent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    z-index: 2;
  }

  /* ── VISION / MISSION ── */
  .pdps-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pdps-sec {
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 18px;
    padding: 2.75rem 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .pdps-sec::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(18,30,125,0.05), rgba(79,109,255,0.09));
    pointer-events: none;
  }

  .pdps-sec-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(18,30,125,0.07), rgba(79,109,255,0.13));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .pdps-sec-icon i {
    font-size: 24px;
    color: #4F6DFF;
  }

  .pdps-sec-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4F6DFF;
    display: block;
    margin-bottom: 0.65rem;
  }

  .pdps-sec h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0d1a3a;
    margin-bottom: 1.1rem;
    line-height: 1.2;
  }

  .pdps-sec-line {
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, #121E7D, #4F6DFF);
    border-radius: 4px;
    margin-bottom: 1.4rem;
  }

  .pdps-sec p {
    font-size: 14.5px;
    line-height: 1.95;
    color: #556;
    font-weight: 400;
  }

  .pdps-sec-tag {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 7px 16px;
    background: rgba(79,109,255,0.08);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #4F6DFF;
    letter-spacing: 0.5px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .pdps-hero {
      grid-template-columns: 1fr;
    }
    .pdps-hero-right {
      height: 240px;
    }
    .pdps-motto-heading {
      font-size: 28px;
    }
    .pdps-hero-left {
      padding: 2.5rem 2rem;
    }
  }

  @media (max-width: 580px) {
    .pdps-sections,
    .pdps-photos {
      grid-template-columns: 1fr;
    }
    body {
      padding: 1.5rem 1rem;
    }
  }


  .secondary-wing {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .secondary-wing::before {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            background: #e9f2ff;
            border-radius: 50%;
            top: -120px;
            left: -120px;
            z-index: -1;
        }

        /* LEFT IMAGE */

        .secondary-image-wrapper {
            position: relative;
        }

        .secondary-image-wrapper img {
            width: 100%;
        }

        .floating-card {
            position: absolute;
            left: 40px;
            bottom: 40px;
            background: linear-gradient(135deg, #003b9f, #0d56d8);
            color: #fff;
            padding: 24px 28px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            min-width: 290px;
            box-shadow: 0 15px 35px rgba(0, 59, 159, 0.25);
        }

        .floating-card i {
            font-size: 40px;
        }

        .floating-card h5 {
            font-size: 22px;
            line-height: 1.5;
            margin: 0;
            font-weight: 600;
        }

        /* RIGHT CONTENT */

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 25px;
            color: #003b9f;
            font-weight: 600;
            font-size: 22px;
        }

        .section-tag .icon {
            width: 65px;
            height: 65px;
            border-radius: 18px;
            background: #e9f2ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-tag .icon i {
            font-size: 28px;
        }

        .main-heading {
            font-size: 92px;
            line-height: 1;
            font-weight: 800;
            color: #002c82;
            margin-bottom: 20px;
        }

        .heading-line {
            width: 90px;
            height: 5px;
            background: #f5b21c;
            border-radius: 20px;
            margin-bottom: 35px;
        }

        .content-box p {
            font-size: 22px;
            line-height: 2;
            color: #374151;
            margin-bottom: 35px;
        }

        /* FEATURE CARDS */

        .feature-row {
            margin-top: 80px;
        }

        .feature-card {
            background: #fff;
            border-radius: 30px;
            padding: 45px 25px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: .4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .feature-icon i {
            font-size: 28px;
            color: #003b9f;
        }

        .bg-blue {
            background: #e7f0ff;
        }

        .bg-green {
            background: #e8f7e6;
        }

        .bg-orange {
            background: #fff0e3;
        }

        .bg-purple {
            background: #f0e8ff;
        }

        .bg-yellow {
            background: #fff4d7;
        }

        .bg-pink {
            background: #ffe8f2;
        }

        .feature-card h4 {
                font-size: 22px;
    line-height: 1.5;
    color: #000;
    font-family: 'Poppins-Medium';
    margin-bottom: 5px;
        }

        .small-line {
            width: 50px;
            height: 4px;
            background: #f5b21c;
            margin: auto;
            border-radius: 10px;
        }

        /* RESPONSIVE */

        @media(max-width:1399px) {

            .main-heading {
                font-size: 70px;
            }

            .content-box p {
                font-size: 18px;
            }

        }

        @media(max-width:991px) {

            .secondary-wing {
                padding: 70px 0;
            }

            .main-heading {
                font-size: 58px;
            }

            .content-box p {
                font-size: 17px;
                line-height: 1.9;
            }

            .feature-row {
                margin-top: 50px;
            }

            .floating-card {
                min-width: auto;
                width: calc(100% - 80px);
            }

        }

        @media(max-width:767px) {

            .main-heading {
                font-size: 42px;
            }

            .section-tag {
                font-size: 18px;
            }

            .section-tag .icon {
                width: 55px;
                height: 55px;
            }

            .content-box p {
                font-size: 16px;
                line-height: 1.8;
            }

            .floating-card {
                position: relative;
                left: 0;
                bottom: 0;
                width: 100%;
                margin-top: 20px;
                padding: 20px;
            }

            .floating-card h5 {
                font-size: 18px;
            }

            .feature-card {
                padding: 35px 20px;
            }

            .feature-card h4 {
                font-size: 22px;
            }

            .feature-icon {
                width: 95px;
                height: 95px;
            }

            .feature-icon i {
                font-size: 38px;
            }

        }