* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #05070f;
  color: white;
  overflow-x: hidden;

  padding: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(5, 7, 15, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #f5c04d;
}

.menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.menu a {
  color: #c7c7c7;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.menu a:hover,
.menu a.active {
  color: #f5c04d;
}

.menu a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #f5c04d;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.nav-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.nav-icons i:hover {
  color: #f5c04d;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,
      rgba(255, 193, 7, 0.18),
      transparent 40%);
  z-index: -1;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #f5c04d;
  font-size: 13px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title span {
  color: #f5c04d;
}

.hero-desc {
  color: #a8a8a8;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
}

.search-box-main {
  background: white;
  border-radius: 60px;
  padding: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 550px;
}

.search-box-main input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 22px;
  font-size: 16px;
  color: #333;
}

.search-box-main button {
  border: none;
  background: linear-gradient(135deg, #ffd15c, #e8a623);
  color: #111;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.search-box-main button:hover {
  transform: scale(1.03);
}

.popular-search {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.popular-search span {
  color: #8b8b8b;
  font-size: 14px;
}

.tag {
  padding: 8px 15px;
  border-radius: 20px;
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #d5d5d5;
  transition: 0.3s;
  cursor: pointer;
}

.tag:hover {
  background: #f5c04d;
  color: #111;
}

/* ================= PHONE CARD ================= */

.phone-side {
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle,
      rgba(255, 193, 7, 0.2),
      transparent 70%);
  filter: blur(10px);
}

.phone-card {
  width: 420px;
  /* 320 */
  background: linear-gradient(180deg, #1b1d27, #0c0f17);
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.number-box {
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 15px;
  background: rgba(255, 193, 7, 0.06);
  border: 1px solid rgba(255, 193, 7, 0.2);
  font-size: 28px;
  text-align: center;
  color: #ffd15c;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.hero-btn {
  padding: 12px 22px;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-purple {
  background: #6f3cff;
  color: white;
}

.btn-gold {
  background: #f5c04d;
  color: #111;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* ================= FEATURES ================= */

.features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #0d1320;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.4);
}

.feature-card i {
  font-size: 28px;
  color: #f5c04d;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  color: #9d9d9d;
  font-size: 14px;
  line-height: 1.7;
}

/* ================= CATEGORY ================= */

.category {
  padding: 90px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
}

.see-all {
  color: #f5c04d;
  font-weight: 500;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}

.category-card {
  padding: 30px 20px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card i {
  font-size: 38px;
  margin-bottom: 20px;
}

.category-card h3 {
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  opacity: 0.9;
}

.pink {
  background: linear-gradient(135deg, #ff4fa0, #6d1844);
}

.blue {
  background: linear-gradient(135deg, #5d7cff, #18295f);
}

.cyan {
  background: linear-gradient(135deg, #4de0ff, #154c58);
}

.gold {
  background: linear-gradient(135deg, #ffcb57, #6b4b14);
}

.purple {
  background: linear-gradient(135deg, #c54dff, #4d1a66);
}

.green {
  background: linear-gradient(135deg, #4cff91, #1c5b38);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px) {

  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 42px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu {
    display: none;
  }
}

@media(max-width:700px) {

  .hero-title {
    font-size: 34px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .search-box {
    flex-direction: column;
    border-radius: 25px;
  }

  .search-box input {
    width: 100%;
  }

  .search-box button {
    width: 100%;
  }

  .phone-card {
    width: 100%;
  }
}