* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans', sans-serif;
}

body {
  background-color: #fffde0;
}

/* ================= NAVBAR ================= */
.navbar {
  position: relative;
  z-index: 1000;
  top: 0;
  width: 100%;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #f5eab5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
}

.clinic-name {
  font-size: 30px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  z-index: 999;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 20px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: brown;
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #FAF3E0, #F5E6CC);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 50px;
  color: #2E2E2E;
}

.hero-text p {
  margin: 15px 0;
  font-size: 20px;
  color: #555;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;   /* 👈 pushes it down from text */
  
  padding: 16px 32px; /* 👈 makes it bigger */
  font-size: 18px;    /* 👈 improves readability */
  font-weight: 600;

  background: linear-gradient(135deg, #C9A66B, #A67C52);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 10px;

  transition: 0.3s;
}


.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  transition: 0.4s;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ================= SERVICES ================= */
.services {
  padding: 100px 20px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 80px;
  gap: 50px;
}

.service-row.reverse {
  flex-direction: row; /* override */
}


.service-image img {
  width: 420px;
  border-radius: 20px;
}

.service-image img:hover {
  transform: scale(1.05);
}

.service-text {
  max-width: 500px;
}

.service-text h2 {
  font-size: 36px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.6;
}

.services-new {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .services-new {
    padding-left: 20px;   /* 👈 THIS FIXES LEFT GAP */
    padding-right: 20px;  /* optional but keeps symmetry */
  }
}
@media (max-width: 768px) {
  .service-card-new:first-child {
    margin-left: 5px; /* 👈 creates small breathing space */
  }
}


/* CARD */
.service-card-new {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  text-align: center;
}

/* IMAGE */
.service-card-new img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TITLE */
.service-card-new h2 {
  margin: 15px 0 10px;
  color: #2E2E2E;
}

/* LIST */
.service-card-new ul {
  list-style: none;
  padding: 0 20px 20px;
}

.service-card-new li {
  margin: 8px 0;
  color: #555;
  position: relative;
}

/* custom bullet */
.service-card-new li::before {
  content: "✔";
  color: #C9A66B;
  margin-right: 8px;
}

/* HOVER */
.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



@media (max-width: 768px) {

  .service-row {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 100%;
  }

}

@media (max-width: 768px) {

  .services-new {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;              /* 👈 EXACTLY like gallery */
    -webkit-overflow-scrolling: touch;
  }

  .services-new::-webkit-scrollbar {
    display: none;              /* 👈 optional (clean look) */
  }

  .service-card-new {
    flex: 0 0 85%;              /* 👈 SAME as gallery-card */
    max-width: 85%;
    scroll-snap-align: center;  /* 👈 SAME as gallery */
  }

}

.service-card-new {
  border: 1px solid rgba(201,166,107,0.2);
}
.skin-card ul {
  max-height: 120px;   /* adjust height if needed */
  overflow-y: auto;
}

.skin-card ul::-webkit-scrollbar {
  width: 5px;
}

.skin-card ul::-webkit-scrollbar-thumb {
  background: #C9A66B;
  border-radius: 10px;
}


/* ================= ABOUT ================= */
.about {
  padding-top: 50px;
 
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Image */
.about-image img {
    display: flex;
    justify-content: center;
    height: 300px;
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Text */
.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* List */
.about-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-text li {
  margin-bottom: 10px;
}

 
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Social icons container */
.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Icon images */
.social-icons img {
  width: 45px;     /* fixed small size */
  height: 45px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover effect */
.social-icons img:hover {
  transform: scale(1.2);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.social-icons img {
  width: 40px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* ================= FOOTER ================= */
.footer {
  background: #b1a35c;
  color: white;
  padding: 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

/* ================= FLOAT BUTTONS ================= */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.15);
}

.whatsapp-float {
  bottom: 90px;
}

.call-float {
  bottom: 20px;
}

.whatsapp-float img,
.call-float img {
  width: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-content,
  .service-row,
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img,
  .service-image img,
  .about-image img {
    width: 100%;
  }

  .nav-links {
    display: none;
  }
} 

 /* ================= SKINCARE PAGE ================= */

.skincare-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD DESIGN */
.skincare-card {
  background: linear-gradient(135deg, #fffaf0, #f5e6cc);
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  border-left: 6px solid #C9A66B;
}

/* HOVER EFFECT */
.skincare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* HEADING */
.skincare-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #2E2E2E;
}

/* TEXT */
.skincare-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* LIST */
.skincare-card ul {
  padding-left: 18px;
}

.skincare-card ul li {
  margin-bottom: 8px;
  color: #333;
  line-height: 1.5;
}

/* HERO FIX (ONLY FOR SKINCARE PAGE HERO) */
.skincare-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.skincare-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}.skincare-hero {
  position: relative;
}

.skincare-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* dark overlay */
}


.skincare-hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.skincare-hero-text h1 {
  font-size: 38px;
}

.skincare-hero-text p {
  font-size: 18px;
  margin-top: 8px;
}


/* ================= FAQ FINAL ================= */

.faq-full-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
}

.faq-section-title {
  font-size: 26px;
  margin: 25px 0 10px;
  color: #333;
}

.faq-box {
  border-bottom: 1px solid #ccc;
}

.faq-q {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  border: none;
  background: #f5eab5;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.faq-a p {
  padding: 12px 0;
  color: #555;
}

.faq-box.active .faq-a {
  max-height: 200px;
}

.faq-box.active .faq-q span {
  transform: rotate(45deg);
}


/* ================= CONTACT PAGE ================= */

.contact-hero-block {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FAF3E0, #F5E6CC);
}

.contact-hero-block h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero-block p {
  color: #555;
  font-size: 18px;
}

/* Main Contact Info */
.contact-main-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  flex-wrap: wrap;
}

/* Cards */
.contact-info-card {
  background: #fff;
  padding: 25px;
  width: 280px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

.contact-info-card h2 {
  margin-bottom: 15px;
  color: #333;
}

.contact-info-card p {
  color: #555;
  margin: 5px 0;
}

/* FORM */
.contact-form-section {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.contact-form-section h2 {
  margin-bottom: 20px;
}

.contact-form-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form-box button {
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #C9A66B, #A67C52);
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form-box button:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-main-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  /* NAVBAR */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #f5eab5;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links.show-menu {
    display: flex;
  }

  .clinic-name {
    font-size: 18px;
  }

  /* HERO */
  .hero {
    padding: 60px 15px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  /* SERVICES */
  .service-row {
    flex-direction: column;
    text-align: center;
  }

  .service-text h2 {
    font-size: 26px;
  }

  .service-text p {
    font-size: 15px;
  }

  /* ABOUT */
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 24px;
  }

  /* FAQ */
  .faq-section-title {
    font-size: 20px;
  }

  .faq-q {
    font-size: 15px;
  }

  /* CONTACT */
  .contact-main-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-card {
    width: 100%;
    max-width: 320px;
  }

  /* SKINCARE */
  .skincare-container {
    padding: 10px;
  }

}


section {
  padding-left: 15px;
  padding-right: 15px;
}

/* ================= DOCTOR CARDS ================= */

.doctor-section-wrapper {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Card */
.doctor-card-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.doctor-card-box:hover {
  transform: translateY(-5px);
}

/* Image */
.doctor-img-box img {
  width: 250px;
  border-radius: 15px;
}

/* Info */
.doctor-info-box {
  max-width: 600px;
}

.doctor-info-box h2 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #2E2E2E;
}

.doctor-info-box p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {

  .doctor-card-box {
    flex-direction: column;
    text-align: center;
  }

  .doctor-img-box img {
    width: 100%;
    max-width: 300px;
  }

}


/*for testing ONLY

/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* CARD STYLE */
.service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.service-image img {
  width: 300px;
  border-radius: 12px;
}

/* TEXT */
.service-text h2 {
  margin-bottom: 10px;
  color: #222;
}

.service-text p {
  color: #555;
  line-height: 1.6;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 100%;
  }
}
/* SLIDER CONTAINER */
.gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
}

