* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0c10;
  color: #fff;
}

/* SECTION */
.why-choose-us {
  padding: 120px 0;
  background: radial-gradient(circle at top, rgba(77,163,255,0.10), transparent 50%);
}

/* MAIN BOX */
.why-box {
  display: flex;
  gap: 40px;
  padding: 50px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

/* glow border */
.why-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(77,163,255,0.15), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* LEFT */
.why-left {
  flex: 1;
}

.tag {
  color: #4da3ff;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
}

.why-left h2 {
  font-size: 44px;
  margin: 20px 0;
  line-height: 1.2;
}

.why-left p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}

/* CTA */


.cta-btn:hover {
  background: #4da3ff;
  transform: translateY(-2px);
}

/* RIGHT */
.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FEATURE ITEM */
.feature {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.feature:hover {
  transform: translateX(6px);
  border-color: rgba(77,163,255,0.4);
  background: rgba(77,163,255,0.06);
}

.icon {
  color: #4da3ff;
  font-size: 18px;
  margin-top: 3px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 768px) {

  .why-choose-us {
    padding: 60px 0;
  }

  .why-box {
    flex-direction: column;
    gap: 30px;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .why-left {
    text-align: center;
  }

  .why-left h2 {
    font-size: 30px;
    line-height: 1.25;
    margin: 15px 0;
  }

  .why-left p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .cta-btns {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .why-right {
    gap: 14px;
  }

  .feature {
    padding: 18px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .icon {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(77,163,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  .feature h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .feature p {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  .why-choose-us {
    padding: 50px 0;
  }

  .why-box {
    padding: 18px;
  }

  .why-left h2 {
    font-size: 26px;
  }

  .why-left p {
    font-size: 14px;
  }

  .feature {
    padding: 16px;
  }

  .feature h3 {
    font-size: 15px;
  }

  .feature p {
    font-size: 12px;
  }
}



.main{

}


