body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
}

/* ===== NAVBAR ===== */
.main-navbar{
    position:absolute;
    width:100%;
    z-index:1200;
    background:transparent;
    transition:0.35s;
    border-bottom: unset;
}

.main-navbar .nav-link{
    color:#fff !important;
}
.main-navbar .nav-link:hover{
    color:#f4801e !important;
}

.main-navbar.sticky{
    position:fixed;
    top:0;
    background:#065ba7 !important;
}

.mainlogo{
    height:70px;
}

.nav-item{
margin: 0px 8px 0px 8px;
}


/* ===== BUTTON ===== */
.contact-btn{
    border:1px solid #fff;
    border-radius:40px;
    padding:8px 18px;
    color:#fff;
    transition:.3s;
}
.contact-btn:hover{
    background:#f4801e;
    border-color:#f4801e;
}

/* ===== DROPDOWN ===== */
.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:12px 0;
    background:#fff;
    min-width:230px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    animation:fadeDown .25s ease;
}

/* dropdown animation */
@keyframes fadeDown{
    from{opacity:0; transform:translateY(15px);}
    to{opacity:1; transform:translateY(0);}
}

/* dropdown items */
.dropdown-item{
    font-size:15px;
    padding:10px 22px;
    color:#444;
    transition:0.25s;
    font-weight:500;
}

/* hover */
.dropdown-item:hover{
    background:linear-gradient(90deg,#065ba7,#0b4a75);
    color:#fff;
    padding-left:28px;
}

/* ===== SUBMENU ===== */
.dropdown-submenu{
    position:relative;
}

/* submenu box */
.dropdown-submenu > .dropdown-menu{
    top:0;
    left:100%;
    margin-left:1px;
    border-radius:10px;
    display:none;
}

/* show submenu */
.dropdown-submenu:hover > .dropdown-menu{
    display:block;
}

/* remove bootstrap arrow */
.dropdown-submenu > .dropdown-toggle::after{
    display:none;
}

/* clear submenu arrow */
.dropdown-submenu > a{
    position:relative;
    padding-right:42px;
}

/* right arrow */
.dropdown-submenu > a::after{
    content:"\f054";
    font-family:"Font Awesome 6 Free";
    font-weight:600;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:11px;
    color:#999;
    transition:0.3s;
}

/* arrow hover */
.dropdown-submenu:hover > a::after{
    color:#f4801e;
    transform:translateY(-50%) translateX(4px);
}

/* optional icon before text */
.dropdown-submenu > a::before{
    content:"\f0da"; /* Font Awesome arrow */
    font-family:"Font Awesome 6 Free";
    font-weight:600;

    position:absolute;          /* key change */
    right:18px;                 /* push to right */
    top:50%;
    transform:translateY(-50%);

    margin:0;                   /* remove inline spacing */
    font-size:11px;
    color:#065ba7;
    transition:0.3s;
}

/* ===== MENU ICON ===== */
.menu-icon{
    font-size:22px;
    color:#fff;
    cursor:pointer;
    margin-right:20px;
}

/* ===== SIDE OVERLAY ===== */
.side-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:2000;
}
.side-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ===== SIDE MENU ===== */
.side-menu{
    position:fixed;
    right:-420px;
    top:0;
    width:400px;
    height:100%;
    background:#065ba7;
    z-index:2001;
    transition:0.4s;
    overflow-y:auto;
    padding:40px 30px;
}
.side-menu.active{
    right:0;
}

.side-contact{
margin-top: 20px;
}


.close-menu{
    position:absolute;
    top:0;
    left:0;
    width:50px;
    height:50px;
    background:#f38020;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
}

.side-logo{
    width:170px;
    margin-left:60px;
    margin-bottom:20px;
}

.side-menu p{
    color:#fff;
}

.side-gallery img{
    width:30%;
    border-radius:10px;
    margin:5px;
}

.side-contact h5{
    color:#fff;
}
.side-contact p{
    color:#fff;
}
.side-contact i{
    color:#fff;
    margin-right:10px;
}
.side-contact i:hover{
	color:#f38020;
}
.side-social i{
    color:#fff;
    margin-right:15px;
}

/* ===== MOBILE ===== */
@media(max-width:991px){

.dropdown-menu{
    box-shadow:none;
}

.dropdown-submenu > .dropdown-menu{
    left:0;
    margin-left:0;
    position:relative;
}

}


