/* ---------------------- */
/* RESET & BASE STYLES   */
/* ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}

/* ---------------------- */
/* LAYOUT UTILITIES       */
/* ---------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.white-bg {
  background: #fff;
}
.mint-bg {
  background: var(--mint);
}

/* ---------------------- */
/* TYPOGRAPHY             */
/* ---------------------- */
h1, h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* ---------------------- */
/* HERO SECTION           */
/* ---------------------- */
.hero.white-bg {
  padding-top: 100px;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.1rem;
  color: #555;
  border-left: 4px solid #b5e6b0;
  padding-left: 1rem;
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
}

/* ---------------------- */
/* SECTION BASE           */
/* ---------------------- */
section {
  padding: 4rem 1rem;
}
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

/* ---------------------- */
/* SERVICES GRID          */
/* ---------------------- */
.service-grid {
  background-color: #f6fef8;
}
.service-specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border: 2px solid #b5e6b0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ---------------------- */
/* ENT SCROLL SECTION     */
/* ---------------------- */
.ent-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.ent-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.ent-scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.ent-box {
  flex: 0 0 280px;
  background: #f9f9f9;
  border: 2px solid #b5e6b0;
  border-radius: 16px;
  padding: 1.5rem;
  scroll-snap-align: start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.ent-box:hover {
  transform: translateY(-5px);
}
.ent-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.ent-box h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.ent-box ul {
  list-style: disc inside;
  padding-left: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.ent-box ul li {
  margin-bottom: 0.4rem;
}

/* ---------------------- */
/* SURGICAL EXPERTISE     */
/* ---------------------- */
.container_surgical {
  max-width: 800px;
  margin: 0 auto;
}
.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.expertise-item {
  background: #fff;
  padding: 1rem 1.25rem;
  border-left: 4px solid #b5e6b0;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}
.expertise-item:hover {
  transform: translateX(5px);
}

/* ---------------------- */
/* CONDITIONS GRID        */
/* ---------------------- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.case-card {
  background: #fff;
  border: 2px solid #b5e6b0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.case-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #444;
  font-size: 1rem;
}
.case-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-size: 1rem;
}



/* CLinical Experienec*/
.experience-section {
  padding: 60px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.experience-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-card img {
  width: 48px;
  height: 48px;
}

.experience-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.experience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}


/* Skill*/
.skills-section {
  padding: 60px 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill-card {
  background-color: var(--mint);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: left;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
}

.skill-card span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}


/* ---------------------- */
/* RESPONSIVE             */
/* ---------------------- */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .cta .btn,
  .cta .btn-outline {
    width: 100%;
    max-width: 280px;
  }
}
