* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #2f4f2f;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #8BC34A;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.15);
}

.navbar {
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.navbar a::after {
  content: '';
  height: 2px;
  background: white;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: url("images/hero-bg.jpg") no-repeat center/cover;
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.hero h1:hover {
  transform: scale(1.05);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Hero Image Box */
.hero-img-box {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 5px solid white;
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.1);
}

/* Button Box */
.button-box {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  background-color: white;
  color: #4CAF50;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: #4CAF50;
  color: white;
  transform: translateY(-3px);
}

/* Contact Section */
.contact-info {
  background: url("images/footer-bg.jpg") no-repeat center/cover;
  padding: 2rem;
  color: white;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #FFD700;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff4444;
}

/* Products Section */
.products {
  text-align: center;
  padding: 2rem 1rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.product {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product-img-box {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f9f9f9;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product:hover .product-img-box img {
  transform: scale(1.05);
}

.product h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #2f4f2f;
}

.product p {
  font-size: 0.9rem;
  color: #555;
}

/* ====== Consultation Form ====== */
.consultation-form {
  display: flex;
  flex-direction: column;
  align-items: center; 
  max-width: 600px;
  margin: 3rem auto; 
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.consultation-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2f4f2f;
}

.consultation-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.consultation-form button {
  padding: 0.75rem;
  background-color: #8BC34A;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consultation-form button:hover {
  background-color: #6fa32d;
  transform: translateY(-2px);
}

/* ====== About Section ====== */
.about {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}

.about img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.about .about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #2f4f2f;
  padding: 0 1rem;
}

.about .about-text p {
  margin-bottom: 1rem;
}

/* ====== Treatments Section (New Layout) ====== */
.treatments {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem;
}

.treatments .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2f4f2f;
}

.treatment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.treatment-text {
  flex: 1;
}

.treatment-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #2f4f2f;
}

.treatment-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.treatment-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.treatment-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .about img {
    width: 80%;
  }
  
  .consultation-form {
    width: 90%;
    padding: 1.5rem;
  }

  .navbar {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #8BC34A;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
  }

  .navbar.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Treatment section responsive */
  .treatment-card {
    flex-direction: column;
    text-align: center;
  }

  .treatment-img img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    margin-top: 1rem;
  }
}

