.img-fluid {
  transition: transform 0.3s ease;
}
.img-fluid:hover {
  transform: scale(1.2);
}

.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.feature-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  height: 220px;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  font-size: 2rem;
  color: #4e73df;
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}
.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.offer-card {
  background: #fff;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}
.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ff5733;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}
.feature-item::before {
  content: "✔️";
  margin-right: 10px;
  color: red;
}
.about-img .img {
  height: 650px;
  width: 400px;
}
.hero-text-2 {
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(255, 214, 0, 0.3)
  );
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #ffd600;
  backdrop-filter: blur(4px);
}
@media (width: 1024px) {
  .price-tag {
    position: absolute;
    top: 20px;
    right: 8px;
    background-color: #ff5733;
    color: white;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: bold;
  }
}
@media (width: 768px) {
  .price-tag {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ff5733;
    color: white;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: bold;
  }
  .about-img .img {
    margin-left: 100px;
    height: 630px;
    width: 380px;
  }
}
@media (width: 425px) {
  .price-tag {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ff5733;
    color: white;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: bold;
  }
  .about-img .img {
    padding-right: 100px;
    height: 480px;
  }
}
@media (width: 375px) {
  .price-tag {
    position: absolute;
    top: 65px;
    right: 5px;
    background-color: #ff5733;
    color: white;
    padding: 3px;
    border-radius: 8px;
    font-size: 15px;
  }
  .about-img .img {
    padding-right: 100px;
    height: 380px;
  }
  .hero-text-2 {
    font-size: 18px;
  }
}
@media (width: 320px) {
  .price-tag {
    position: absolute;
    top: 100px;
    right: 8px;
    background-color: #ff5733;
    color: white;
    padding: 3px;
    border-radius: 8px;
    font-size: 14px;
  }
  .about-img .img {
    height: 300px;
    width: 150px;
  }
  .hero-text-2 {
    font-size: 16px;
  }
}
@media (min-width: 375px) and (max-width: 435px) {
  .price-tag {
    position: absolute;
    top: 67px;
    right: 8px;
    background-color: #ff5733;
    color: white;
    padding: 5px;
    border-radius: 8px;
    font-size: 15px;
  }
  .about-img .img {
    height: 400px;
    width: 220px;
  }
  .hero-text-2 {
    font-size: 20px;
  }
}
