header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}
.navbar-transparent {
  background: transparent;
}
.navbar-scrolled {
  background: #fff; /* Change to your theme color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
  height: 100px;
  transition: opacity 0.3s ease;
}
.logo-colored {
  display: none;
}
header.navbar-scrolled .logo-white {
  display: none;
}
header.navbar-scrolled .logo-colored {
  display: inline-block;
}

.navbar-toggler i {
  font-size: 1.5rem; /* size of bars */
  color: #fff; /* white for dark navbar */
}
header.navbar-scrolled .navbar-toggler i {
  color: #333; /* dark icon when navbar is scrolled */
}

.offcanvas.offcanvas-start {
  width: 100% !important;
  max-width: 100% !important;
}
.dropdown-mega {
  position: absolute;
  top: 100%; /* below navbar */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-mega.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.card {
  border: 1px solid #022781;
  border-radius: 0px !important;
  padding: 10px;
}
.no-padding{
  padding: 0px !important;
}
.card-header {
  background-color: #022781;

  font-weight: 600;
  border-radius: 0px;
  max-width: max-content;
}
.card-header h5 {
  color: white;
  margin-bottom: 2px;
  margin-top: 2px;
}
.card-header:first-child {
  border-radius: 0px;
}
.hover-zoom {
  overflow: hidden; /* Prevents image overflow on zoom */
  border-radius: 10px; /* optional for smooth edges */
}
.hover-zoom img {
  transition: transform 0.5s ease; /* smooth scaling */
}

/* On hover → zoom */
.hover-zoom:hover img {
  transform: scale(1.1); /* zoom in slightly */
}
.industry {
  background-color: rgb(240, 240, 240);
}
.card-link {
  color: #022781;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.blue-box {
  background-color: #ffffff;
  color: rgb(255, 255, 255);
  padding: 1rem 1rem 0.75rem 1rem;
  width: 85%;
  margin: -20% auto 0.5rem auto;

  line-height: 1.2;
  border-radius: 0;
  position: relative;
  bottom: 0;
  height: 100%;
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}
.card-img{
  border-radius: 0px !important;

}
.btn-outline-primary {
  border-color: #022781;
  color: #022781;
  font-weight: 600;
  font-size: 14px;
  padding: 0.5rem 2rem;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}
.btn-outline-primary:hover {
  background-color: #022781;
  color: white;
}
.footer-link a {
  color: #000;
  text-decoration: none;
}
.footer-link a:hover {
  text-decoration: underline;
}
.footer-heading {
  color: #1e2f6f;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer-text {
  color: #000;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
  line-height: 1.2;
}
.footer-bold {
  font-weight: 500;
}
.footer-bottom {
  background-color: #1e2f6f;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem 0;
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity (0.3–0.6 works well) */
  z-index: 1; /* sits above the image */
}

/* Ensure text stays above overlay */
.carousel-caption {
  position: relative;
  z-index: 2;
}

.btn-corusal {
  border-color: #ffffff;
  border-width: 2px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 0.5rem 2rem;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}
.btn-corusal:hover {
  background-color: #ffffff;
  color: #022781;
}

/* Position custom indicators */
/* Make the indicators a vertical stack on the left */
.carousel-indicators.custom-indicators {
  position: absolute;
  padding-left: 20px;
  padding-right: 20px;
  bottom: 20px; /* at bottom */
  left: 0; /* keep them a little from left */
  right: 0;
  top: auto;
  transform: none !important;

  margin: 0;
  display: flex !important;
  flex-direction: row !important; /* horizontal */
  align-items: center;
  gap: 20px; /* spacing between items */
  width: 100%;
  z-index: 10;
}

/* Button style */
/* Reset Bootstrap's dot styles for our buttons */
.carousel-indicators.custom-indicators [data-bs-target] {
  width: 33% !important;
  height: auto !important;
  margin: 0 !important;
  text-indent: 0 !important;
  background: transparent !important;
  border: 0 !important;
  opacity: 1 !important;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 10px;
  cursor: pointer;
}

/* Your custom button look */
.navigationButton {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.navigationButton:hover,
.navigationButton.active {
  opacity: 1;
}

/* Progress line */
.navigationButton .progress-line {
  position: relative;

  height: 2px;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  margin-bottom: 6px;
}
.navigationButton.active .progress-line {
  transform: scaleX(1);
}

/* Text parts */
.navigationButton .step-number {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 4px;
}
.navigationButton .step-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.about-banner-img {
  height: 50vh;           /* default for mobile/tablet */
  object-fit: cover;
}

@media (min-width: 992px) {
  .about-banner-img {
    height: 100vh;        /* full screen height on desktops */
  }
}


table {
  width:100%;
  border-collapse: collapse; /* Merge borders */
  margin: 20px 0;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
;
  
}

table td, 
table th {
  border: 1px solid #787878;  /* Thin line */
  padding: 10px 12px;
  vertical-align: top;
}

table th {
  background-color: #f5f5f5; /* Light gray header background */
  font-weight: bold;
  text-align: left;
}
.width-30 {
  width: 30%;
}
.text-primary-underline {
  text-decoration: underline;
  text-decoration-color: --bs-primary; /* Bootstrap primary color */
  text-underline-offset: 5px; /* small gap between text & underline */
  
}

table td strong {
  color: #333;  /* Darker color for labels */
}
.course_box .col .card{
    height: 100%;
}


