/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

body{
  background:linear-gradient(135deg,#dfe9f3,#ffffff);
}

/* ================= HEADER ================= */
.header-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 15px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.3);
  position:sticky;
  top:0;
  z-index:100;
  flex-wrap:wrap;
}

.logo-section img{
  width:60px;
  height:60px;
}

/* MENU */
.menu-section ul{
  display:flex;
  gap:10px;
  list-style:none;
  flex-wrap:wrap;
}

.menu-section ul li{
  padding:6px 10px;
  border-radius:20px;
  background:linear-gradient(135deg,#ff6a00,#ee0979);
}

.menu-section ul li a{
  text-decoration:none;
  color:#fff;
  font-size:12px;
  font-weight:500;
}

/* ================= PRODUCTS ================= */
.products-container{
  display:grid;
  grid-template-columns:repeat(3,1fr); /* 🔥 mobile 3 cards */
  gap:10px;
  padding:15px;
}

/* GLASS CARD */
.product-card{
  background:rgba(255,255,255,0.5);
  backdrop-filter:blur(10px);
  border-radius:12px;
  padding:10px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}

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

/* IMAGE */
.product-card img{
  width:100%;
  height:80px;
  object-fit:cover;
  border-radius:8px;
}

/* TEXT */
.product-card h3{
  font-size:13px;
  margin:6px 0;
}

.price{
  font-size:11px;
  color:#ff006e;
}

/* BUTTON */
.btn{
  display:block;
  margin:6px auto;
  padding:6px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:#fff;
  border-radius:20px;
  font-size:11px;
  text-decoration:none;
}

/* ================= APPLY SECTION ================= */
.apply-section{
  margin:15px;
  padding:15px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(10px);
  border-radius:12px;
}

.apply-section h2{
  text-align:center;
  color:#ff006e;
  margin-bottom:10px;
}

/* FLEX */
.apply-flex{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.apply-card{
  flex:1 1 45%;
  background:linear-gradient(135deg,#667eea,#764ba2);
  color:#fff;
  padding:12px;
  border-radius:10px;
  text-align:center;
  font-size:12px;
}

/* ================= BENEFITS ================= */
.benefits-section{
  margin:15px;
  padding:15px;
  border-radius:12px;
  background:linear-gradient(135deg,#f7971e,#ffd200);
  color:#000;
}

.benefits-section h2{
  text-align:center;
  margin-bottom:12px;
  font-size:18px;
}

/* GRID */
.benefits-list{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  list-style:none;
}

.benefits-list li{
  background:rgba(255,255,255,0.7);
  padding:10px;
  border-radius:8px;
  font-size:12px;
  font-weight:500;
}

/* ================= TABLET ================= */
@media(min-width:768px){

  .products-container{
    grid-template-columns:repeat(3,1fr);
  }

  .apply-card{
    flex:1 1 30%;
  }

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

/* ================= DESKTOP ================= */
@media(min-width:1024px){

  .products-container{
    grid-template-columns:repeat(4,1fr);
  }

  .benefits-list{
    grid-template-columns:repeat(3,1fr);
  }
}
/*footer*/
/* FOOTER */
.footer{
  background:linear-gradient(135deg,#1d3557,#457b9d);
  color:#fff;
  padding:25px 15px 10px;
  margin-top:20px;
}

/* CONTAINER */
.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:20px;
}

/* BOX */
.footer-box{
  flex:1 1 200px;
}

/* HEADINGS */
.footer-box h3,
.footer-box h4{
  margin-bottom:10px;
}

/* LINKS */
.footer-box a{
  display:block;
  color:#ddd;
  text-decoration:none;
  margin-bottom:6px;
  font-size:14px;
}

.footer-box a:hover{
  color:#fff;
}

/* TEXT */
.footer-box p{
  font-size:13px;
  color:#ccc;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:15px;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:10px;
  font-size:12px;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }
}
 /*whatsapp float button*/
 /* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;   /* 🔥 floating */
  bottom: 50px;
  right: 20px;

  width:60px;
  height:60px;

  background:#25D366;
  border-radius:50%;

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

  box-shadow:0 4px 15px rgba(0,0,0,0.3);
  z-index:9999;

  animation:pulse 2s infinite;
  transition:0.3s;
}

/* IMAGE */
.whatsapp-float img{
  width:30px;
  height:30px;
}

/* HOVER */
.whatsapp-float:hover{
  transform:scale(1.1);
}

/* ANIMATION */
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.7); }
  70%{ box-shadow:0 0 0 20px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}