body {
    font-family: 'Inter', sans-serif;
  }

  .banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914');
    background-size: cover;
    background-position: center;
    color: white;
  }
.btn a {
  text-decoration: none;
  color: white;
}
  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .banner .container {
    position: relative;
    z-index: 2;
  }
.course-card a {
  text-decoration: none;
  color: white;
}

  .country-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  .country-card:hover {
    transform: translateY(-5px);
  }
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.85rem;
  }
  .tag.affordable {
    background-color: #00b981;
    color: white;
  }
  .tag.research {
    background-color: #9333ea;
    color: white;
  }
  .badge {
    background-color: #e5f0ff;
    color: #2563eb;
    font-weight: 500;
    margin: 4px 4px 4px 0;
  }
  .btn-outline-danger {
    font-weight: 600;
  }
  .btn-danger {
    font-weight: 600;
  }

  .section-title {
    font-weight: 700;
  }
  .gradient-text {
    background: linear-gradient(to right, #e11d48, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .nav-pills .nav-link {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    color: #333;
    border: 1px solid #ccc;
  }
  .nav-pills .nav-link.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }
  .course-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }
  .course-card:hover {
    transform: translateY(-5px);
  }
  .course-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: brightness(0.8);
  }
  .course-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
  }
  .badge-free {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #10b981;
    color: white;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.75rem;
  }
  .arrow-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: white;
  }


  
  .step-wrapper {
    text-align: center;
    position: relative;
    padding-bottom: 40px;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
  }

  .step-line::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 0;
  }

  .step-text {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  }

  .step-icon img {
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-weight: 600;
    margin-bottom: 8px;
  }

  @media (max-width: 767px) {
    .step-line::before {
      display: none;
    }
  }

  footer a {
    color: #fff;
  }







/* Custom dropdown styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 0.1rem;
  display: none;
}

/* Show submenu on hover for desktop */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  
  /* Let Bootstrap handle main dropdowns */
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .dropdown-submenu > a:after {
    /* content: "▸"; */
    float: right;
    padding-left: 10px;
  }
  
  .dropdown-submenu.show > .dropdown-menu {
    display: block;
    position: static;
    margin-left: 15px;
    border-left: 2px solid #dee2e6;
  }
  
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  
  /* Mobile click indicator */
  .dropdown-submenu > .dropdown-toggle:after {
    /* content: "▸"; */
    float: right;
    margin-left: 5px;
  }
}











/* University Page Specific Styles */
.university-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              /* url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1'); */
              url('../images/students-univ.jpg');

  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  margin-bottom: 50px;
}

.stats-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-card i {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 15px;
}

.course-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-card .card-body {
  padding: 25px;
}

.badge-pill {
  padding: 8px 15px;
  font-weight: 500;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}



.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}



.university-logo {
  max-height: 100px;
  margin-bottom: 20px;
}











/* table css  */
.container {
  /* max-width: 1000px;
  margin: auto; */
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title h2 {
  font-size: 2rem;
  background: linear-gradient(90deg, #e11d48, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.table-responsive {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.table {
  margin: 0;
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}

.table th, .table td {
  padding: 12px 16px;
  border: 1px solid #dee2e6;
}

.table thead th {
  background-color: #343a40;
  color: #fff;
  font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa;
}

.table-striped tbody tr:hover {
  background-color: #f1f1f1;
}

.text-muted {
  color: #6c757d;
}

.text-end {
  text-align: right;
}

.gradient-text {
  /*background: linear-gradient(to right, #00c6ff, #0072ff);*/
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
}