.footer-main {
  background-color: #fafafa;
  color: #065ba7;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
/* Main headings */
.footer-heading {
  color: #065ba7;
  font-weight: 600;
}

/* Sub headings */
.footer-subheading {
  color: #f4801e;
  font-weight: 600;
}

/* Links */
.footer-link {
  color: #065ba7;
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-link:hover {
  color: #f4801e;
  opacity: 1;
}
.newsletter-text {
  color: #5a6f85;
}

.btn-subscribe {
  background-color: #065ba7;
  color: #ffffff;
  border-radius: 30px;
}

.btn-subscribe:hover {
  background-color: #f4801e;
}

/* Social icons */
.social-icon {
  color: #fafafa;
  font-size: 18px;
}
text-white {
	color: #fafafa !important;
}
.social-icon:hover {
  color: #fafafa;
}
.footer-icons {
	background-color:#065ba7 !important;
	padding-left:20px;
	padding-right:20px;
	margin-top:20px;
}

.mnr-edge-modern{
  background: var(--mnr-light);
}


/* Left Area */
.edge-left{
  padding-right: 20px;
}

.edge-tag{
  display: inline-block;
  background: var(--mnr-orange);
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 15px;
}


/* Heading */
.edge-heading{
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--mnr-blue);
  line-height: 1.2;
  margin-bottom: 20px;
}

.edge-heading span{
  color: var(--mnr-orange);
}


/* Description */
.edge-desc{
  font-size: 1.05rem;
  color: var(--mnr-text);
  line-height: 1.7;
}


/* Feature Grid */
.edge-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}


/* Feature Card */
.edge-box{
  background: #fff;
  padding: 25px 22px;
  border-radius: 16px;

  /* Brand Border */
  border-left: 4px solid var(--mnr-blue);

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}


/* Card Title */
.edge-box h5{
  color: var(--mnr-blue);
  font-weight: 600;
  margin-bottom: 10px;
}


/* Card Text */
.edge-box p{
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}


/* Hover Effect */
.edge-box:hover{
  transform: translateY(-6px);

  /* Switch to orange on hover */
  border-left-color: var(--mnr-orange);

  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}


/* Mobile */
@media (max-width:768px){

  .edge-heading{
    font-size: 2.2rem;
  }

  .edge-features{
    grid-template-columns: 1fr;
  }

}

.lg{
  margin-left: 10px;
}
@media only screen and (min-width: 769px) {

h2{
  font-size: 2.5rem!important;
}

.official-documents-modern h2::after {
    display: none!important;
}

}
.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.footer-social{
	gap:3.6rem !important;
}

.navbar .contact-btn {

    background: #f38020;
    border: 1px solid #f38020;
}

.navbar .contact-btn {

    background: #f38020;
    border: 1px solid #f38020;
}

.navbar .lg{
        background: TRANSPARENT;
    border: 1px solid #FFF;
}

@media only screen and (max-width: 768px) {
h2::after{
    display:none!important;
}
}

.hero-title {
    text-shadow: unset!important;
}
.fw-bold {
    font-weight: 600 !important;
}

section{
  padding: 60px 0!important;
}

.admission-ticker-section{
  padding: 12px 0!important;
}

/* ================= GLOBAL ================= */

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
}

section{
  padding:60px 0!important;
}

/* ================= NAVBAR ================= */

.main-navbar{
  position:absolute;
  width:100%;
  z-index:1200;
  background:transparent;
  transition:all 0.35s ease;
}

