* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* Header */
.main-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 70px;
}

.top-offer-bar {
  flex: 1;
  margin: 10px 20px;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  padding: 8px 15px;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.top-offer-bar marquee {
  font-weight: bold;
}

.navbar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 5px 10px;
}

.navbar a:hover {
  color: #fca311;
}

/* Hero Section */
.hadding-bar{
  flex: 1;
  margin: 10px 20px;
  background: linear-gradient(to right, #fca311, #ff0054);
  color: white;
  padding: 8px 15px;
  font-size: 1rem;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.hadding-bar marquee {
  font-weight: bold;
}
.hero {
  position: relative;
  background: linear-gradient(135deg, #fca311, #ff0054);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  white-space: nowrap;
  animation: slideTextRTL 15s linear infinite;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #fff;
  color: #ff0054;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #eee;
}

@keyframes slideTextRTL {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Badges */
.badge {
  position: absolute;
  top: 10px;
  padding: 6px 14px;
  background: #ea9621;
  color: #f2edef;
  font-weight: bold;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite alternate;
}


.badge.left {
  left: 20px;
}

.badge.right {
  right: 20px;
}
h2{
  color: #110f0e;
  font-weight: bold;
}
.active{
   /* position: absolute; */
  /* margin-bottom: 50px; */
   /* background: linear-gradient(to right, #fca311, #ff0054);
  color: #f7f70b;
  font-weight: small;
  border-radius: 25px; */
  /* box-shadow: 0 2px 6px rgba(81, 80, 80, 0.2); */
  /* z-index: 10; */
  /* animation: floatBadge 3s ease-in-out infinite alternate; */
  flex: 1;
  margin: 10px 20px;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  padding: 8px 15px;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;

}


@keyframes slideTextRTL {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
/* 
@keyframes floatBadge {
  10% { transform: translateY(0); }
  100% { transform: translateY(5px); } */
}

/* Sections */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Services / Collection */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-box h3 {
  margin-bottom: 10px;
  color: #fca311;
}

/* Gallery */
.gallery-section {
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}


/* Contact */

.contact{
padding:60px 20px;
background:#333;
text-align:center;
}

.contact-box{
background:white;
max-width:400px;
margin:auto;
padding:30px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* .contact-box p{
margin:10px 0;
font-size:16px;
}  

.contact {
  background: #333;
  color: #fff;
  padding: 50px 20px;
}

.contact p {
  margin: 10px 0;
} */

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffcb05;
}

.footer p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-contact p {
  font-size: 13px;
  color: #ccc;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: #ffcb05;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 10px;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
}

.whatsapp-inline-btn {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.whatsapp-inline-btn:hover {
  background-color: #128C7E;
}

/* About Section */
.about-section {
  background-color: #fff8f0;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #c0392b;
  font-weight: 700;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.about-section .about-point::before {
  content: "• ";
  color: #e67e22;
  font-weight: bold;
  margin-right: 5px;
}

.about-section .highlight {
  color: #d35400;
  font-weight: 600;
}

.about-section .about-ending {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.15rem;
  margin-top: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    gap: 10px;
  }

  .navbar {
    justify-content: center;
  }

  .top-offer-bar {
    margin: 10px 0;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.5em;
    white-space: normal;
    animation: none;
  }

  .services {
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .gallery img {
    height: 160px;
  }

  .badge {
    display: none;
  }
}
