.topbar {
  padding: 5px 0;
  font-size: 0.9rem;
}

.topbar a {
  color: #0c4b5f;
  text-decoration: none;
  font-weight: 500;
}

.topbar .top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topbar .language, .topbar .login-button {
  margin-left: 15px;
}

.topbar .login-button {
  background-color: #06555C;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 500;
}

.topbar .language i {
  margin-right: 5px;
}

/* Navbar Styling */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: #0c4b5f;
  margin-right: 10px;
}

/* Date Information Styling */
.date-info {
  font-size: 0.9rem;
  color: #0c4b5f;
  white-space: nowrap;
}

.logo {
  width: 130px;
}

.counter-section {
  background: url("../images/counter.png") center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 50px 0;
}

.counter-item {
  margin: 20px 0;
}

.counter-item h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.counter-item p {
  font-size: 1rem;
  font-weight: 500;
}

.divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.5);
  height: 80px;
  margin: auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .topbar .top-right {
    justify-content: center;
    margin-top: 5px;
  }
  .date-info {
    text-align: center;
    margin-top: 10px;
  }
  .counter-item h2 {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .logo {
    width: 80px;
  }
  .topbar .login-button {
    font-size: 10px !important;
  }
  .notice-text {
    font-size: 14px !important;   
  }
}
@media (max-width: 1080px) {
  .counter-item h2 {
    font-size: 2rem;
  }
}
.footer {
  background-color: #f8f9fa; /* Light background */
  color: #333;
}

.footer-logo {
  width: 65px; /* Logo size */
  height: auto;
}

.footer a {
  text-decoration: none;
  font-size: 1rem;
}

.footer a:hover {
  color: #0d6efd; /* Bootstrap Primary Blue */
}

.footer p {
  font-size: 1rem;
}

.socal_icon {
  padding: 10px 13px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
}

.socal_icon i:hover {
  color: #078CA2;
}

.copy_right {
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
}

.custom-box {
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.text-green {
  color: #28a745;
  font-weight: bold;
}

.text-blue {
  color: #6f42c1;
  font-weight: bold;
}

.text-cyan {
  color: #17a2b8;
  font-weight: bold;
}

.notice-text {
  color: red;
  font-weight: bold;
}

.notice {
  background-color: #F0F2F5;
}
    .stepper-container {
      position: relative;
      margin-top: 50px;
    }

    .step-line {
      position: absolute;
      top: 23px;
      left: 0;
      right: 0;
      height: 3px;
      background-color: #d3d3d3;
      z-index: 1;
    }

    .step {
      position: relative;
      text-align: center;
      padding: 12px 10px;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #fff;
      border: 4px solid #004d40;
      z-index: 2;
      margin: 0 auto;
      position: relative;
    }

    .step-title {
      font-weight: bold;
      margin-top: 10px;
    }

    .step-desc {
      font-size: 14px;
      color: #555;
      margin-top: 5px;
    }

    .stepper-arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: 16px;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 10px solid #004d40;
      z-index: 3;
    }

    /* Mobile Responsive */
    @media (max-width: 767.98px) {
      .step-line {
        display: none;
      }

      .stepper-arrow::after {
        display: none;
      }

      .step {
        border-left: 3px solid #d3d3d3;
        padding-left: 40px;
        margin-bottom: 30px;
        text-align: left;
      }

      .step-circle {
        position: absolute;
        left: 0;
        top: 20px;
        transform: translateY(-50%);
      }
    }
/*# sourceMappingURL=main.css.map */