:root {
  --primary-blue: #5c9ce6;
  --dark: #111111;
  --text: #555;
}

.why-choose-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #38d4ff 0%, #2bc6ff 100%);
  position: relative;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

.why-choose-modern::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -250px;
  left: -250px;
}

.why-choose-modern::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -180px;
  right: -180px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* TAG */
.feature-tag {
  display: block;
  text-align: center;
  color: #ff5e7d;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #ffffff;
}

.section-title span {
  color: #ffffff;
}

/* TOP CARDS */
.top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.top-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  transition: 0.4s ease;
}

.top-card:hover {
  transform: translateY(-10px);
}

.top-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.top-card h3 {
  font-size: 34px;
  color: #ffffff;
  font-weight: 700;
  margin: 30px 30px 15px;
}

.top-card p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 30px 35px;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* FEATURE BOX */
.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s ease;
  backdrop-filter: blur(5px);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ICON */
.icon-circle {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 2px solid rgba(255, 94, 125, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 32px;
  color: #ff5e7d;
}

/* TEXT */
.feature-box h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

/* TABLET */
@media (max-width: 992px) {
  .top-cards {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 42px;
  }

  .top-card h3 {
    font-size: 28px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-modern {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .top-card img {
    height: 220px;
  }

  .top-card h3 {
    font-size: 24px;
  }

  .top-card p {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    padding: 30px 22px;
  }

  .feature-box h4 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 14px;
  }

  .icon-circle {
    width: 75px;
    height: 75px;
  }

  .icon-circle i {
    font-size: 28px;
  }
}
