/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#0b0f19;
  color:white;
  overflow-x:hidden;
  line-height:1.5;
}

/* GLOBAL SECTION SPACING */
section{
  padding:30px 4%;
  position:relative;
}

/* STYLISH SECTION DIVIDER */
section::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);

  width:90%;
  height:1px;

  background:
  linear-gradient(
    to right,
    transparent,
    rgba(0,217,255,0.4),
    transparent
  );
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 4%;

  background:rgba(10,10,20,0.9);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
  font-size:20px;
  font-weight:bold;
  color:#00d9ff;
}

.logo i{
  margin-right:8px;
}

.navbar nav{
  display:flex;
  align-items:center;
  gap:15px;
}

.navbar a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  font-size:14px;
}

.navbar a:hover{
  color:#00d9ff;
}

.contact{
  background:linear-gradient(135deg,#00d9ff,#0077ff);
  padding:8px 15px;
  border-radius:30px;
  font-weight:bold;
}

/* HERO */
.hero{
  position:relative;
  min-height:34vh;

  background:
  linear-gradient(rgba(0,0,0,0.75),
  rgba(0,0,0,0.78)),

  url("https://images.unsplash.com/photo-1606220588913-b3aacb4d2f46?q=80&w=1400&auto=format&fit=crop")
  center/cover no-repeat;

  display:flex;
  align-items:center;

  padding:45px 4% 28px;
}

.hero-content{
  max-width:700px;
}

.badge{
  display:inline-block;

  background:rgba(0,217,255,0.15);
  color:#00d9ff;

  border:1px solid rgba(0,217,255,0.2);

  padding:7px 15px;

  border-radius:50px;

  margin-bottom:14px;
  font-size:12px;
}

.hero h1{
  font-size:42px;
  line-height:1.15;
  margin-bottom:12px;
}

.hero h1 span{
  color:#00d9ff;
}

.hero p{
  color:#cfd3dc;
  line-height:1.6;
  margin-bottom:18px;
  font-size:15px;
}

.hero-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:linear-gradient(135deg,#00d9ff,#0077ff);

  color:white;
  text-decoration:none;

  padding:10px 20px;
  border-radius:28px;

  font-weight:bold;

  transition:0.3s;

  font-size:13px;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.12);
}

/* FILTER */
.filters{
  padding:22px 4%;
}

.searchbar{
  width:100%;
  padding:13px 18px;

  border:none;
  outline:none;

  border-radius:35px;

  background:#111827;
  color:white;

  margin-bottom:15px;

  font-size:14px;
}

.buttons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.buttons button{
  padding:9px 16px;

  border:none;
  border-radius:25px;

  background:#151d2d;
  color:white;

  cursor:pointer;
  transition:0.3s;

  font-size:13px;
}

.buttons button:hover,
.buttons .active{
  background:linear-gradient(135deg,#00d9ff,#0077ff);
}

/* PRODUCTS GRID */
.products{
  padding:0 4% 35px;

  display:grid;

  /* 5 PRODUCTS EACH ROW */
  grid-template-columns:repeat(5, 1fr);

  gap:15px;
}

/* PRODUCT CARD */
.card{
  background:#111827;

  border-radius:16px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.3s;

  display:flex;
  flex-direction:column;

  height:100%;
}

.card:hover{
  transform:translateY(-4px);

  box-shadow:
  0 10px 22px rgba(0,0,0,0.3),
  0 0 12px rgba(0,217,255,0.12);
}

/* PRODUCT IMAGE */
.card img{
  width:100%;

  height:180px;

  object-fit:cover;

  object-position:center;

  display:block;

  background:#0f172a;
}

/* PRODUCT TITLE */
.card h3{
  font-size:15px;

  line-height:1.3;

  padding:8px 10px 3px;

  color:white;

  margin:0;
}

/* PRICE */
.price{
  color:#00d9ff;

  font-size:16px;

  font-weight:600;

  padding:0 10px 8px;

  margin:0;
}

/* BUTTON */
.whatsapp{
  margin:0 10px 10px;

  text-align:center;

  background:linear-gradient(135deg,#00d9ff,#0077ff);

  color:white;

  text-decoration:none;

  padding:9px 12px;

  border-radius:24px;

  transition:0.3s;

  font-size:13px;
}

.whatsapp:hover{
  transform:scale(1.02);
}

/* ABOUT */
.about{
  padding:30px 4%;
  background:#0f1727;
  text-align:center;
}

.about h2{
  font-size:30px;
  margin-bottom:12px;
  color:#00d9ff;
}

.about p{
  max-width:680px;
  margin:auto;

  line-height:1.6;
  color:#cbd5e1;

  font-size:14px;
}

/* FOOTER */
footer{
  background:#05070d;
  padding:35px 4% 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
}

.footer-grid h3,
.footer-grid h4{
  margin-bottom:12px;
  color:#00d9ff;
}

.footer-grid p{
  color:#b7c0d0;
  line-height:1.5;
  font-size:13px;
}

.footer-grid a{
  display:block;

  color:#d1d5db;
  text-decoration:none;

  margin:8px 0;

  transition:0.3s;

  font-size:13px;
}

.footer-grid a:hover{
  color:#00d9ff;
  transform:translateX(3px);
}

/* FLOATING WHATSAPP */
.floating-wa{
  position:fixed;

  bottom:16px;
  right:16px;

  width:55px;
  height:55px;

  background:#25D366;
  color:white;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:22px;

  text-decoration:none;

  z-index:999;

  box-shadow:0 8px 18px rgba(0,0,0,0.3);

  transition:0.3s;
}

.floating-wa:hover{
  transform:scale(1.06);
}

/* SCROLLBAR */
::-webkit-scrollbar{
  width:6px;
}

::-webkit-scrollbar-thumb{
  background:#00d9ff;
  border-radius:20px;
}

/* LAPTOP */
@media(max-width:1100px){

  .products{
    grid-template-columns:repeat(4, 1fr);
  }

}

/* TABLET */
@media(max-width:850px){

  .products{
    grid-template-columns:repeat(3, 1fr);
  }

  .navbar{
    flex-direction:column;
    gap:10px;
  }

  .hero{
    min-height:30vh;
    padding:40px 4% 25px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:14px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    justify-content:center;
  }

  .buttons{
    justify-content:center;
  }

  .about h2{
    font-size:26px;
  }

}

/* MOBILE */
@media(max-width:600px){

  .products{
    grid-template-columns:repeat(2, 1fr);
  }

  .card img{
    height:160px;
  }

  .hero h1{
    font-size:26px;
  }

}

/* SMALL MOBILE */
@media(max-width:420px){

  .products{
    grid-template-columns:1fr;
  }

}