/* ===== GLOBAL ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
font-family:Arial,sans-serif;
background:#fff;
color:#333;
line-height:1.6;
}


/* ===== HEADER ===== */

header{
display:flex;
justify-content:space-between;
align-items:center;
background:#ff4d6d;
padding:15px 25px;
position:sticky;
top:0;
z-index:1000;
}

.logo{
color:#fff;
font-size:22px;
font-weight:bold;
}

nav ul{
list-style:none;
display:flex;
gap:20px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:600;
}

nav ul li a:hover{
color:#25D366;
}


/* ===== MOBILE MENU ===== */

.menu-toggle{
display:none;
font-size:26px;
color:#fff;
cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
display:block;
}

#navbar{
position:absolute;
top:70px;
right:20px;
width:220px;
background:#111;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.4);
opacity:0;
transform:translateY(-10px);
pointer-events:none;
transition:.3s;
}

#navbar.active{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

#navbar ul{
flex-direction:column;
padding:15px;
}

#navbar ul li{
border-bottom:1px solid rgba(255,255,255,.1);
}

#navbar ul li a{
display:block;
padding:12px;
}

}

.sliding-banner {
  position: fixed;       /* keeps it pinned */
  top: 0;                /* at the very top */
  left: 0;
  width: 100%;
  background: #f8f8f8;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid #ddd;
  padding: 10px 0;
  z-index: 9999;         /* ensures it stays above other elements */
}

.sliding-banner span {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  animation: slideText 15s linear infinite;
  font-size: 1.2em;
  color: #333;
  font-weight: bold;
}

@keyframes slideText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* ===== HERO ===== */

.hero{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:center;
padding:50px 20px;
background:#ffe6eb;
gap:30px;
}

.hero-content{
max-width:500px;
text-align:center;
}

.hero h1{
font-size:34px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero-img{
max-width:450px;
width:100%;
border-radius:10px;
}


/* ===== BUTTONS ===== */

.btn{
display:inline-block;
padding:10px 20px;
background:#ff4d6d;
color:#fff;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
background:#e03c5f;
transform:scale(1.05);
}


/* ===== WHATSAPP BUTTON ===== */

.whatsapp-btn{
background:#25D366;
color:#fff;
padding:8px 12px;
border-radius:6px;
display:inline-flex;
align-items:center;
gap:6px;
font-size:13px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.whatsapp-btn:hover{
background:#1ebe5d;
transform:scale(1.05);
}


/* ===== PRODUCTS ===== */

.products{
text-align:center;
padding:50px 15px;
}

.products h2{
font-size:28px;
margin-bottom:30px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
max-width:1200px;
margin:auto;
}

.product{
border:1px solid #ddd;
border-radius:10px;
padding:10px;
background:#fff;
transition:.3s;
}

.product:hover{
transform:translateY(-6px);
box-shadow:0 6px 15px rgba(0,0,0,.2);
}

.product img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
margin-bottom:8px;
}

.product h3{
font-size:15px;
margin-bottom:5px;
}

.product p{
font-weight:bold;
font-size:14px;
margin-bottom:8px;
}

/* Carousel container */
.carousel-container {
  margin: 40px 0;
}

.carousel-container h2 {
  margin-left: 20px;
  color: #ff4d6d;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Carousel */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 20px;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background-color: #ff4d6d;
  border-radius: 4px;
}

/* ===== ABOUT PAGE ===== */

.about-hero img{
width:100%;
height:auto;
object-fit:cover;
border-radius:10px;
margin-bottom:40px;
}

.about{
text-align:center;
padding:50px 20px;
max-width:900px;
margin:auto;
}

.about h1{
font-size:32px;
color:#ff4d6d;
margin-bottom:25px;
}

.about p{
font-size:18px;
margin-bottom:20px;
line-height:1.8;
}

.team{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin:40px 0;
}

.team-member{
text-align:center;
max-width:200px;
}

.team-member img{
width:100%;
border-radius:10px;
margin-bottom:10px;
transition:.3s;
}

.team-member img:hover{
transform:scale(1.05);
box-shadow:0 6px 12px rgba(0,0,0,.15);
}

.team-member p{
font-weight:bold;
}


/* ===== PROMISE ===== */

.our-promise{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin:40px 0;
}

.promise-item{
max-width:250px;
text-align:center;
padding:20px;
border-radius:10px;
background:#ffe6eb;
transition:.3s;
}

.promise-item i{
font-size:40px;
color:#ff4d6d;
margin-bottom:10px;
}

.promise-item:hover{
transform:translateY(-5px);
box-shadow:0 6px 12px rgba(0,0,0,.15);
}


/* ===== CONTACT ===== */

.contact{
text-align:center;
padding:50px 20px;
}

.contact h1{
font-size:32px;
margin-bottom:20px;
}

.contact p{
font-size:18px;
margin-bottom:30px;
}

.contact-info{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

.info-item{
display:flex;
align-items:center;
gap:10px;
font-size:18px;
}

.info-item i{
color:#ff4d6d;
font-size:22px;
}


/* ===== REVIEWS ===== */

.reviews{
padding:60px 20px;
background:#fafafa;
text-align:center;
}

.reviews-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.review{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.review p{
font-style:italic;
margin:10px 0;
}

.stars{
color:#FFD700;
font-size:18px;
}


/* ===== INSTAGRAM ===== */

.instagram-gallery{
padding:60px 20px;
text-align:center;
background:#f9f9f9;
}

.instagram-gallery h2{
font-size:28px;
margin-bottom:10px;
}

.instagram-gallery p{
color:#777;
margin-bottom:30px;
}

.insta-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:10px;
max-width:1200px;
margin:auto;
}

.insta-grid img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
transition:.3s;
}

.insta-grid img:hover{
transform:scale(1.05);
}

.insta-btn{
display:inline-block;
margin-top:25px;
background:#ff4d6d;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}


/* ===== FLOAT WHATSAPP ===== */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
font-size:14px;
text-decoration:none;
display:flex;
align-items:center;
gap:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}


/* ===== FOOTER ===== */

.footer{
background:linear-gradient(135deg,#ff4d6d,#ff758f);
color:white;
padding:60px 20px;
margin-top:60px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer p{
color:#eee;
line-height:1.6;
}

.footer-links ul{
list-style:none;
}

.footer-links a{
color:#eee;
text-decoration:none;
}

.footer-links a:hover{
color:white;
}


/* SOCIAL ICONS */

.social-icons{
display:flex;
gap:15px;
margin-top:10px;
}

.social-icons a{
font-size:18px;
color:white;
background:rgba(255,255,255,0.2);
padding:12px;
border-radius:50%;
transition:.3s;
}

.social-icons a:hover{
background:white;
color:#ff4d6d;
transform:scale(1.1);
}

.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid rgba(255,255,255,.3);
padding-top:15px;
}


/* ===== RESPONSIVE ===== */

@media(max-width:900px){

.product-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
flex-wrap:wrap;
}

.insta-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.product-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.product img{
height:130px;
}

}

@media(max-width:350px){

.product-grid{
grid-template-columns:1fr;
}

}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ff4d6d;
  color: #fff;
  margin-top: 40px;
}





