/* HERO SLIDER */
.home-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}
.hero-text .btn {
  width: 250px;
  height: 35px;
  text-align: center;
}

/* SLIDES */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 80vh;
}

/* LEFT-CENTER TEXT */
.hero-text {
  display: flex;
  padding: 0 25px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
}

.hero-text p {
  margin: 20px 0;
  font-size: 20px;
  color: #f0f5b0;
}
.hero-text a{
  font-weight: bolder;
  font-size: 16px;
}

/* HOME EXTRA SECTIONS */
.home-extra {
  padding: 80px 20px;
  background: #f0f1dd;
}

.home-container {
  max-width: 1100px;
  margin: auto;
}

/* SECTION */
.home-section {
  margin-bottom: 70px;
}

.home-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
  position: relative;
  padding-left: 12px;
}

.home-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 25px;
  background: #FFC107;
  border-radius: 4px;
}

/* CARDS */
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.home-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.home-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.home-card:hover {
  transform: translateY(-6px);
}

/* STEPS */
.home-steps {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.step span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #FFC107;
  font-weight: 700;
  margin-bottom: 10px;
}

/* COMPARE */
.compare-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.compare {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.compare h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.compare ul li {
  margin-bottom: 10px;
  color: #444;
}

/* CTA */
.home-cta {
  background: #f0f5b0;
  color: #111;
  padding: 50px 30px;
  text-align: center;
  border-radius: 14px;
}

.home-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.home-cta p {
  margin-bottom: 25px;
  color: #111;
}

.cta-btn {
  background: #ffc107;
  color: #0e0e0d;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn:hover {
  background: #161414;
  color: #ffc107;
}