.main-navbar.sticky{
  position:fixed;
  top:0;
  background:#065ba7;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

/* logo */
.mainlogo{
  height:65px;
  transition:0.3s;
}

/* nav spacing */
.nav-item{
  margin:0 8px;
}

/* links */
.main-navbar .nav-link{
  color:#fff!important;
  font-weight:500;
  padding:12px 10px;
  transition:0.3s;
}

.main-navbar .nav-link:hover{
  color:#f4801e!important;
}

/* ================= BUTTONS ================= */

.contact-btn{
  border:1px solid #fff;
  border-radius:40px;
  padding:8px 18px;
  color:#fff;
  transition:0.3s;
  font-size:14px;
}

.navbar .contact-btn{
  background:#f38020;
  border:1px solid #f38020;
}

.navbar .lg{
  background:transparent;
  border:1px solid #fff;
  margin-left:10px;
}

.contact-btn:hover{
  background:#f4801e;
  border-color:#f4801e;
}

/* ================= DROPDOWN ================= */

.dropdown-menu{
  border:none;
  border-radius:12px;
  padding:10px 0;
  min-width:230px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  animation:fadeDown .25s ease;
}

@keyframes fadeDown{
  from{opacity:0; transform:translateY(15px);}
  to{opacity:1; transform:translateY(0);}
}

.dropdown-item{
  font-size:15px;
  padding:10px 22px;
  font-weight:500;
  color:#444;
  transition:0.25s;
}

.dropdown-item:hover{
  background:linear-gradient(90deg,#065ba7,#0b4a75);
  color:#fff;
  padding-left:28px;
}

/* ================= SUBMENU ================= */

.dropdown-submenu{
  position:relative;
}

.dropdown-submenu > .dropdown-menu{
  top:0;
  left:100%;
  margin-left:2px;
  border-radius:10px;
  display:none;
}

/* desktop hover */
@media(min-width:992px){
  .dropdown:hover > .dropdown-menu{
    display:block;
  }

  .dropdown-submenu:hover > .dropdown-menu{
    display:block;
  }
}

/* submenu arrow */
.dropdown-submenu > a{
  padding-right:40px;
  position:relative;
}

.dropdown-submenu > a::after{
  content:"\f054";
  font-family:"Font Awesome 6 Free";
  font-weight:600;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:11px;
  color:#999;
  transition:0.3s;
}

.dropdown-submenu:hover > a::after{
  color:#f4801e;
}

/* ================= NAVBAR TOGGLER ================= */

.navbar-toggler{
  border-color:rgba(255,255,255,0.5);
}

.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.hero-section {
	min-height: 75vh !important;
}
/* ================= MOBILE & TABLET ================= */

@media (min-width:1024px) and (max-width:1399px){
	
.hero-section {
	min-height: 35vh !important;
}
}
@media(max-width:991px){

.hero-section {
	min-height: 35vh !important;
}

  .main-navbar{
    position:relative;
    background:#065ba7;
  }

  .navbar-collapse{
    background:#065ba7;
    padding:15px;
    border-radius:12px;
    margin-top:0px;
    max-height:80vh;
    overflow-y:auto;
  }

  .nav-item{
    margin:0;
  }

  .main-navbar .nav-link{
    padding:12px 0;
  }

  .dropdown-menu{
    box-shadow:none;
    border-radius:0;
    background:#0b4a75;
  }

  .dropdown-item{
    color:#fff;
  }

  .dropdown-item:hover{
    background:#f4801e;
  }

  .dropdown-submenu > .dropdown-menu{
    position:relative;
    left:0;
    display:none;
    background:#0b4a75;
  }

  .dropdown-submenu > .dropdown-menu.show{
    display:block;
  }

  .dropdown-submenu > a::after{
    color:#fff;
  }

}

/* ================= SIDE OVERLAY ================= */

.side-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:2000;
}

.side-overlay.active{
  opacity:1;
  visibility:visible;
}
 .future-title {
        margin-bottom: -20px;
    }
@media (min-width: 768px) and (max-width: 1024px) {
    .future-title {
        margin-top: 10px;
        margin-bottom: -20px;
    }
}
/* ================= SIDE MENU ================= */

.side-menu{
  position:fixed;
  right:-420px;
  top:0;
  width:400px;
  max-width:90%;
  height:100%;
  background:#065ba7;
  z-index:2001;
  transition:0.4s ease;
  overflow-y:auto;
  padding:40px 30px;
}

.side-menu.active{
  right:0;
}

.close-menu{
  position:absolute;
  top:0;
  left:0;
  width:50px;
  height:50px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  color:#ea1f27;
}

.side-logo{
  width:170px;
  margin-left:60px;
  margin-bottom:20px;
}

.side-menu p{
  color:#fff;
}


.side-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.side-gallery img {
  width: 100%;
  height: 90px;            /* 🔥 fixed equal height */
  object-fit: cover;       /* 🔥 prevents distortion */
  border-radius: 10px;
  transition: 0.3s ease;
}

/* Optional hover effect */
.side-gallery img:hover {
  transform: scale(1.05);
}

.side-contact{
  margin-top:20px;
}

.side-contact h5{
  color:#fff;
}

.side-contact p{
  color:#fff;
}

.side-contact i{
  color:#fff;
  margin-right:10px;
}
.side-contact i:hover{
	color:#f38020;
}
.side-social i{
  color:#fff;
  margin-right:15px;
  transition:0.3s;
}

.side-social i:hover{
  color:#f38020;
}
.quick-contact p{
	margin-bottom: 0rem !important;
}
/* ================= SAFARI FIX ================= */

@supports (-webkit-touch-callout: none) {
  .dropdown-menu{
    transform:translateZ(0);
  }
}

/* ================= SMALL DEVICES ================= */

@media(max-width:576px){

  .mainlogo{
    height:55px;
  }

  .contact-btn{
    padding:6px 14px;
    font-size:13px;
  }

}

/* ===== MOBILE SUBMENU FIX ===== */
@media(max-width:991px){

  .dropdown-submenu > .dropdown-menu{
    display:none;
  }

  .dropdown-submenu > .dropdown-menu.show{
    display:block;
  }

  .dropdown-submenu > a{
    cursor:pointer;
  }

}
/* fix iOS dropdown click */
.dropdown-item{
  white-space: normal;
}

@media(max-width:991px){

  .dropdown-submenu > .dropdown-menu{
    transition: all .3s ease;
  }

}

/* ===== BREAK LONG MENU TEXT ===== */

.dropdown-item{
  white-space: normal;        /* allow text to wrap */
  word-break: break-word;     /* break long words */
  overflow-wrap: break-word;  /* support all browsers */
  line-height: 1.4;           /* better readability */
}

/* mobile extra spacing */
@media(max-width:991px){

  .dropdown-item{
    padding:12px 18px;
    font-size:15px;
  }

}






.button-apply {
  display: none;
}
@media (max-width: 1199px) {
  .main-navbar .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
  }
}
@media (max-width: 1199px) {
  .inner-menubtn {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .button-apply {
    margin-left: auto;
    display: flex;
  }
}

@media  (max-width:375px){
	    .contact-btn {
	   font-size: 10px !important;
        padding: 6px 10px !important;
    }
	.navbar-toggler {
        margin-left: -31px !important;
    }
  
}

@media  (max-width:430px){
	.button-apply {
		display:block !important;
	}
	  .contact-btn{
	            font-size: 12px !important;
        padding: 6px 10px !important;
    }
	
    .navbar-toggler {
        margin-left: -45px !important;
    }
  
}

@media  (max-width:820px){
	  .contact-btn{
	               font-size: 10px !important;
        padding: 6px 11px !important;
    }
	

  
}
@media  (max-width:1024px){
	  .contact-btn{
	               font-size: 10px !important;
        padding: 6px 11px !important;
    }
	

  
}

@media  (max-width:320px){
	 .contact-btn{
	            font-size: 9px !important;
        padding: 5px 8px !important;
    }
	   .navbar-toggler {
        margin-left: 8px !important;
    }
}
/* ===== LAPTOP MENU FIX (1024px – 1399px) ===== */
@media  (max-width:1280px){
	    .main-navbar .nav-link
 {
        font-size: 12px !important;
        padding: 10px 6px;
    }
}
@media  (max-width:1399px){

  .mainlogo{
    height:55px;
  }

  .navbar-nav{
    flex-wrap:nowrap;
  }

  .nav-item{
    margin:0 4px;
  }

  .main-navbar .nav-link{
    font-size:14px;
    padding:10px 6px;
  }

 .contact-btn{
	    font-size: 14px;
        padding: 6px 11px;
    }
  .navbar .lg{
    margin-left:6px;
  }

}
@media (max-width:1399px){

  .dropdown-menu{
    min-width:200px;
  }

  .dropdown-item{
    font-size:14px;
    padding:8px 18px;
  }

}

@media(max-width:768px){
section {
    padding: 40px 0 !important;
}

.footer-icons .social-section .d-flex {
    display: inline-flex!important;
}

}




.contact-box {
  border: 1px solid #035ba6;
  padding: 12px 14px;
  margin-top: 12px;
}
.contact-box p {
  line-height: 1.4;
}
.contact-box {
  border-radius: 6px; /* remove if you want sharp edges */
}
.contact-box:hover {
  background: rgba(3, 91, 166, 0.05);
}

.footer-icons {
  background:#065ba7;
}
.logo-footer{
	margin-left:-24px;
}
.social-footer{
	margin-left:24px;
}
/* social icons */
.social-icon {
  color:#fff;
  font-size:18px;
  transition:0.3s;
}

.social-icon:hover {
  color:#f4801e;
}

/* spacing fix on mobile */
@media (max-width: 767px) {
  .logo-section {
    margin-bottom: 15px;
  }
}


@media (max-width: 768px) {

  /* Stack columns */
  .footer-icons .row {
    flex-direction: column;
    text-align: center;
  }

  /* Logo centered */
  .logo-footer {
    margin-bottom: 12px;
  }

  .logo-footer img {
    margin: 0 auto;
  }

  /* Social section centered */
  .social-footer {
    text-align: center !important;
	margin-left:15px !important;
  }

  .social-footer .d-flex {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Fix text spacing */
  .social-footer p {
    margin-bottom: 0;
    white-space: nowrap;
	margin-left: -33px;
  }
  
   .social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .social-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
	margin-left: -6px;
	margin-top:-20px;
	margin-bottom:20px;
  }
  


}


.link-grid
 {
	line-height:0.8rem !important; 
	 
 }
@media (max-width: 820px) {
  .link-grid {
    line-height: normal !important;
  }
}

 @media (max-width: 1399px) {
    .navbar-toggler {
       margin-left: 8px;
    }
}


 @media (max-width: 345px) {
 .navbar-toggler-icon {
    width: 1em;
    height: 1em;
    }
}



@media  (max-width:344px){
.contact-btn {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }
	.navbar-toggler {
        margin-left: -7px !important;
    }
	.button-apply{
	margin-right: 21px !important;
    }
}

@media  (max-width:320px){

	.button-apply{
	margin-right: 7px !important;
    }
	.contact-btn {
        font-size: 8px !important;
        padding: 5px 9px !important;
    }
}
@media  (max-width:375px){

	.button-apply{
	margin-right: 17px !important;
    }
}
/* ===== iPad (820px) footer social alignment ===== */
@media (min-width: 768px) and (max-width: 1024px) {

  .footer-icons .social-footer {
    text-align: right !important;
    margin-left: 0 !important;
  }

  .footer-icons .social-footer .d-flex {
    display: flex !important;
    align-items: center;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .footer-icons .social-footer p {
    margin: 0 !important;
    white-space: nowrap;
  }

  .footer-icons .social-icons {
    display: flex;
    gap: 7px;
    margin: 0;
  }
  .social-icons{
	  padding-left:10px;
  }
}

/* ================= MOBILE NAV CLOSE BUTTON ================= */

.mobile-menu-close{
  position:absolute;
  top:24px;
  right:20px;
  background:#fff;
  border:none;
  color:#ea1f27;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
  z-index:10;
  transition:0.3s;
    height: 24px;
    width: 24px;
}

.mobile-menu-close:hover{
  background:#ea1f27;
}

/* hide on desktop */
@media(min-width:1200px){
  .mobile-menu-close{
    display:none !important;
  }
}

/* add top padding so menu doesn't overlap */
/*@media(max-width:1199px){
  .navbar-collapse{
    padding-top:60px;
  }
}*/


.footer-box{
	margin-top:33px;
	width: 418px ;
}

@media (min-width: 992px) {
    .px-lg-5 {
        padding-right: 2rem !important;
        padding-left: 1.2rem !important;
    }
}
@media (min-width: 1024px) and (max-width: 1366px) {
    .footer-box {
        width: 272px;
    }
}
@media (min-width: 744px) and (max-width: 820px) {
    .footer-box {
        width: 226px;
    }
}
@media (max-width: 430px) {
    .footer-box {
        width: 395px;
    }
}
@media (max-width: 344px) {
    .footer-box {
        width: 313px;
    }
}
@media (max-width: 320px) {
    .footer-box {
        width: 293px;
    }
}

@media (max-width: 1024px) {

  /* Reduce button padding */
  .navbar-toggler {
    padding: 4px 6px !important;
    font-size: 16px;
  }

  /* Reduce icon size */
  .navbar-toggler-icon {
    width: 1.1em !important;
    height: 1.1em !important;
    background-size: 90% !important;
  }

}