.hero-section {
  background-color: #161c52;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-section h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/* Optional animation or hover effect */
.client-slider-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.client-slider {
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.client-logo {
  height: 40px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.faq-card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.accordion-button {
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px !important;
}

.accordion-button::after {
  transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.video-hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  z-index: 1;
}

.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #f9b233;
}

.hero-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-yellow {
  background-color: #f9b233;
  color: black;
  font-weight: bold;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

th {
	background-color: #161c52 !important;
	color: #fff !important;
	text-transform: uppercase; 
}

table tr:last-child td:not(:first-child) {
    background-color: #f9b233; /* light yellow background */
    font-weight: bold;
}
table tr:last-child td:not(:first-child) a {
    text-decoration: none;
  }