* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
}

body  {
  background: #f0f2f1;
  color: #26671f;
  font-family: 'Roboto', Arial, sans-serif;
}

/* HEADER */
/* HEADER */
/* LOGO */
.logo img {
  height: 65px;
  width: auto;
}
.header {
  display: flex;
  width: auto;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  height: fit-content;
  outline: #00000023;
  outline-width: 0.1cm;
  background: image(Massage)
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  padding: 12px 28px;
  border-radius: 35px;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color:#ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #D4AF37
}

/* HERO */
.hero {
  background: linear-gradient(to right, #2f6f4e, #0ba94d);
  text-align: center;
  padding: 100px 10%;
  color: white;
  text-shadow: #D4AF37;
}

.hero h1 { font-family: Playfai'r Display', serif;
  font-size: 3rem;
}
.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hero p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #fafaf7;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 35px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
}

.primary {
  background: #ffffff;
  color: #2E8B57;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.primary:hover, .secondary:hover {
  opacity: 0.9;
}



/* SERVICES */
.services {
  padding: 80px 10%;
  text-align: left;
  background: #4B0082;
  color: rgb(11, 134, 4);
}

.services h2 {
  font-size: 2.2rem;
  color: #2f6f4e;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #b800cc;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 { font-family: 'Playfair Display', serif;
  color: rgb(11, 134, 4);
  margin-bottom: 15px;
}

.card p {
  color: #a12f2f;
  line-height: 1.5;
}.services {
  padding: 80px 40px;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  color: rgb(11, 134, 4);
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0;
}

.service-card ul {
  list-style: none;
  padding: 0 20px 20px;
}

.service-card ul li {
  margin: 5px 0;
}
/* ABOUT */
.about { font-family: 'Playfair Display', serif;;
  padding: 80px 10%;
  text-align: center;
}

.about h2 { font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: rgb(11, 134, 4);
  margin-bottom: 20px;
  text-decoration: underline;
}

.about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #0e0e0e;
  line-height: 1.6;
}
.products{
padding:80px 40px;
background:lch(97.93% 0.01 296.81);
text-align:center;
}

.products h2{
font-size:2.5rem;
color: rgb(11, 134, 4);
margin-bottom:40px;
text-decoration-line: underline;
}

.product-slider{
overflow:scroll;
width:100%;
}

.product-track{
display:flex;
gap: 30px;
width:max-content;
animation:scroll 30s linear infinite;
}

.product{
flex:0 0 250px;
width:250px;
margin:0 20px;
color: rgb(11, 134, 4);
text-align:center;
}

.product img{
width:100%;
height:200px;
object-fit:scale-down;
border-radius:10px;
box-shadow:0 5px 15px rgba(225, 148, 16, 0.1);
}

.product p{
margin-top:10px;
font-weight:bold;
color: rgb(11, 134, 4);
}

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* CONTACT */
.contact {
  padding: 80px 10%;
  text-align: center;
}

.contact h2 { font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: rgb(11, 134, 4);
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact button {
  margin-top: 10px;
}

/* BUTTONS */
.btn {
  cursor: pointer;
}/* CTA */
.cta {
  background: rgb(11, 134, 4);
  color: white;
  text-align: center;
  padding: 60px 10%;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* CONTACT */
.contact input, .contact textarea {
  width: 100%;
  font-size: 1rem;
}

.contact button {
  background: #2f6f4e;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  opacity: 0.9;
}

/* FOOTER */
footer {
  background: #2E8B57;
  color: white;
  text-align: center;
  padding: 20px 10%;
}/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 1.5rem;
  }
}/* BUTTON HOVER */
.btn:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* CARD HOVER (already added but ensure smooth) */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  transition: transform 0.3s ease;
}
section {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* Fade-in for sections */
section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #000; /* or your header color */
}

.logo img {
  height: 70px;   /* Adjust size here */
  width: auto;
}header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #000; /* or your header color */
}

.logo img {
  height: 100px;   /* Adjust size here */
  width: auto;
}.wave {
  display: inline-block;
  animation: wave-animation 2s 1;
  transform-origin: 70% 70%;
}

@keyframes wave-animation {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(14deg); }
  50% { transform: rotate(-4deg); }
  60% { transform: rotate(10deg); }
  70% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.whatsapp-btn{
display:inline-block;
margin-top:15px;
padding:12px 25px;
background:#25D366;
color:white;
font-size:16px;
font-weight:bold;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.whatsapp-btn:hover{
background:#1ebe5d;
transform:scale(1.05);
}
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:30px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
transition:0.3s;
z-index:1000;
}

.whatsapp-float:hover{
background:#1ebe5d;
transform:scale(1.1);
}
.products h3{
margin-top:40px;
margin-bottom:20px;
font-size:1.8rem;
color:#2e8b57;
}
.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;

/* Background image */
background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url("images/hero.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}