.azar-hero {
  background: linear-gradient(to right, #102240, #0d1b2a);
  color: #ffffff;
  padding: 170px 30px;
  font-family: 'Poppins', sans-serif;
}

@media(max-width:720px){
    .azar-hero{
        padding: 55px 28px !important;
    }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 auto;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-text h1 span {
  color: #ffcc00;
}

.hero-text p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.6;
}

.hero-text .sub {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-top: 6px;
  color: #bbb;
}

.hero-highlights {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.hero-highlights li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.hero-highlights i {
  color: #ffcc00;
  font-size: 16px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 10px 22px;
  background: #ffcc00;
  color: #102240;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffe45e;
}

.hero-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid #ffcc00;
}

.hero-btn.outline:hover {
  background: #ffcc00;
  color: #102240;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 26px !important;
  }

    .hero-highlights{
        padding-left: 25px !important;
    }


  .hero-text p,
  .hero-highlights li {
    font-size: 15px !important;
  }

  .hero-image {
    display: none !important;
  }

  .hero-cta {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
}
