/*==================================================
ROOT VARIABLES
==================================================*/
:root{
    --default-color:#212529;

    /* REPLACE THESE COLORS */
    --primary-color:#162654;
    --primary-rgb-color: 22, 38, 84;

    --secondary-color:goldenrod;

    /*--primary-color:dogerblue;
    --secondary-color:goldenrod;*/

    /* ACCENT COLORS */
    --accent-color:#F9D56E;
    --accent-hover-color:#e5c45f;
    --accent-active-color:#d4b24c;

    --accent-disabled-bg:#f7e7b2;
    --accent-disabled-text:#ffffff;

    --light-bg:#f5f5f5;

    --white:#fff;
    --dark:#000;

    --Amiri-font:'Amiri', serif;
    --Montserrat-font:'Montserrat', sans-serif;
    --Urdu-font:'Urdu';
}


/*==================================================
FONTS
==================================================*/
@font-face{
    font-family:Urdu;
    font-style:normal;
    src:url("../fonts/webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/webfont.woff") format("woff"),
    url("../fonts/webfont.ttf") format("truetype");
}


/*==================================================
GLOBAL
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--Montserrat-font);
    overflow-x:hidden;
    background:#f8f9fa;
    color:var(--default-color);
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    padding-left:0;
    margin-bottom:0;
}


section{
    margin-bottom: 75px;
}

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    font-size:38px;
    font-weight:100;
    color:var(--primary-color);
    margin-bottom:35px;
    text-align:center;
}

.section-title::before,
.section-title::after{
    content:"";
    flex:1;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    height:5px;
    background:#f8f8f8;
}

.amiri{
    font-family:var(--Amiri-font);
    font-size:1.2em;
    direction:rtl;
}

.jba_text{
    color:var(--secondary-color);
}

.jba_bg{
    background:var(--secondary-color);
}


/*==================================================
CUSTOM LINKS
==================================================*/
a.jba_link{
    color:var(--primary-color);
    position:relative;
    transition:0.3s;
    font-weight:600;
}

a.jba_link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:1px;
    background:var(--secondary-color);
    transform:scaleX(0);
    transform-origin:right;
    transition:0.3s;
}

a.jba_link:hover{
    color:var(--accent-hover-color);
}

a.jba_link:hover::after{
    transform:scaleX(1);
    transform-origin:left;
}


/*==================================================
BUTTONS
==================================================*/
.btn-jba{
    display:inline-block;
    background:var(--secondary-color);
    border:1px solid var(--secondary-color);
    color:var(--primary-color);
    padding:10px 22px;
    border-radius:6px;
    transition:0.3s;
}

.btn-jba:hover{
    background:var(--accent-hover-color);
    border-color:var(--accent-hover-color);
    color:var(--primary-color);
}

.btn-outline-jba{
    border:1px solid var(--secondary-color);
    color:var(--secondary-color);
    background:transparent;
    transition:0.3s;
}

.btn-outline-jba:hover{
    background:var(--secondary-color);
    color:var(--primary-color);
}


section {
    scroll-margin-top: 80px;
}


/*==================================================
NAVBAR
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.custom-navbar{
    background:var(--primary-color);
    height:92px;
    display:flex;
    align-items:center;
    position:relative;
    z-index:999;
    position: sticky;
    top: 0;
    z-index: 1000;
}



/* LOGO */
.logo-section{
    width:310px;
    height:92px;
    border-right:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content: center;
}

.logo-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.logo-section img{
    width:100px;
    filter:brightness(0) invert(1);
}

.logo-title{
    margin-top:3px;
    color:var(--white);
    text-align: center;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
}

