/* HERO SECTION */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LEFT SIDE */

.hero-content {
  max-width: 600px;
}

.hero-tagline {
  display: inline-block;
  padding: 10px 18px;
  background: #eef4ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 14px 28px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.btn-secondary {
  padding: 14px 28px;
  border: 2px solid #2563eb;
  color: #2563eb;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

/* RIGHT SIDE */

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

.hero-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #dbeafe;
  border-radius: 50%;
  z-index: 1;
}

/* TABLET */

@media (max-width:991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width:991px) {
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width:991px) {
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width:991px) {
  .hero-title {
    font-size: 54px;
  }
}

/* MOBILE */

@media (max-width:767px) {
  .hero-section {
    padding: 60px 0;
  }
}

@media (max-width:767px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width:767px) {
  .hero-title {
    font-size: 38px;
  }
}

@media (max-width:767px) {
  .hero-description {
    font-size: 16px;
  }
}

@media (max-width:767px) {
  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width:767px) {
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width:767px) {
  .hero-circle {
    width: 300px;
    height: 300px;
  }
}

