.asb-section .section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.asb-section .contact-box {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
}

.asb-section .info-box {
  background: #e9f7ef;
  border-left: 4px solid #28a745;
  padding: 1rem;
  border-radius: 12px;
}

.asb-section .info-box h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.asb-section .date-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.asb-section .date-card .card-header {
  background: linear-gradient(135deg, #a4123f 0%, #ff4d4d 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}


.asb-section .date-card .highlight {
  color: #dc3545;
  font-weight: 600;
}

.asb-section .date-card .closed-text {
  color: #6c757d;
  font-size: 0.95rem;
}

.login-wrap {
  margin-top: 0 !important;
  /* default for mobile */
}

@media (min-width: 768px) {

  /* tablet and up */
  .login-wrap {
    margin-top: 50px !important;
  }
}

@media (min-width: 1200px) {

  /* large desktops */
  .login-wrap {
    margin-top: 50px !important;
  }
}

.banner-steps {
  display: flex;
  justify-content: center;
  gap: 38px;
  position: relative;
  margin-top: 36px;
  font-family: 'Inter', Arial, sans-serif;
  z-index: 1;
}

/* ROD (behind) */
.banner-steps::before {
  content: '';
  position: absolute;
  height: 18px;
  left: 0px;
  right: 0px;
  top: 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #bdbdbd 60%, #757575 100%);
  box-shadow: 0 4px 17px -2px rgba(70, 70, 80, 0.23);
  z-index: 0;
}

/* Single banner step */
.banner-step {
  position: relative;
  width: 190px;
  min-height: 285px;
  background: #fff;
  border-radius: 0 0 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 8px 24px 0 rgba(30, 35, 90, 0.13);
  padding: 44px 0 24px 0;
  z-index: 1;
  color: #fff;
  font-family: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.banner-step .banner-title {
  font-weight: 700;
  font-size: 1.34rem;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  margin-top: 0;
  text-align: center;
  color: #fff;
}

.banner-step .banner-icon {
  font-size: 2.7rem;
  margin-bottom: 17px;
  color: #fff;
}

.banner-step .banner-desc {
  text-align: center;
  font-size: 1.09rem;
  color: #fff;
  margin-top: 0;
  font-weight: 400;
  line-height: 1.35;
}

.banner-step:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 70%;
  height: 40px;
  margin: 0 auto;
  z-index: 2;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 90%);
  filter: brightness(0.85) drop-shadow(0 8px 18px rgba(40, 30, 35, 0.11));
}

/* Backgrounds and gradients for each step */
.banner-step.step1 {
  background: linear-gradient(180deg, #173C52 65%, #0B374D 100%);
}

.banner-step.step2 {
  background: linear-gradient(180deg, #d8ce79 64%, #c5b100 100%);
}

.banner-step.step3 {
  background: linear-gradient(180deg, #ef985c 60%, #e57932 100%);
}

.banner-step.step4 {
  background: linear-gradient(180deg, #c2493c 60%, #a22618 100%);
}

.banner-step.step5 {
  background: linear-gradient(180deg, #a5a7ac 56%, #58585a 100%);
}

/* Top shadow/highlight for 3D fold */
.banner-step::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 38px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.27) 0%,
      rgba(180, 180, 180, 0.18) 30%,
      transparent 80%);
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .banner-step {
    width: 160px;
  }

  .banner-steps {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .banner-steps {
    flex-wrap: wrap;
    gap: 20px 8px;
  }

  .banner-step {
    width: 98vw;
    min-width: 178px;
    max-width: 210px;
  }
}

/* Non-active tabs */
.nav-tabs .nav-link:not(.active) {
  color: #495057 !important;
  background-color: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  border-bottom-color: #f8f9fa !important;
  /* blends with content */
}

/* Active tab */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057 !important;
  background-color: #fff !important;
  border: 1px solid #dee2e6 !important;
  border-bottom-color: #fff !important;
  /* removes bottom border visually */
}

.nav-tabs .nav-link:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Custom image styling */
.custom-img {
  width: 90% !important;
  /* custom width, adjust as needed */
  height: 150px !important;
  /* custom height, change as needed */

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* small subtle shadow */
  border-radius: 8px;
  /* optional: rounded corners */
  display: block;
  margin: 0 auto;
  padding: 12px;
  /* center the image */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* smooth hover effect */
}

/* Optional: hover effect for images */
.custom-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.ftco-footer,
.ftco-footer p,
.ftco-footer .text,
.ftco-footer .ftco-heading-2 {
  color: #999999 !important;
}

.ftco-footer a {
  color: #999999 !important;
}

/* Optional: This makes links slightly darker when you hover over them */
.ftco-footer a:hover {
  color: #333333 !important;
}

.ftco-footer-social li a {
  background: linear-gradient(135deg, #a4123f, #d91b4d) !important;
}

.block-23 ul li .icon {

  color: #a4123f !important;
}


.step-section {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #a4123f;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #a4123f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.step-description {
  margin-top: 8px;
  margin-left: 40px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* Modern Premium Tabs */
.nav-tabs {
  border: none !important;
  display: flex !important;
  gap: 10px !important;
  justify-content: flex-start !important;
}

.nav-tabs .nav-link {
  border: none !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #555 !important;
  font-weight: 500 !important;
  padding: 10px 18px !important;
  transition: all 0.25s ease-in-out !important;
}

.nav-tabs .nav-link:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #000 !important;
}

.nav-tabs .nav-link.active {
  background: #a4123f !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px !important;
}


.asb-section .section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.asb-section .contact-box {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
}

.asb-section .info-box {
  background: #e9f7ef;
  border-left: 4px solid #28a745;
  padding: 1rem;
  border-radius: 12px;
}

.asb-section .info-box h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.asb-section .date-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.asb-section .date-card .card-header {
  background: linear-gradient(135deg, #a4123f 0%, #ff4d4d 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}


.asb-section .date-card .highlight {
  color: #dc3545;
  font-weight: 600;
}

.asb-section .date-card .closed-text {
  color: #6c757d;
  font-size: 0.95rem;
}
