/* ===== SEC-1 (Hero) */
.hero-section {
  position: relative;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(120, 188, 32, 0.35) 0%,
      rgba(255, 255, 255, 0) 78%
    ),
    #fff;
  overflow: hidden;
  padding-top: 160px !important;
  padding-bottom: 70px !important;
}
.site-content {
  padding-top: 0 !important;
}
.hero-section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.hero-section-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 58.33%;
  max-width: 58.33%;
  align-items: flex-start;
}

.hero-section-logo {
  height: 32px;
  width: auto;
}

.hero-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #023049;
  line-height: 64px;
}

.hero-section-tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #005288;
  line-height: 32px;
}

.hero-section-body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.hero-section-body p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-section-body p:last-child {
  margin-bottom: 0;
}

.hero-section-image {
  flex: 0 0 41.67%;
  max-width: 41.67%;
  padding-left: 50px;
}
.hero-section  .hero-section-text .btn{
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .hero-section-text {
    flex: 1;
    max-width: none;
  }

  .hero-section-image {
    flex: 0 0 380px;
  }

  .hero-section-image img {
    width: 380px;
  }

  .hero-section-title {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 1199px) {
  .hero-section-image {
    padding-left: 30px;
  }
  .hero-section {
    padding-top: 145px !important;
    padding-bottom: 60px !important;
  }
  .hero-section-inner{
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .hero-section-title {
    font-size: 36px;
    line-height: 48px;
  }
  .hero-section-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-section-inner .hero-section-text {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .hero-section-inner .hero-section-image {
    margin-bottom: 15px;
    order: 1;
    padding: 0;
    flex: 0 0 100%;
    max-width: 500px;
    width: 100%;
  }
  .hero-section-inner .hero-section-image img {
    width: 100%;
  }
}
@media (max-width: 768px) {
    .hero-section {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
  .hero-section-title {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-section-tagline {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-section-body {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-section-title {
    font-size: 24px;
    line-height: 34px;
  }

  .hero-section-tagline {
    font-size: 15px;
  }

  .hero-section-body {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  /* Hero */
  .hero-section-title {
    font-size: 20px;
    line-height: 28px;
  }

  .hero-section-tagline {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-section-body {
    font-size: 13px;
  }
}
