*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f4f4f4;
  color:#222;
}

/* TOP BAR */

.top-bar{
  background:#111;
  color:white;
  display:flex;
  justify-content:space-between;
  padding:10px 40px;
  font-size:14px;
}

/* HEADER */

.header{
  background:#0d47a1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  position:sticky;
top:0;
z-index:9999;
}

.logo h1{
  color:white;
  font-size:32px;
}
.navbar{
  display:flex;
  align-items:center;
  gap:25px;
}

.navbar a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  font-weight:500;
  transition:0.3s;
}

.navbar a:hover{
  color:#ffd54f;
}

/* HERO */

.hero{
  height:500px;
  background:linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ),
  url('images/background.jpg.png');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content{
  max-width:800px;
}

.hero h2{
  color:white;
  font-size:56px;
  margin-bottom:20px;
}

.hero p{
  color:white;
  font-size:20px;
  margin-bottom:30px;
  line-height:1.6;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn-primary,
.btn-secondary{
  padding:15px 35px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:#ffd54f;
  color:#111;
}

.btn-primary:hover{
  background:#ffca28;
}

.btn-secondary{
  background:white;
  color:#0d47a1;
}

.btn-secondary:hover{
  background:#e3e3e3;
}

/* SECTIONS */

.section-title{
  text-align:center;
  font-size:38px;
  margin-bottom:50px;
}

/* SERVICES */

.services{
  padding:100px 60px;
  background:white;
}

.service-container{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.service-card{
  background:#f7f7f7;
  padding:40px;
  border-radius:15px;
  width:320px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card h3{
  margin-bottom:20px;
  color:#0d47a1;
}

/* PRODUCTS */

.products{
  padding:100px 60px;
}

.product-container{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.product-card{
  background:white;
  width:300px;
  padding:35px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* CONTACT */

.contact{
  background:#0d47a1;
  color:white;
  padding:100px 20px;
  text-align:center;
}

.contact-box p{
  margin:15px 0;
  font-size:20px;
}

/* FOOTER */

.footer{
  background:#111;
  color:white;
  text-align:center;
  padding:20px;
}
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:white;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:1000;
}

.whatsapp-float:hover{
  background:#1ebe5d;
}

.about{
  padding:100px 20px;
  background:white;
  text-align:center;
}

.about-box{
  max-width:950px;
  margin:auto;
  background:#f7f7f7;
  padding:45px;
  border-radius:15px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.about-box p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:25px;
  color:#333;
}
.product-image{
  width:100%;
  height:200px;
  margin-bottom:20px;
  border-radius:12px;
  overflow:hidden;
  background:#eaeaea;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.reviews{
  padding:100px 20px;
  background:#f7f7f7;
  text-align:center;
}

.reviews-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:50px;
}

.review-card{
  background:white;
  padding:35px;
  border-radius:15px;
  width:320px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.review-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.review-card p{
  font-size:17px;
  line-height:1.7;
  margin-bottom:20px;
  color:#333;
}

.review-card strong{
  color:#0d47a1;
}
.back-to-top{
  position:fixed;
  bottom:95px;
  right:25px;
  width:55px;
  height:55px;
  background:#000103;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:30px;
  font-weight:bold;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:1000;
  transition:0.3s;
}

.back-to-top:hover{
  background:#000203;
  transform:translateY(-5px);
}
.social-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

/* INSTAGRAM */

.instagram-btn{
  background:#e1306c;
  color:white;
  padding:14px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.instagram-btn:hover{
  background:#c8235c;
  transform:translateY(-5px);
}

/* TIKTOK */

.tiktok-btn{
  background:#111;
  color:white;
  padding:14px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.tiktok-btn:hover{
  background:#333;
  transform:translateY(-5px);
}
@media (max-width: 768px){

  .header{
    position:relative;
  

}
  body{
    overflow-x:hidden;
  }

  .top-bar{
    flex-direction:column;
    text-align:center;
    gap:5px;
    padding:10px;
  }

  .header{
    flex-direction:column;
    padding:15px;
    gap:10px;
  }

  .logo h1{
    font-size:24px;
    text-align:center;
}

  .navbar{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

  .navbar a{
    margin-left:0;
    font-size:16px;
  }

  .dropdown-content{
    position:static;
    margin-top:10px;
  }

  .hero{
    height:auto;
    min-height:520px;
    padding:70px 20px;
  }

  .hero h2{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn-primary,
  .btn-secondary{
    width:220px;
    text-align:center;
  }

  .service-container,
  .product-container,
  .reviews-container{
    flex-direction:column;
    align-items:center;
  }

  .service-card,
  .product-card,
  .review-card{
    width:90%;
  }

  .contact-box p{
    font-size:18px;
  }
}