
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f1f5f9;
  color: #111827;
}


.top-bar {
  background: linear-gradient(to right, #020617, #0f172a);
  color: #e5e7eb;
  text-align: center;
  font-size: 12px;
  padding: 6px;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;

  display: flex;
  justify-content: center;
}
.logo img {
  height: 80px;   
  width: auto;
}
.top-content {
  display: flex;
  align-items: center;   
  gap: 8px;             
}

/* ICON */
.top-icon {
  width: 14px;       
  height: 14px;
  flex-shrink: 0;       
}


.top-bar span {
  color: #3b82f6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.nav-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;

  padding: 10px 20px;
  position: relative;
}
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;                  
  transform: translate(-50%, -50%);

  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links li {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.nav-links .active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 4px;
}
.nav-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: #111;
  stroke-width: 2;
  cursor: pointer;
  transition: 0.2s;
}

.icon:hover {
  stroke: #2563eb;
}




/* ===== HERO ===== */
.hero {
  padding: 90px 20px;
  background: url('assets/ChatGPT Image Jun 19, 2026, 05_21_35 PM.png') no-repeat center center/cover;
  background-size: contain;
  margin-top: 40px;
  border-radius: 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-text {
  max-width: 650px;
}

.hero-text .small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #2563eb;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text span {
  color: #3b82f6;
  white-space: nowrap;
}

.hero-text .desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.hero-text button {
  background: #2563eb;
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.hero-text button:hover {
  background: #1e40af;
}

/* FEATURES LINE */
.hero-features {
  margin-top: 25px;
  display: flex;
  gap: 25px;
  font-size: 13px;
  color: #374151;
}

.hero-features span {
  display: flex;
  align-items: center;   
  gap: 6px;
}

.feature-icon {
  width: 16px;
  height: 16px;
  stroke: #2563eb;   
  stroke-width: 2;
}

/* RIGHT */
.hero-image {
  width: 420px;
  height: 320px;
  background: radial-gradient(circle, #e5e7eb, #cbd5f5);
  border-radius: 20px;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 30px 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}


.category {
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.icon-circle {
  
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 20px;
  color: #2563eb;
  transition: 0.2s;
}
.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category p {
  font-size: 13px;
  color: #374151;
}

.category:hover .icon-circle {
  background: #2563eb;
  color: #fff;
}

.features {
  padding: 30px 20px;
}

.features-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px;
  background: #fff;
  border-radius: 12px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
  margin-top: 40px;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-circle {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;

  font-size: 16px;
}


.feature-card h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.feature-card p {
  font-size: 13px;
  color: #6b7280;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 50px 20px;
}

.products h2 {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
  font-size: 24px;
}

.product-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card .img {
  height: 130px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
}
.footer {
  background: #fff;
  padding: 60px 20px;
  margin-top: 50px;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.footer-col li:hover {
  color: #2563eb;
}

/* Payment icons */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-icons img {
  height: 55px;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {

  .nav-container {
    padding: 10px;
  }

  .nav-icons {
    gap: 15px;
  }

  .hero {
    padding: 50px 15px;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-text .desc {
    font-size: 14px;
  }

  .hero-text button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .icon-circle img {
    width: 80%;
    height: 80%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
  }

  .payment-icons img {
    height: 45px;
  }
}
@media (max-width: 390px) {

  /* HERO */
  .hero {
    padding: 40px 12px;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-text .desc {
    font-size: 13px;
  }

  .hero-text button {
    width: 100%;
    padding: 12px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* CATEGORIES */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
  }

  .icon-circle img {
    width: 80%;
    height: 80%;
  }

  /* FEATURES (INFO CARDS) */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* PRODUCTS */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* NAVBAR */
  .nav-container {
    padding: 8px 10px;
  }

  .nav-icons {
    gap: 12px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    gap: 8px;
  }

  .payment-icons img {
    height: 30px;
  }
}