/* MENU */
.menu-section{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.menu-item{
    color:var(--white);
    text-decoration:none;
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.menu-item:hover{
    color:var(--white);
}

.menu-title{
    display:flex;
    align-items:center;
}

.menu-top{
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.menu-bottom{
    font-size:13px;
    opacity:0.9;
}

.menu-item i{
    font-size:18px;
    margin-left:5px;
}

/* DROPDOWN */
.menu-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:var(--white);
    min-width:220px;
    display:none;
    flex-direction:column;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.dropdown-menu a{
    padding:14px 18px;
    color:var(--primary-color);
    text-decoration:none;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.dropdown-menu a:hover{
    background:var(--secondary-color);
    color:var(--primary-color);
}

/* Desktop Hover */
.menu-dropdown:hover .dropdown-menu{
    display:flex;
}

/* ADMISSION BTN */
.admission-btn{
    width:110px;
    height:92px;
    background:var(--secondary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

.admission-btn i{
    color:var(--primary-color);
    font-size:34px;
}

/* MOBILE TOGGLE */
.mobile-toggle{
    display:none;
    color:var(--white);
    font-size:28px;
    margin-right:20px;
    cursor:pointer;
}

/*==================================================
Navbar MOBILE RESPONSIVE
==================================================*/
@media(max-width:991px){

    .custom-navbar{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        background:var(--primary-color);
        position:relative;
    }

    /* TOP BAR */
    .logo-section{
        width:100%;
        height:80px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 20px;
        border:none;
    }

    .logo-section img{
        width:110px;
    }

    /* MOBILE TOGGLE */
    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        color:var(--white);
        font-size:28px;
        cursor:pointer;
    }

    /* HIDE DESKTOP BUTTON */
    .admission-btn{
        display:none;
    }

    /* MENU */
    .menu-section{
        width:100%;
        display:none;
        flex-direction:column;
        background:var(--primary-color);
        padding-bottom:15px;
    }

    .menu-section.active{
        display:flex;
    }

    /* MENU ITEM */
    .menu-item{
        width:100%;
        padding:15px 25px;
        border-top:1px solid rgba(255,255,255,0.08);
        color:var(--white);
    }

    .menu-title{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .menu-top{
        font-size:15px;
    }

    .menu-bottom{
        font-size:12px;
        margin-top:4px;
    }

    /* DROPDOWN */
    .menu-dropdown{
        width:100%;
    }

    .dropdown-btn{
        cursor:pointer;
    }

    .dropdown-menu{
        position:static;
        display:none;
        width:100%;
        background:#20346f;
        box-shadow:none;
    }

    .dropdown-menu a{
        color:var(--white);
        text-decoration:none;
        padding:14px 40px;
        border-bottom:1px solid rgba(255,255,255,0.08);
        background:#20346f;
        font-size:14px;
    }

    .dropdown-menu a:hover{
        background:#2c458f;
    }

    /* ACTIVE DROPDOWN */
    .menu-dropdown.active .dropdown-menu{
        display:flex !important;
        flex-direction:column;
    }

    /* DISABLE DESKTOP HOVER */
    .menu-dropdown:hover .dropdown-menu{
        display:none;
    }

}







/*==================================================
DONATE BUTTON
==================================================*/
.admission-float{
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 65px;
    height: 65px;
    background:var(--secondary-color);
    color:var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Outer Pulse Layers */
.admission-float::before,
.admission-float::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:rgba(249, 213, 110, 0.35);
    z-index: -1;
    animation: pulseAdmission 2s infinite;
}

.admission-float::after{
    animation-delay: 1s;
}

/* Animation */
@keyframes pulseAdmission{
    0%{
        transform: scale(1);
        opacity: 0.7;
    }
    70%{
        transform: scale(1.7);
        opacity: 0;
    }
    100%{
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Hover */
.admission-float:hover{
    transform: scale(1.08);
    color:var(--primary-color);
}

/* Mobile Responsive */
@media(max-width:768px){
    .admission-float{
        width: 58px;
        height: 58px;
        font-size: 26px;
        left: 15px;
        bottom: 90px;
    }
}


/*==================================================
WHATSAPP BUTTON
==================================================*/
.whatsapp-button{
    position:fixed;
    bottom:20px;
    left:20px;
    color:var(--white);
    font-size:50px;
    padding:15px;
    border-radius:50%;
    z-index:9999;

    opacity:0;
    transform:scale(0.8);
    pointer-events:none;

    transition:0.4s;
}

.whatsapp-button.show{
    opacity:1;
    transform:scale(1);
    pointer-events:auto;
}

.whatsapp-button:hover{
    transform:scale(1.1);
}


/*==================================================
NEWS SECTION
==================================================*/
.news{
    width:60px;
    height:60px;
    margin-right:11px;
    object-fit:cover;
    object-position:top;
    border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;
}


/*==================================================
WHY SECTION
==================================================*/

.why-section{
    width:100%;
    min-height:500px;

    background:var(--primary-color);

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    padding:80px 0;
}

.stat-box{
    border:2px solid rgba(255,255,255,0.7);
    border-radius:8px;
    padding:24px 20px;
    height:100%;
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.08);
}

.stat-box h3{
    color:var(--white);
    font-size:28px;
    font-weight:700;
    margin-bottom:12px;
}

.stat-box p{
    color:var(--secondary-color);
    font-size:20px;
    font-weight:500;
}


/*==================================================
TABS SECTION
==================================================*/
/* LEFT TABS */
.tab-item{
  background:var(--white);
  padding:20px;
  border-radius:6px;
  margin-bottom:14px;
  cursor:pointer;
  transition:0.3s;
  position:relative;
}

.tab-item h5{
  margin:0;
  font-size:18px;
  color:#1c2d5a;
  font-weight:600;
}

.tab-item p{
  margin:5px 0 0;
  font-size:14px;
  color:#666;
}

.tab-item.active{
  background:var(--primary-color);
}

.tab-item.active h5,
.tab-item.active p,
.tab-item.active i{
  color:var(--white);
}

.tab-item.active::before{
  content:"";
  position:absolute;
  right:-12px;
  top:50%;
  transform:translateY(-50%);
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:12px solid var(--primary-color);
}

/* RIGHT CONTENT */
.tab-content-box{
  background:var(--white);
  padding:35px;
  border-radius:8px;
  min-height:100%;
}

.department-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.department-box{
  background:#f8f8f8;
  padding:18px;
  border-radius:6px;
  border-left:4px solid var(--primary-color);
  font-size:15px;
  color:#333;
  transition:0.3s;
}

.department-box:hover{
  background:var(--primary-color);
  color:var(--white);
}

/* MOBILE */
.department-grid{
    grid-template-columns:1fr;
}

.tab-item.active::before{
    display:none;
}






/*==================================================
TEACHER SECTION
==================================================*/
.teacher-card{
    text-align:center;
    margin-bottom:30px;
}

.teacher-img{
    width:220px;
    height:220px;
    object-fit:cover;
    object-position:top;

    border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;

    animation:blobAnimation 8s infinite ease-in-out;

    box-shadow:rgba(50,50,93,0.25) 0px 2px 5px -1px,
    rgba(0,0,0,0.3) 0px 1px 3px -1px;

    margin-bottom:15px;
}

@keyframes blobAnimation{

    0%{
        border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25%{
        border-radius:40% 60% 60% 40% / 35% 40% 60% 65%;
    }

    50%{
        border-radius:70% 30% 30% 70% / 60% 65% 35% 40%;
    }

    75%{
        border-radius:60% 40% 50% 50% / 40% 50% 50% 60%;
    }

    100%{
        border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}



.chef-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.chef-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    object-position:top;

    border-radius:119px 22px 119px 10px;
}

.chef-overlay{
    position:absolute;
    bottom:-100%;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.7);
    color:var(--white);
    text-align:center;
    padding:20px;
    transition:0.4s ease-in-out;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.chef-card:hover .chef-overlay{
    bottom:0;
}





/*==================================================
New Counter
==================================================*/
.jx-stats-section{
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
  radial-gradient(circle at center,
      rgba(22, 38, 84, 0.18) 0%,
      rgba(59, 130, 246, 0.12) 35%,
      rgba(36, 59, 122, 0.10) 65%,
      transparent 100%);
}

.jx-stats-wrapper{
  position:relative;
  z-index:2;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  justify-content:center;
  padding:40px;
}

.jx-card{
  width:270px;
  height:390px;
  border-radius:22px;
  background:rgba(255,255,255,0.22);
  border:1px solid rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:
  0 10px 40px rgba(0,0,0,0.05),
  inset 0 1px 0 rgba(255,255,255,0.5);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:0.3s ease;
}

.jx-card:hover{
  transform:translateY(-8px);
}

.jx-icon-box{
  width:58px;
  height:58px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:22px;
  margin-bottom:45px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.jx-purple{ background:var(--primary-color); }
.jx-blue{ background:var(--secondary-color); color:var(--primary-color); }
.jx-cyan{ background:var(--accent-hover-color); color:var(--primary-color); }
.jx-pink{ background:#d4b24c; color:var(--primary-color); }

.jx-title{
  font-size:58px;
  font-weight:800;
  color:var(--dark);
  line-height:1;
  margin-bottom:18px;
  letter-spacing:-2px;
}

.jx-small{
  font-size:24px;
  font-weight:700;
}

.jx-text{
  font-size:17px;
  line-height:1.5;
  color:#3b3b3b;
  font-weight:600;
  max-width:190px;
}

@media(max-width:1200px){

  .jx-stats-wrapper{
    gap:25px;
}

.jx-card{
    width:240px;
    height:360px;
}

.jx-title{
    font-size:48px;
}
}

@media(max-width:768px){

  .jx-stats-section{
    padding:40px 0;
}

.jx-stats-wrapper{
    flex-direction:column;
    align-items:center;
}

.jx-card{
    width:90%;
    max-width:320px;
}
}





/*==================================================
FAQ SECTION
==================================================*/
.search-container{
    margin-bottom:30px;
    position:relative;
}

.search-container i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#7f8c8d;
}

.search-container input{
    padding-left:45px;
    border-radius:50px;
}

.faq-item{
    border-bottom:1px solid #ddd;
    padding:20px 15px;
    cursor:pointer;
    position:relative;
    transition:0.3s;
}

.faq-item:hover{
    background:#f9f9f9;
}

.faq-item h3{
    margin:0;
    font-size:18px;
    font-weight:600;
    padding-right:30px;
}

.faq-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:0.3s;
}

.faq-item.active .faq-content{
    max-height:1000px;
    padding-top:10px;
    opacity:1;
}

.faq-toggle{
    position:absolute;
    right:20px;
    top:24px;
    font-size:24px;
}

.faq-toggle::before{
    content:"+";
    font-weight:bold;
}

.faq-item.active .faq-toggle::before{
    content:"–";
}


/*==================================================
FOOTER
==================================================*/
.AISMS-footer{
    position:relative;
    background:
    linear-gradient(
        rgba(var(--primary-rgb-color), 0.93),
        rgba(var(--primary-rgb-color), 0.93)
    ),
    url('https://images.unsplash.com/photo-1562774053-701939374585?q=80&w=1920&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    color:var(--white);
    padding-top:70px;
    overflow:hidden;
}

/* TOP ICON LINKS */

.footer-top-links{
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.footer-link-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:35px;
}

.footer-link-box i{
    width:58px;
    height:58px;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:var(--white);
}

.footer-link-box h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:0;
}

/* IMPORTANT LINKS */

.important-title-wrap{
    text-align:center;
    margin:45px 0;
    position:relative;
}

.important-title{
    display:inline-block;
    border:2px solid rgba(255,255,255,0.4);
    padding:10px 28px;
    font-size:32px;
    font-weight:800;
    background:var(--primary-color);
}

/* MAIN FOOTER */

.footer-main{
    padding-bottom:50px;
}

.footer-heading{
    font-size:36px;
    font-weight:800;
    margin-bottom:28px;
}

.footer-links{
    list-style:none;
    padding-left:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:var(--white);
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
}

.footer-links a:hover{
    color:var(--secondary-color);
    padding-left:5px;
}

/* CONTACT */

.AISMS-phone{
    font-size:20px;
    margin-bottom:25px;
}

.address-text{
    font-size:18px;
    line-height:1.8;
}

/* MAP */

.map-box iframe{
    width:100%;
    height:260px;
    border:0;
    border-radius:10px;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    padding:30px 0;
}

.bottom-links a{
    color:var(--white);
    margin-right:20px;
    text-decoration:none;
    font-size:17px;
}

.footer-logo{
    text-align:center;
}

.footer-logo img{
    width:120px;
    filter:brightness(0) invert(1);
}

.copyright{
    text-align:center;
    font-size:15px;
    margin-top:10px;
}

.social-icons{
    text-align:right;
}

.social-icons a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.3);
    color:var(--white);
    margin-left:10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:var(--secondary-color);
    color:var(--primary-color);
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-heading{
        margin-top:35px;
    }

    .social-icons{
        text-align:center;
        margin-top:20px;
    }

    .bottom-links{
        text-align:center;
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .footer-link-box{
        justify-content:center;
        text-align:center;
        flex-direction:column;
    }

    .important-title{
        font-size:22px;
    }

    .footer-heading{
        font-size:28px;
    }

}



/*==================================================
RESPONSIVE
==================================================*/
@media(max-width:1200px){

    .menu-section{
        gap:22px;
    }

    .menu-top{
        font-size:15px;
    }

    .menu-bottom{
        font-size:12px;
    }
}


@media(max-width:991px){

    .custom-navbar{
        flex-wrap:wrap;
        height:auto;
    }

    .logo-section{
        width:100%;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    .menu-section{
        width:100%;
        flex-wrap:wrap;
        padding:20px;
        justify-content:flex-start;
    }


    .admission-btn{
        width:100%;
        height:70px;
    }


    .tabs-wrapper{
        flex-direction:column;
    }

    .tabs-left{
        width:100%;
        border-right:none;
        border-bottom:1px solid #ddd;
    }

    .tab-btn{
        font-size:18px;
        padding:18px 20px;
    }

}


@media(max-width:768px){
    .teacher-img{
        width:180px;
        height:180px;
    }

    .glass-card{
        padding:30px 15px;
    }

}


@media(max-width:600px){

    .department-grid{
        flex-direction:column;
    }

    .department-box{
        width:100%;
        text-align:center;
    }

    .menu-section{
        gap:15px;
    }

    .menu-item{
        width:100%;
    }

}





/*==================================================
TESTIMONIAL
==================================================*/
/* Card */
.testimonial-card{
    position:relative;
    background:var(--white);
    border:1px solid #e3e3e3;
    padding:45px 35px;
    text-align:center;
    border-radius:2px;
    transition:0.4s ease;
    height:520px;
}

/* Bottom Triangle */
.testimonial-card::after{
    content:"";
    position:absolute;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%) rotate(45deg);
    width:24px;
    height:24px;
    background:var(--white);
    border-right:1px solid #e3e3e3;
    border-bottom:1px solid #e3e3e3;
}

/* Hover */
.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Title */
.testimonial-card h3{
    font-size:38px;
    color:#555;
    margin-bottom:18px;
    font-weight:500;
}

/* Stars */
.stars{
    color:var(--secondary-color);
    font-size:18px;
    margin-bottom:30px;
}

/* Text */
.testimonial-card p{
    color:#777;
    line-height:2;
    font-size:18px;
}

/* User */
.user-box{
    margin-top:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

/* Avatar */
.user-box img{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
}

/* Name */
.user-info h4{
    margin:0;
    font-size:30px;
    color:#555;
    font-weight:500;
}

.user-info span{
    color:#999;
    font-size:18px;
}

/* Responsive */
@media(max-width:991px){

    .section-title{
        text-align:center;
    }

    .section-title h2{
        font-size:40px;
    }

    .section-title p{
        font-size:20px;
    }

    .testimonial-card{
        margin-bottom:40px;
    }
}

@media(max-width:576px){
    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:17px;
    }

    .testimonial-card{
        padding:35px 25px;
    }

    .testimonial-card h3{
        font-size:28px;
    }

    .testimonial-card p{
        font-size:15px;
        line-height:1.8;
    }

    .user-info h4{
        font-size:22px;
    }

    .user-info span{
        font-size:15px;
    }
}








/*==================================================
Vision Mission section
==================================================*/
.vision-mission-section {
    background: #f8f9fa;
}

.vm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    /*background:linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon i {
    color: var(--white);
    font-size: 32px;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


/*** gallery Start ***/
.gallery .tab-class .nav-item a.active {
    background:var(--secondary-color) !important;
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:rgba(249, 213, 110, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img:hover .gallery-overlay {
    opacity: 1;
}
/*** gallery End ***/




/*==================================================
Campus section
==================================================*/
.campus-section{
    background:#f8fafc;
}


.intro-text{
    max-width:700px;
    font-size:16px;
}

.facility-card{
    background:var(--white);
    border-radius:22px;
    padding:40px 30px;
    height:100%;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.facility-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.facility-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    /*background:linear-gradient(90deg,var(--primary-color),var(--secondary-color));*/
}

.facility-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    /*background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));*/
    background-color: var(--secondary-color);
    box-shadow:0 10px 25px rgba(22,38,84,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    color:var(--white);
    font-size:28px;
}

.facility-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#0f172a;
}

.facility-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:0;
}





/*==================================================
Contact section
==================================================*/
.contact-box{
  background:var(--white);
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
  overflow:hidden;
  border-radius:5px;
}

.form-section{
  padding:50px 40px;
}

.form-section h2{
  margin-bottom:35px;
  color:#333;
  font-weight:600;
}

.form-control{
  border:none;
  border-bottom:1px solid #ccc;
  border-radius:0;
  padding:12px 5px;
  box-shadow:none !important;
}

textarea.form-control{
  resize:none;
  height:120px;
}

.btn-custom{
  background:var(--primary-color);
  color:var(--white);
  padding:12px 30px;
  border:none;
  border-radius:0;
  letter-spacing:1px;
  transition:0.3s;
}

.btn-custom:hover{
  background:#2e376f;
  color:var(--white);
}

.info-section{
  background:var(--primary-color);
  color:var(--white);
  padding:50px 30px;
}

.info-section h3{
  margin-bottom:20px;
  font-weight:600;
}

.info-section p{
  color:#e4e4e4;
  line-height:1.8;
}














    /* =========================================
INNER BANNER
========================================= */
.inner-banner{
    background:linear-gradient(rgba(var(--primary-rgb-color),0.85),
        rgba(var(--primary-rgb-color),0.85)),
    url("../images/banner.jpg") center/cover no-repeat;

    padding:100px 0;
    text-align:center;
    color:var(--white);
    margin-bottom:75px;
}

.inner-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.inner-banner p{
    max-width:750px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    opacity:0.9;
}


/* =========================================
VISION & MISSION PAGES
========================================= */
.vision-page,
.mission-page{
    position:relative;
}

.vision-image img,
.mission-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.small-heading{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(var(--primary-rgb-color),0.08);
    color:var(--primary-color);
    padding:10px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.small-heading i{
    color:var(--secondary-color);
}

.vision-content h2,
.mission-content h2{
    font-size:42px;
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:20px;
    line-height:1.3;
}

.vision-content p,
.mission-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}


/* =========================================
VISION LIST
========================================= */
.vision-list{
    list-style:none;
    margin-top:25px;
}

.vision-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    font-size:16px;
    color:#444;
}

.vision-list li i{
    color:var(--secondary-color);
    margin-top:4px;
}


/* =========================================
MISSION BOXES
========================================= */
.mission-boxes{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.mission-box{
    background:var(--white);
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:0.3s;
}

.mission-box:hover{
    transform:translateY(-6px);
}

.mission-box i{
    font-size:42px;
    color:var(--secondary-color);
    margin-bottom:18px;
}

.mission-box h4{
    font-size:18px;
    color:var(--primary-color);
    margin-bottom:0;
}


/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px){

    .vision-content h2,
    .mission-content h2{
        font-size:34px;
    }

    .inner-banner h1{
        font-size:42px;
    }
}

@media(max-width:767px){

    .inner-banner{
        padding:80px 0;
    }

    .inner-banner h1{
        font-size:34px;
    }

    .vision-content h2,
    .mission-content h2{
        font-size:28px;
    }

    .mission-boxes{
        grid-template-columns:1fr;
    }
}