 /* --- Global Impact Styles --- */
.section-padding { padding: 40px 0; }
.bg-navy { background-color: #172b52; color: white; }

/* --- Modern Navbar --- */
/* Navbar */
.navbar { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(15px); 
    transition: 0.4s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link{
  color: #000;
}

/* MOBILE NAVBAR FIX */
@media(max-width:991px){

    .navbar .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    /* Logo Size */
    .navbar-brand img{
        width:205px !important;
    }

    /* Add space for button */
    .navbar-brand{
        margin-right:auto;
    }

    /* Mobile Admission Button */
    .mobile-admission-btn{
        background:#c92039;
        color:#fff;
        border:none;
        font-size:17px;
        font-weight:600;
        padding:8px 25px;
        border-radius:30px;
        margin-right:12px;
        white-space:nowrap;
        animation: blinkShadow 1s infinite;
    }

    .mobile-admission-btn:hover{
        background:#b11d33;
        color:#fff;
    }
}

/* =========================
MEGA MENU CSS
========================= */

.custom-navbar{
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,0.06);
    padding:12px 0;
}

.navbar .nav-link{
    color:#172b52;
    font-weight:600;
    position:relative;
}

.navbar .nav-link:hover{
    color:#fba215;
}

/* MEGA MENU CENTER + 50% WIDTH */

.mega-dropdown{
    position: static;
}

.mega-menu{
    width: 50% !important;

    left: 25% !important;
    transform: translateX(-50%);

    top: 53%;
    margin-top: 18px;

    border-radius: 20px;
    padding: 30px;

    display: none;

    position: absolute;
    background: #fff;
    z-index: 999;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* SHOW MENU ON HOVER */
.mega-dropdown:hover .mega-menu{
    display: block;
}

.mega-title{
    color:#172b52;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.mega-menu .dropdown-item{
    padding:10px 0;
    color:#fff;
    transition:0.3s;
    background:none;
        border: 1px solid #ccc;
    padding: 14px 11px !important;
    margin-top: 13px;
    border-radius: 10px;
}

.mega-menu .dropdown-item i{
  margin-right: 7px;
}

.mega-menu .dropdown-item:hover{
    color:#fba215;
    /* padding-left:8px; */
}

.admission-btn{
    background:#fba215;
    color:#fff;
    border:none;
    font-weight:600;
    transition:0.3s;
}

.admission-btn:hover{
    background:#172b52;
    color:#fff;
}

.mobile-top-link{
    background:#fba215;
    padding:8px 14px;
    border-radius:12px;
    text-align:center;
}

.mobile-top-link .link-text{
    margin:0;
    font-size:12px;
    color:#fff;
    font-weight:600;
}

.mobile-top-link .link-year{
    margin:0;
    font-size:11px;
    color:#fff;
}

/* 🔥 Floating Mobile Menu Button */
.mobile-menu-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #c92039;
    color: #fff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.mobile-menu-btn:hover {
    transform: scale(1.05);
}

/* Offcanvas Styling */
.offcanvas {
    width: 100%;
}

.offcanvas .nav-link {
    font-size: 16px;
    padding: 10px 0;
}

/* Hide dropdown by default */
.navbar .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 10px;
}

/* Show on hover (Desktop only) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #000;
}

.offcanvas-bottom{
    height: 85vh !important;
    border-radius: 25px 25px 0 0;
    border: 0;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}

.offcanvas-header{
    border-bottom: 1px solid #eee;
    padding: 20px;
}

.offcanvas-body{
    padding: 20px;
    overflow-y: auto;
}

/* Nav Links */
.offcanvas .nav-link{
    padding: 14px 0;
    font-size: 17px;
    color: #172b52;
    border-bottom: 1px solid #f1f1f1;
}

/* Dropdown Menu */
.offcanvas .dropdown-menu{
    border: 0;
    /* padding-left: 15px; */
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 10px;
}

/* Drag Handle */
.offcanvas-bottom::before{
    content: "";
    width: 60px;
    height: 5px;
    background: #ccc;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}



.footer-section {
  background: #172b52;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-title {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fba215;
  padding-left: 5px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
}

.newsletter-form button {
  background: #00c6ff;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #00c6ff;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-bottom p{
  font-size: 14px;}

.admission-btn{
    background:#c92039;
    border:none;
    color:#fff;
    font-weight:600;
    position:relative;
    animation: blinkShadow 1s infinite;
}

/* Shadow Blink Effect */
@keyframes blinkShadow{
    0%{
        box-shadow:0 0 5px #172b52,
                   0 0 10px #172b52;
    }
    50%{
        box-shadow:0 0 15px #172b52,
                   0 0 30px #172b52;
    }
    100%{
        box-shadow:0 0 5px #172b52,
                   0 0 10px #172b52;
    }
}

.admission-btn:hover{
    background:#b11d33;
}

.mobile-top-link{
    background: #c92039;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;

}

.mobile-top-link .link-text{
    margin-bottom: -5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
.mobile-top-link .link-year{
    margin-bottom: 0px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

@media (max-width:768px) {
.mobile-top-link .link-text{
    margin-bottom: -5px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
}
.mobile-top-link .link-year{
    margin-bottom: 0px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}
}
.about-section{
    background: linear-gradient(to bottom,#f8f9ff,#ffffff);
    position: relative;
}

.about-main-img{
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.about-main-img:hover{
    transform: scale(1.02);
}

.about-image-box{
    position: relative;
}

.experience-badge{
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #c92039;
    color: #fff;
    padding: 18px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge h4{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.experience-badge h2{
    margin: 0;
    font-size: 36px;
    font-weight: 800;
}

.about-tag{
    display: inline-block;
    background: rgba(201,32,57,0.1);
    color: #c92039;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-title{
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #172b52;
    margin-bottom: 25px;
}

.about-title span{
    color: #c92039;
}

.about-text{
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.about-feature{
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.3s ease;
}

.about-feature:hover{
    transform: translateY(-5px);
}

.feature-icon{
    width: 60px;
    height: 60px;
    background: #172b52;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h5{
    margin-bottom: 5px;
    font-weight: 700;
    color: #172b52;
}

.about-feature p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

.ubter-card{
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 500px;
}

.ubter-card img{
    width: 90px;
    border-radius: 10px;
}

.ubter-card h5{
    margin-bottom: 5px;
    color: #172b52;
    font-weight: 700;
}

.ubter-card p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:991px){

.about-title{
    font-size: 34px;
}

.experience-badge{
    right: 10px;
    bottom: 10px;
    padding: 14px 22px;
}

.experience-badge h2{
    font-size: 28px;
}

.about-text{
    font-size: 16px;
}

.ubter-card{
    flex-direction: column;
    text-align: center;
}

}