/*=========================================
HERO SECTION
=========================================*/
.hero {
  position: relative;
  padding: 170px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fcf8 0%, #eef9f1 50%, #ffffff 100%);
}

/*=========================================
HERO CONTAINER
=========================================*/
.hero .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

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

/*=========================================
HERO CONTENT
=========================================*/
.hero-content {
  flex: 1;
  max-width: 620px;
}

/*=========================================
SUB TITLE
=========================================*/
.hero-subtitle {
  margin-bottom: 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  color: #18A558;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  background: rgba(24, 165, 88, 0.1);
}

.hero-subtitle::before {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: #18A558;
}

/*=========================================
HERO TITLE
=========================================*/
.hero-content h1 {
  margin-bottom: 25px;
  color: #071C2C;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #18A558;
}

/*=========================================
HERO DESCRIPTION
=========================================*/
.hero-content p {
  margin-bottom: 40px;
  color: #666;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}

/*=========================================
HERO BUTTONS
=========================================*/
.hero-btns {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-btns .btn {
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.35s ease;
}

/* Primary */
.btn-primary {
  color: #ffffff;
  background: #18A558;
}

.btn-primary:hover {
  background: #D64B4B;
  transform: translateY(-4px);
}

/* Secondary */
.btn-secondary {
  border: 2px solid #18A558;
  color: #18A558;
  background: transparent;
}

.btn-secondary:hover {
  color: #ffffff;
  background: #18A558;
}

/*=========================================
HERO FEATURES
=========================================*/
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18A558;
  font-size: 18px;
  background: rgba(24, 165, 88, 0.12);
}

.feature-item span {
  color: #071C2C;
  font-weight: 600;
  font-size: 15px;
}

/*=========================================
HERO IMAGE
=========================================*/
/*=========================================
HERO IMAGE
=========================================*/
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  transition: 0.35s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/*=========================================
REMOVE BACKGROUND CIRCLES
=========================================*/
.hero-image::before,
.hero-image::after {
  display: none;
  content: none;
}

/*=========================================
FLOATING CARD
=========================================*/
.hero-card {
  position: absolute;
  z-index: 5;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 15px;
  min-width: 220px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

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

/*=========================================
CARD ICON
=========================================*/
.hero-card i {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 22px;
  background: #18A558;
}

/*=========================================
CARD TEXT
=========================================*/
.hero-card h4 {
  margin-bottom: 5px;
  color: #071C2C;
  font-weight: 700;
  font-size: 17px;
}

.hero-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/*=========================================
CARD POSITIONS
=========================================*/
.card-one {
  top: 12%;
  left: -30px;
}

.card-two {
  top: 48%;
  right: -20px;
}

.card-three {
  bottom: 25px;
  left: 30px;
}

/*=========================================
SMALL FLOATING SHAPES
=========================================*/
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: #18A558;
  opacity: 0.12;
}

.shape-one {
  top: 15%;
  left: 10%;
  width: 20px;
  height: 20px;
  animation: floatY 5s ease-in-out infinite;
}

.shape-two {
  right: 12%;
  bottom: 15%;
  width: 35px;
  height: 35px;
  animation: floatY 6s ease-in-out infinite;
}

.shape-three {
  top: 45%;
  right: 3%;
  width: 15px;
  height: 15px;
  animation: floatY 4s ease-in-out infinite;
}

/*=========================================
ANIMATIONS
=========================================*/
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*=========================================
RESPONSIVE 1200px
=========================================*/
@media (max-width: 1200px) {
  .hero {
    padding: 150px 0 100px;
  }
  .hero-wrapper {
    gap: 50px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-image img {
    max-width: 480px;
  }
}
/*=========================================
RESPONSIVE 991px
=========================================*/
@media (max-width: 991px) {
  .hero {
    padding: 130px 0 80px;
  }
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    margin: 0 auto 35px;
    max-width: 700px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-image {
    margin-top: 50px;
  }
  .card-one {
    top: 5%;
    left: 0;
  }
  .card-two {
    top: 45%;
    right: 0;
  }
  .card-three {
    bottom: 10px;
    left: 20px;
  }
}
/*=========================================
RESPONSIVE 768px
=========================================*/
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 70px;
  }
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 16px;
    line-height: 28px;
  }
  .hero-btns {
    width: 100%;
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .hero-features {
    flex-direction: column;
  }
  .feature-item {
    width: 100%;
  }
  .hero-image img {
    max-width: 420px;
  }
  .hero-card {
    padding: 12px 15px;
    min-width: 180px;
  }
  .hero-card h4 {
    font-size: 15px;
  }
  .hero-card p {
    font-size: 13px;
  }
}
/*=========================================
RESPONSIVE 575px
=========================================*/
@media (max-width: 575px) {
  .hero {
    padding: 110px 0 60px;
  }
  .hero .container {
    padding: 0 15px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-subtitle {
    padding: 8px 16px;
    font-size: 13px;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 26px;
  }
  .hero-image img {
    max-width: 100%;
  }
  .hero-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 15px auto;
    width: 100%;
    max-width: 280px;
  }
  .hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-image::before {
    width: 320px;
    height: 320px;
  }
  .hero-image::after {
    width: 280px;
    height: 280px;
  }
}
/*=========================================
RESPONSIVE 400px
=========================================*/
@media (max-width: 400px) {
  .hero {
    padding: 100px 0 50px;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-weight: 510;
    font-size: 16px;
  }
  .hero-btns .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  .feature-item {
    padding: 12px 15px;
  }
  .feature-item span {
    font-size: 14px;
  }
  .feature-item i {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .hero-card {
    max-width: 240px;
  }
  .hero-card i {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/*=========================================
REMOVE FLOATING CARDS
ON VERY SMALL DEVICES
=========================================*/
@media (max-width: 480px) {
  .card-one,
  .card-two,
  .card-three {
    display: none;
  }
  .hero-image::after {
    display: none;
  }
}

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