.hero-full-bg {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-blue-1);
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    transform 4s linear;
  transform: scale(1);
}

.slide-bg.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.6));
  z-index: 2;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--clr-yellow-1);
  color: var(--clr-blue-1);
  border-color: var(--clr-yellow-1);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 30px;
}
.next-arrow {
  right: 30px;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: 100px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(5px);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 800;
  width: 100%;
}

.highlight-text-yellow {
  color: var(--clr-yellow-1);
}

.hero-content p {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
  width: 100%;
}

.hero-bottom-cards {
  position: absolute;
  bottom: -25px;

  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;

  width: 90%;
  max-width: 900px;
  z-index: 30;
  pointer-events: auto;

  display: flex;
  justify-content: center;
  align-items: stretch;

  background: rgba(39, 51, 116, 0.93);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(39, 51, 116, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.h-card {
  flex: 1;
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  background-color: transparent;
  position: relative;
}

.h-card:last-child {
  border-right: none;
}

.h-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.h-card > i {
  font-size: 2.2rem;
  color: var(--clr-yellow-1);
}

.h-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.h-card-text h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.h-card-text p {
  font-size: 0.85rem;
  color: var(--clr-yellow-1);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.h-card-text p i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.h-card:hover .h-card-text p i {
  transform: translateX(5px);
}

.hero-bottom-cards {
  position: absolute;
  bottom: -25px;

  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;

  width: 90%;
  max-width: 900px;
  z-index: 30;
  pointer-events: auto;

  display: flex;
  justify-content: center;
  align-items: stretch;

  background: rgba(39, 51, 116, 0.93);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(39, 51, 116, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.h-card {
  flex: 1;
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  background-color: transparent;
  position: relative;
}

.h-card:last-child {
  border-right: none;
}

.h-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.h-card > i {
  font-size: 2.2rem;
  color: var(--clr-yellow-1);
}

.h-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.h-card-text h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}
