h2.display-5 {
  font-size: 2.5rem;
}

.shadow-sm {
  transition: transform 0.2s ease;
}

.shadow-sm:hover {
  transform: translateY(-4px);
}

.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

.text-primary {
    color: #0038cc !important;
}

.border-secondary {
  border-color: #0038cc !important;
}

.bg-1 {
    background-color: #bbe1f2;
}

.bg-2 {
    background-color: #0A143C;
}

.bg-neon {
  background-color: #bcffbc;
}

.bg-cta {
  background: linear-gradient(to right, #32cd32, #0cbf61); 
  color: #fff;
}

.bg-9 {
background: linear-gradient(to right, #ffffff 0%, #d6eff3 100%);
}

.bg-why {
  background-image: url('/assets/nx.png'); 
  background-size: cover; 
  background-position: center;
  min-height: 300px;
}

@media (max-width: 767.98px) {
  .bg-why {
    min-height: 300px;
  }
}

.display-5 {
    font-size: 5rem !important;
}

/* Blue background for accordion body */
.custom-accordion-body {
  background-color: #e9f4ff;
  padding: 1.25rem;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* Style for Learn more */
.learn-more {
  padding-top: 0.5rem;
  font-weight: 500;
}

.learn-more a {
  color: #0038cc;
  text-decoration: none;
}

.learn-more a:hover {
  text-decoration: underline;
}

/* Hero Section Container */
.hero-section {
  height: 70vh;
  overflow: hidden;
  position: relative;
}

/* Fullscreen Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Content Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: dark overlay */
  padding: 2rem;
}


.shadow:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input.form-control:focus {
  border-color: #ffffff;
  outline: none;
  box-shadow: none;
}

.btn-center-fix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;  /* Adjust padding as needed */
  height: 45px;             /* Set a fixed height for vertical alignment */
  line-height: 1;           /* Prevent tall text from misaligning */
  font-weight: 600;
  border-radius: 0.5rem;
}

.btn-success {
  background: linear-gradient(to right, #32cd32, #0cbf61) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.4); /* optional glow */
}

.btn-success:hover {
  background: linear-gradient(to right, #2bb52b, #0aa954) !important;
  box-shadow: 0 0 12px rgba(44, 187, 44, 0.6);
}

.stats-section {
  background: url('/assets/statistic.png') top center / cover no-repeat;
  background-color: #000; /* fallback */
  position: relative;
  z-index: 1;
  height: 500px; /* or auto */

}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* overlay */
  z-index: 1;
}

.stat-box {
  position: relative;
  padding: 0 15px;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #32cd32;
}