/* =========================================================
HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  min-height: 80vh;
  overflow: hidden;
  background: #f8fbff;
}

/* =========================================================
BACKGROUND IMAGE
========================================================= */
.hero-bg-image {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
OVERLAY
========================================================= */
.hero-bg-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.45) 0%, transparent 35%), radial-gradient(circle at top right, rgba(0, 0, 0, 0.45) 0%, transparent 35%), radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.35) 0%, transparent 35%), radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.55) 0%, transparent 40%), linear-gradient(90deg, rgba(248, 251, 255, 0.16) 0%, rgba(248, 251, 255, 0.52) 50%, rgba(248, 251, 255, 0.55) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* =========================================================
CONTAINER
========================================================= */
.hero-section .container {
  position: relative;
  z-index: 5;
  height: 100%;
}

/* =========================================================
WRAPPER
========================================================= */
.hero-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

/* =========================================================
LEFT CONTENT
========================================================= */
.hero-content {
  width: 100%;
  max-width: 650px;
}

/* =========================================================
SUBTITLE
========================================================= */
.hero-subtitle {
  margin-bottom: 22px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50px;
  display: inline-flex;
  padding: 12px 22px;
  color: rgb(41, 162, 201);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.08);
}

/* =========================================================
HEADING
========================================================= */
.hero-content h1 {
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 4.5rem;
  color: #112B6B;
  line-height: 1.08;
}
.hero-content h1 span {
  color: #29A2C9;
}

/* =========================================================
PARAGRAPH
========================================================= */
.hero-content p {
  margin-bottom: 30px;
  color: #475569;
  font-weight: 650;
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content p {
    color: white;
  }
}
/* =========================================================
BUTTONS
========================================================= */
.hero-buttons {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-btn {
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  padding: 17px 32px;
  font-weight: 700;
  font-size: 1rem;
  gap: 12px;
  transition: all 0.35s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, #0087C8 0%, #1A9CD0 50%, #29A2C9 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}
.primary-btn:hover {
  transform: translateY(-4px);
}

/* SECONDARY BUTTON */
.secondary-btn {
  border: 1px solid #dbeafe;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}
.secondary-btn:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.secondary-btn i {
  color: #25d366;
  font-size: 1.2rem;
}

/* =========================================================
STATS
========================================================= */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stat-box {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 20px 24px;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}
.hero-stat-box h3 {
  margin-bottom: 6px;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.8rem;
}
.hero-stat-box span {
  color: #64748b;
  font-size: 0.92rem;
}

/* =========================================================
RIGHT SIDE
========================================================= */
.hero-right {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* =========================================================
TOPPER CARD
========================================================= */
.topper-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* =========================================================
TOPPER LABEL
========================================================= */
.topper-label {
  margin-bottom: 20px;
  color: rgb(41, 162, 201);
  font-weight: 700;
  font-size: 1rem;
}

/* =========================================================
TOPPER CONTENT
========================================================= */
.topper-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================================================
TOPPER IMAGE
========================================================= */
.topper-image {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
.topper-image img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
TOPPER INFO
========================================================= */
.topper-info h4 {
  margin-bottom: 6px;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.35rem;
}
.topper-info span {
  margin-bottom: 12px;
  display: inline-block;
  color: #64748b;
  font-size: 0.92rem;
}
.topper-info h3 {
  margin-bottom: 14px;
  color: #29A2C9;
  font-weight: 800;
  font-size: 1.8rem;
}

.topper-rating {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: #0f172a;
  font-weight: 700;
  gap: 8px;
  background: #eff6ff;
}
.topper-rating i {
  color: #facc15;
}

/* =========================================================
FLOATING CARD
========================================================= */
.hero-floating-card {
  position: absolute;
  right: -30px;
  bottom: -35px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

/* =========================================================
FLOATING ICON
========================================================= */
.floating-icon {
  border-radius: 18px;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #29A2C9;
}
.floating-icon i {
  color: #ffffff;
  font-size: 1.5rem;
}

.floating-content h4 {
  margin-bottom: 5px;
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
}
.floating-content p {
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}
@media (max-width: 992px) {
  .hero-section {
    height: auto;
    padding: 120px 0 90px;
    min-height: auto;
  }
  .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
  }
  .hero-right {
    max-width: 100%;
  }
  .hero-floating-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 110px 0 70px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn {
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
  }
  .hero-stat-box {
    width: 100%;
  }
  .topper-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .topper-image {
    width: 100%;
    height: 260px;
  }
  .hero-floating-card {
    min-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 0.82rem;
  }
  .topper-card {
    padding: 22px;
  }
}

/*# sourceMappingURL=hero.css.map */
