a {
  text-decoration: none !important;
}

.sticky-top-bar {
  background: linear-gradient(to right, #004e92, #000428);
  position: sticky;
  top: 0;
  z-index: 1030;
  /* Higher than header/nav */
}
.navbar {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  margin-right: 1rem;
}

.navbar-brand img {
  height: 60px;
  max-height: 60px;
  width: auto;
}

.navbar-nav {
  gap: 0.75rem;
}

/* Dropdown menu styling */
.dropdown-menu.custom-dropdown {
  padding: 10px 15px;
  width: 260px;
}

.dropdown-menu.custom-dropdown a {
  display: block;
  padding: 4px 0;
  color: #000;
  text-decoration: none !important;
}

.dropdown-menu.custom-dropdown a:hover {
  text-decoration: underline;
}

/* Hover effect for dropdown (desktop only) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.tag-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 0.25rem;
}

.feature-icon {
  color: #ffc107;
  margin-right: 0.5rem;
}

.accordion-button:not(.collapsed) {
  color: #014b87;
  background-color: #e7f1ff;
}

.rating-box {
  background-color: #0d6efd;
  color: white;
  border-radius: 5px;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
}

.contact-box {
  background: white;
  color: black;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.master-program-label {
  color: #fff;
  font-weight: 500;
  background-color: #dc3545;
  /* Bootstrap danger or customize */
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}
.hero-stats .bg-gradient-primary {
  background: linear-gradient(to right, #0f6ba8, #1e90ff);
  /* Match your brand gradient */
}
.hero-stats h5,
.hero-stats small {
  color: #fff;
}
@media (max-width: 767.98px) {
  .hero-stats>div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.scrollspy-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.scrollspy-nav .nav-link:hover,
.scrollspy-nav .nav-link.active {
  color: #1e90ff !important;
  /* Highlight color on hover/active */
  text-decoration: none;
}

.scrollspy-offset {
  scroll-margin-top: 80px;
  /* adjust to your sticky nav height */
}
.batch-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.batch-card.selected {
  border: 2px solid #ec008c;
  background-color: #fff5fb;
}

.ribbon {
  width: 0;
  height: 0;
  border-top: 40px solid #ec008c;
  border-right: 40px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 8px;
  display: none;
}

.batch-card.selected .ribbon {
  display: block;
}

.ribbon i {
  position: absolute;
  top: -40px;
  left: 1px;
  color: #fff;
  font-size: 16px;
}
.scroll-margin-top {
  scroll-margin-top: 80px; /* Adjust based on sticky header height */
}
.cta-section {
    background: linear-gradient(135deg, #1a237e, #3949ab, #5c6bc0);
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
  }

  @keyframes gradientFlow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .cta-section h2,
  .cta-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200px * 12); /* adjust per logo count */
  animation: scrollLogos 30s linear infinite;
}

.logo {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}


@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.black-links a {
  color: #000 !important;
  text-decoration: none;
}