/* =========================
   HEADER
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo i {
  font-size: 32px;
  color: #f5ca29;
}

.logo h2 {
  font-size: 30px;
  color: #0f172a;
  font-weight: 700;
}

.logo span {
  color: #f5ca29;
}

/* nav{
  display:flex !important;
  align-items:center;
  gap:35px;
      justify-content: center;
} */

nav a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffffff;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffffff;
}

.icons {
  display: flex;
  gap: 22px;
}

.icons i {
  width: 45px;
  height: 45px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5ca29;
  cursor: pointer;
  transition: 0.3s;
}

.icons i:hover {
  background: #f5ca29;
  color: #fff;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  position: relative;

  background:
    linear-gradient(rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.82)),
    url("../../../assets/images/imgLanding/mobiqo-background.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  width: 52%;
  color: #fff;
}

.small-text {
  color: #f5ca29;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.desc {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 35px;
}
.hero-button {
  color: #d5d5d2;
  background: #f5ca29;
  padding: 10px 20px;
  border-radius: 10px;
}
/* 
.hero-btns{
  display:flex;
  gap:20px;
} */

.primary-btn {
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  background: #f5ca29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

.secondary-btn {
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: #fff;
  color: #111827;
}

.hero-image {
  width: 42%;
}

.hero-image img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =========================
   FEATURES
========================= */

.features {
  background: #041b2f;
  margin-top: -70px;
  position: relative;
  z-index: 10;
  width: 86%;
  margin-inline: auto;
  border-radius: 25px;
  padding: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.feature-box {
  display: flex;
  gap: 18px;
  align-items: center;
}

.feature-box i {
  width: 65px;
  height: 65px;
  background: #eff6ff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f5ca29;
}

.feature-box h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}

.feature-box p {
  color: #96a3b4;
  font-size: 14px;
}

/* =========================
   CATEGORY
========================= */

.categories {
  background: #f8fafc;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #111827;
  padding: 20px 10px;
  text-align: center;
}

.card a {
  color: #f5ca29;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   PRODUCTS
========================= */

.products {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #e2e8f0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
  background: #f8fafc;
  padding: 30px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f5ca29;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 13px;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.rating {
  color: #f59e0b;
  margin-bottom: 14px;
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.new-price {
  color: #f5ca29;
  font-size: 24px;
  font-weight: 700;
}

.old-price {
  color: #94a3b8;
  text-decoration: line-through;
}

.product-content button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #f5ca29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.product-content button:hover {
  background: #1d4ed8;
}

/* =========================
   ABOUT
========================= */

.about {
  display: flex;
  align-items: center;
  gap: 70px;
  background: #f8fafc;
}

.about-image {
  width: 48%;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
}

.about-content {
  width: 52%;
}

.about-content h2 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 35px;
}
.about-small {
  color: #f5ca29 !important;
  font-weight: 600;
  margin-bottom: 10px !important;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.about-box {
  display: flex;
  gap: 14px;
  align-items: center;
}

.about-box i {
  width: 32px;
  height: 32px;
  background: #f5ca29;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #020617;
  color: #fff;
  padding: 80px 7% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-box h3 {
  margin-bottom: 25px;
}

.footer-box p {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-box a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #94a3b8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .product-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 7% 80px;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    margin-top: 50px;
  }

  .about {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features,
  .product-grid,
  .category-grid,
  .footer-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .section-title h2 {
    font-size: 32px;
  }
  .section-title p {
    color: #f5ca29 !important;
  }
  .about-content h2 {
    font-size: 38px;
  }

  .top-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .top-bar .left {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns {
    flex-direction: column;
  }
}
