@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f6f7fb;
  color: #1f2933;
  line-height: 1.6;
}

/* Logo */

.logo {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.45));
}

.logo:hover {
  filter: drop-shadow(0 0 12px rgba(255,214,10,0.8));
  transform: scale(1.05);
}
/* ================= HEADER ================= */

header {
  background: linear-gradient(135deg, #1e3a5f, #2a4d7a);
  color: white;
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

header h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.tagline {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: -4px;
  letter-spacing: 0.5px;
}

/* ================= NAV ================= */

nav a {
  color: white;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  position: relative;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #f4d35e, #ffd60a);
  transition: .35s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffd60a;
  text-shadow: 0 0 10px rgba(255,214,10,.65);
}

/* ================= HERO ================= */
.hero .trust-info {
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.75;
  letter-spacing: 0.6px;
}


.hero {
  position: relative;
  color: white;
  padding: 130px 20px;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(11,28,45,0.75), rgba(11,28,45,0.85)),
    url("shop.png") center/cover no-repeat;
}

.hero h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero button {
  background: #f4d35e;
  border: none;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.hero button:hover {
  background: #ffd60a;
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 10px 30px rgba(255,214,10,.35),
    0 0 18px rgba(255,214,10,.75);
}

/* ================= SECTIONS ================= */

section {
  padding: 80px 60px;
}

section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 45px;
}
section {
  opacity: 0;                      /* start hidden */
  animation: fadeInSection .6s ease forwards;
}

/* Optional: stagger slightly for each section */
section:nth-of-type(1)  { animation-delay: 0s; }
section:nth-of-type(2)  { animation-delay: 0.15s; }
section:nth-of-type(3)  { animation-delay: 0.30s; }
section:nth-of-type(4)  { animation-delay: 0.45s; }


/* ================= PRODUCTS ================= */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  perspective: 900px;
}

.product {
  background: linear-gradient(180deg,#ffffff,#f9fafb);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all .35s ease;
}

.product:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 22px 45px rgba(0,0,0,0.25),
    0 0 22px rgba(255,214,10,.45);
}

.product img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  transition: transform .4s ease;
}

.product:hover img {
  transform: scale(1.18);
}

.product h3 {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ================= ABOUT ================= */

#about {
  background: white;
}

#about p {
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  font-size: 17px;
  color: #374151;
}

/* ================= CONTACT ================= */

#contact {
  background: #eef1f7;
}

.map {
  margin-top: 25px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ================= FOOTER ================= */

footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 22px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* ================= WHATSAPP ================= */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 0 24px rgba(37,211,102,.9);
}

.whatsapp-float img {
  width: 34px;
}

/* ================= POPUP ================= */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn .3s ease;
}

.popup img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: zoomIn .3s ease;
}

.popup .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

@keyframes zoomIn {
  from {transform:scale(.7);}
  to {transform:scale(1);}
}


/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: column;
    padding: 14px 18px;
    text-align: center;
  }

  .logo {
  height: 55px;
  width: auto;
}


  header h1 {
    font-size: 20px;
  }

  .tagline {
    font-size: 12px;
  }

  nav {
    margin-top: 12px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .hero {
  padding: 60px 18px;  
}

  .hero h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  .hero button {
    padding: 12px 26px;
    font-size: 14px;
  }

  section {
    padding: 45px 18px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product img {
  height: 115px;  
}

  footer {
    font-size: 13px;
  }
  .brands h2 {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
  }

  .hero .trust-info {
    font-size: 13px;
    line-height: 1.4;
  }

}

/* tiny fade-in for sections */
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.brands {
  background: #ffffff;
  padding: 70px 30px;
  text-align: center;
}



.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  align-items: center;
}

.brand-strip img {
  height: 70px;
  filter: grayscale(100%);
  opacity: .7;
  transition: .35s ease;
}

.brand-strip img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@media(max-width:768px) {
  .brand-strip img {
    height: 55px;
  }
}
.brands {
  background: #fff;
  padding: 70px 30px;
  overflow: hidden;
  text-align: center;
}

.brands h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.brand-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 22s linear infinite;
}

.brand-track img {
  height: 70px;
  margin: 0 45px;
  filter: grayscale(100%);
  opacity: .75;
  transition: .3s ease;
}

.brand-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(255,214,10,.55);
}

.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

@keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media(max-width:768px) {
  .brand-track img {
    height: 45px;
    margin: 0 25px;
  }
}
/* ===================== */
/* FADE-IN ON SCROLL */
/* ===================== */

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= FOLLOW US ================= */

.connect {
  background: #ffffff;
  text-align: center;
  padding: 70px 30px;
}

.connect h2 {
  font-size: 20px;  
  margin-bottom: 18px;
  letter-spacing: 0.4px;

}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.social-icons img {
  width: 42px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

.social-icons a:hover img {
  transform: scale(1.25);
  opacity: 1;
  filter: grayscale(0);
}

@media (max-width:768px) {
  .social-icons img {
    width: 34px;
  }
}
/* ===================== */
/* IMAGE REVEAL ANIMATION */
/* ===================== */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger effect for products */
.product.reveal {
  transition-delay: 0.1s;
}

.product.reveal:nth-child(2) { transition-delay: .15s; }
.product.reveal:nth-child(3) { transition-delay: .2s; }
.product.reveal:nth-child(4) { transition-delay: .25s; }
.product.reveal:nth-child(5) { transition-delay: .3s; }
.product.reveal:nth-child(6) { transition-delay: .35s; }
.product.reveal:nth-child(7) { transition-delay: .4s; }
.product.reveal:nth-child(8) { transition-delay: .45s; }
.product.reveal:nth-child(9) { transition-delay: .5s; }
/* ================= FOOTER UPGRADE ================= */

.site-footer {
  background: linear-gradient(135deg, #0b1c2d, #102a43);
  color: #e5e7eb;
  padding: 60px 30px 25px;
}

.footer-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-left strong {
  font-size: 20px;
  letter-spacing: .4px;
}

.footer-left p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  opacity: .8;
}

.footer-center p {
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social img {
  width: 28px;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: .3s ease;
}

.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.2);
}

.footer-right p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: .85;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  opacity: .7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  margin: 0;
  line-height: 1.1;
}

.tagline {
  margin-top: 2px;
  line-height: 1.2;
}
.hero {
  text-align: center;
}

.hero-logo {
  width: 150px;
  margin-bottom: 20px;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4));
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 52px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  margin: 0;
  line-height: 1.1;
}

.tagline {
  font-size: 13px;
  opacity: .85;
  margin-top: 2px;
}

