/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* =========================
   NAVBAR
========================= */
.nav-wrapper{
  height:100%;
}
#main-navbar{
  position:fixed;

  top:var(--top-header-height);

  left:0;

  width:100%;

  height:var(--navbar-height);

  background:#fff;

  z-index:9998;

  box-shadow:0 2px 15px rgba(0,0,0,.08);
}

/* =========================
   NAV WRAPPER
========================= */

.nav-wrapper{
  width:100%;
  max-width:1600px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:40px;

  padding:18px 40px;
}

/* =========================
   LOGO SECTION
========================= */

.brand-logo{
  display:flex;
  align-items:center;
  gap:15px;

  text-decoration:none;

  flex-shrink:0;
}

.brand-logo img{
  width:72px;
  height:72px;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brand-text h2{
  color:#0b3d91;
  font-size:clamp(24px,2vw,46px);
  font-weight:800;
  line-height:1.1;
  margin:0;
}

.brand-text span{
  color:#666;
  font-size:14px;
  margin-top:4px;
  line-height:1.3;
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-menu{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.desktop-menu ul{
  display:flex;
  align-items:center;
  list-style:none;
  gap:35px;
}

.desktop-menu ul li{
  position:relative;
}

.desktop-menu ul li a{
  text-decoration:none;
  color:#111;
  font-size:18px;
  font-weight:600;
  transition:.3s;
}

.desktop-menu ul li a:hover{
  color:#0b3d91;
}

.desktop-menu ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:3px;
  background:#0b3d91;
  border-radius:50px;
  transition:.3s;
}

.desktop-menu ul li a:hover::after{
  width:100%;
}

/* =========================
   RIGHT AREA
========================= */

.nav-right{
  display:flex;
  align-items:center;
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle{
  display:none;
  font-size:30px;
  color:#0b3d91;
  cursor:pointer;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-nav{
  display:none;
  flex-direction:column;

  background:#fff;

  padding:15px 25px;

  border-top:1px solid #eee;
}

.mobile-nav.active{
  display:flex;
}

.mobile-nav a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  padding:15px 0;
  border-bottom:1px solid #eee;
}

/* =========================
   1400px
========================= */

@media(max-width:1400px){

  .brand-logo img{
    width:65px;
    height:65px;
  }

  .brand-text h2{
    font-size:32px;
  }

  .desktop-menu ul{
    gap:30px;
  }

}

/* =========================
   1200px
========================= */

@media(max-width:1200px){

 

  .desktop-menu{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-wrapper{
    padding:15px 20px;
  }

  .brand-logo{
    flex:1;
  }

  .brand-logo img{
    width:55px;
    height:55px;
  }

  .brand-text h2{
    font-size:22px;
  }

  .brand-text span{
    font-size:10px;
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .brand-logo{
        gap:8px;
    }

    .brand-logo img{
        width:45px;
        height:45px;
    }

    .brand-text h2{
        font-size:13px;
    }

    .brand-text span{
        font-size:7px;
    }
}

@media(max-width:480px){

    .brand-logo img{
        width:38px;
        height:38px;
    }

    .brand-text h2{
        font-size:11px;
    }

    .brand-text span{
        font-size:6px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

  .brand-logo{
    gap:10px;
  }

  .brand-logo img{
    width:40px;
    height:40px;
  }

  .brand-text h2{
    font-size:14px;
  }

  .brand-text span{
    font-size:7px;
  }

}

/* =========================
   ACADEMIC DROPDOWN
========================= */

.academic-dropdown{
    position:relative;
}

.academic-menu{
    position:absolute;

    top:120%;
    left:50%;

    transform:translateX(-50%);

    min-width:240px;

    background:#fff;

    border-radius:18px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);

    list-style:none;

    padding:12px;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

.academic-dropdown:hover .academic-menu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.academic-menu li{
    width:100%;
}

.academic-menu a{
    display:block;

    padding:14px 18px;

    border-radius:12px;

    color:#222;

    text-decoration:none;

    font-size:16px;

    transition:.3s;
}

.academic-menu a:hover{
    background:#f4f7ff;
    color:#0b3d91;
    transform:translateX(5px);
}

/* =========================
   MOBILE ACADEMICS
========================= */

.mobile-academic{
    width:100%;
}

.mobile-academic-btn{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:none;
    border:none;

    padding:15px 0;

    font-size:16px;
    font-weight:600;
   color:black;
    cursor:pointer;
}

.mobile-academic-menu{

    display:none;

    flex-direction:column;

    padding-left:15px;
}

.mobile-academic-menu.active{
    display:flex;
}

.mobile-academic-menu a{

    padding:12px 0;

    text-decoration:none;

    color:#444;

    border-bottom:1px solid #eee;
}