  .University-Banner {
    background-color: #003479;
    color: #fff;
    min-height: 30vh;
    text-align: center;
  }

  .University-content {
    background: #ecf4ff;
    padding: 30px;
  }

  .University-tax {
    position: sticky;
    top: 48px;
    padding: 20px;
    border-radius: 15px;
    background: white;
  }

  .top-bar {
    font-size: 14px;
  }

  .main-header .nav-link {
    color: #fff !important;
    padding: 0.2rem 1rem;
    transition: all 0.3s ease;
  }

  .main-header .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
  }

    .main-header .courses-sec .nav-link {
    color: var(--e-global-color-5316700) !important;
    padding: 1px 1px;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .main-header .courses-sec .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius:  10px 10px 0 0;
  }

  .logo-link img {
 max-width:100px;
  }

  .University-Banner h2 {
    color: #fff;
    margin-bottom: 15px;
  }

  .custom-Left-Menu {
    background-color: var(--e-global-color-5316700);
    border-radius: 0px 20px 20px 0;
  }

  .custom-Right-Menu {
    background-color: var(--e-global-color-5316700);
    border-radius: 20px 0px 0px 20px;
  }

  .University-Banner p {
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.6;
  }

  .custom-card {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  }

  .custom-card-header {

    overflow: hidden;
  }

  .custom-card-logo {
    position: absolute;
    top: 10px;
    padding: 8px;
    right: 10px;
    background: #ffffff;
    border-radius: 10px;
    width: 31%;
  }

  .custom-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-card .card-body {
    padding: 15px;
    flex-grow: 1;
  }

  .custom-card .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .custom-card .text-muted {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }

  .btn-gradient {
	position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  }

  .card-footer {
      padding: 0.75rem;
  border: 1px solid rgb(236 239 241);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 140, 255, 0.082);
  }

  .btn-gradient:hover {
    background: linear-gradient(45deg, #0056b3, #008ecc);
	  transform: scale(1.05);
  border-color: #fff9;
	  
  }

  .btn-gradient svg {
    width: 18px;
    height: 18px;
  }

  ul.nav {
    gap: 20px;
  }


  /* ============================
    MEGA DROPDOWN MENU
   ============================ */
  .mega-dropdown {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    max-width: 900px;
    background: #fff;
    padding: 20px 0;
    border-radius:  10px 10px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
  }

  /* Show on hover */
  .dropdown:hover>.mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ============================
    MEGA MENU LOGO STYLES
   ============================ */


  .mega-dropdown .college-logo {
    flex: 0 1 90px;
    /* Each logo takes up to 80px width, wraps if needed */
  }

  .mega-dropdown .college-logo-1 {
    flex: 0 1 150px;
    border: solid 1px var(--e-global-color-5316700);
    border-radius: 10px;
    padding: 10px;
  }

  .mega-dropdown img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease-in-out;
  }

  .mega-dropdown .college-logo h4 {
    font-size: 0.8rem;
    font-weight: 500;

  }

  .mega-dropdown img:hover {
    transform: scale(1.1);
  }


  /* ============================
    RESPONSIVE
   ============================ */


  @media (max-width: 991px) {
    .main-header .container {
      flex-direction: column;
    }

    .logo-link {
      order: -1;
      margin-bottom: 10px;
    }

    .University-Banner {

      min-height: 18vh;
    }
  }

  @media (max-width: 767px) {
    .mega-dropdown {
      position: static;
      display: block;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
    }

    .mega-dropdown img {
      margin-bottom: 10px;
    }

    ul.nav {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

#site-header.scrolled .site-header-Inner {
    background: #1F509A;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}