/* HIDE SCROLLBAR */
.gallery-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.gallery-card {
  flex: 0 0 85%;   /* 👈 THIS MAKES ONE CARD VISIBLE */
  max-width: 85%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: center;
  transition: 0.3s;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.gallery-card p {
  padding: 18px 16px 22px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
}

/* DESKTOP VIEW */
@media (min-width: 768px) {
  .gallery-card {
    flex: 0 0 300px; /* multiple cards visible */
    max-width: 300px;
  }

 .gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;   /* ✅ THIS ENABLES SCROLL */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
}

/* ================= OUR FACILITIES PAGE ================= */

.facilities-slider-section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden; /* prevents page shift */
}

/* Title */
.facilities-slider-section .facilities-title {
  font-size: 52px;
  margin-bottom: 10px;
}

/* Subtitle */
.facilities-slider-section .facilities-subtitle {
  max-width: 600px;
  margin: auto;
  color: #555;
  margin-bottom: 30px;
}

/* Slider container */
.facilities-slider-section .facilities-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar only here */
.facilities-slider-section .facilities-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.facilities-slider-section .facility-slide-card {
  flex: 0 0 85%;
  max-width: 85%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: center;
  text-align: center;
  transition: 0.3s;
}

/* Hover */
.facilities-slider-section .facility-slide-card:hover {
  transform: translateY(-5px);
}

/* Image */
.facilities-slider-section .facility-slide-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

/* Heading */
.facilities-slider-section .facility-slide-card h2 {
  margin: 15px 0 8px;
  font-size: 20px;
}

/* Text */
.facilities-slider-section .facility-slide-card p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #555;
}

/* Desktop view */
@media (min-width: 768px) {
  .facilities-slider-section .facility-slide-card {
    flex: 0 0 300px;
    max-width: 300px;
  }
}
