                                /* =========================================================
   Dr Divyashree Website - Clean Responsive CSS
   Replace your existing css/style.css with this file.
   ========================================================= */

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* =========================================================
   ROOT + RESET
   ========================================================= */

:root {
  --primary: #18467b;
  --primary-dark: #123964;
  --accent: #18b979;
  --accent-dark: #119b67;
  --text: #1f2f46;
  --muted: #5f6f84;
  --light: #f4f7fb;
  --card: #ffffff;
  --border: #e5eaf1;
  --shadow: 0 8px 24px rgba(15, 35, 65, 0.08);
  --shadow-soft: 0 4px 14px rgba(15, 35, 65, 0.06);
  --radius: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

section {
  width: 100%;
}

.container,
.hero-container,
.about-container,
.why-container,
.services-container,
.clinic-container,
.testimonial-container,
.faq-container,
.cta-container,
.footer-container,
.contact-hero-container,
.contact-strip-container,
.credentials-container,
.profile-wrap,
.mission-wrap,
.awards-wrap {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* Standard typography */

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.3;
  font-weight: 750;
}

p,
li {
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

.section-tag,
.why-tag,
.clinic-tag,
.testimonial-tag,
.faq-tag,
.section-label,
.hero-label,
.top-label,
.awards-label,
.mission-label,
.contact-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tag-line,
.section-label span,
.hero-label span,
.top-label span,
.awards-label span,
.mission-label span,
.contact-tag .tag-line {
  width: 34px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid var(--primary);
  position: relative;
  z-index: 20;
}

.header-container {
  max-width: 1350px;
  margin: auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo {
  width: 48px;
  height: auto;
}

.logo-text h2 {
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text p {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--accent);
  font-weight: 700;
  margin-top: 0.15rem;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.navbar a {
  color: #26384d;
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.navbar a:hover,
.navbar .active {
  color: var(--primary);
}

.navbar .active {
  background: #eef3f8;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.appointment-btn,
.about-btn,
.primary-btn,
.secondary-btn,
.cta-btn,
.services-btn,
.consult-btn,
.book-btn,
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  font-weight: 750;
  transition: 0.25s ease;
}

.appointment-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.appointment-btn:hover {
  background: var(--primary-dark);
}

.hero-light {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d8ecfb 0%, #bfe2f5 45%, #a7e1e4 100%);
  padding: 72px 20px;
  font-family: "Inter", Arial, sans-serif;
}

.hero-light-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

/* LEFT */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.28);
  color: #164884;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 38px;
}

.hero-badge span {
  width: 9px;
  height: 9px;
  background: #18b979;
  border-radius: 50%;
}

.hero-light-left h1 {
  margin: 0 0 26px;
  color: #164884;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.hero-light-left h1 strong {
  color: #18b979;
  font-weight: 900;
}

.hero-light-left > p {
  max-width: 540px;
  margin: 0 0 30px;
  color: #31597f;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

/* BUTTONS */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-primary,
.hero-secondary {
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.hero-primary {
  padding: 0 28px;
  background: #ffffff;
  color: #0ca77d;
  box-shadow: 0 8px 20px rgba(12, 45, 78, 0.1);
}

.hero-secondary {
  padding: 0 26px;
  background: #315f95;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(12, 45, 78, 0.12);
}

.hero-divider {
  width: 100%;
  max-width: 550px;
  height: 1px;
  background: rgba(24, 72, 132, 0.18);
  margin-bottom: 26px;
}

/* STATS */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 550px;
  gap: 24px;
}

.hero-stats h3 {
  margin: 0 0 8px;
  color: #18b979;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.hero-stats p {
  margin: 0;
  color: #164884;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

/* RIGHT */

.hero-light-right {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-orbit {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.doctor-orbit::before {
  content: "";
  position: absolute;
  width: 335px;
  height: 335px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.doctor-main {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2fa7d4 0%, #2197c8 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(12, 70, 120, 0.18);
  position: relative;
  z-index: 1;
}

.doctor-main i {
  color: #5ee0a9;
  font-size: 52px;
  margin-bottom: 18px;
}

.doctor-main h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.doctor-main p {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.doctor-main span {
  color: #59efaa;
  font-size: 14px;
  font-weight: 700;
}

/* FLOATING CARDS */

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(12, 45, 78, 0.14);
  z-index: 3;
}

.top-float {
  top: 70px;
  right: 10px;
}

.bottom-float {
  bottom: 60px;
  left: 0;
}

.float-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #edf3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #164884;
  font-size: 18px;
}

.hero-float-card h4 {
  margin: 0 0 2px;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.hero-float-card p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.3;
}

/* DECORATION */

.hero-shape,
.hero-dots {
  position: absolute;
  pointer-events: none;
}

.hero-shape {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-shape-left {
  width: 230px;
  height: 200px;
  left: -100px;
  top: 120px;
}

.hero-shape-right {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: 70px;
}

.hero-dots {
  width: 140px;
  height: 80px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.8;
}

.hero-dots-left {
  left: 45px;
  bottom: 70px;
}

.hero-dots-right {
  right: 70px;
  top: 60px;
}

/* TABLET */

@media (max-width: 1024px) {
  .hero-light-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-light-left > p,
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .hero-light-right {
    min-height: 440px;
  }

  .top-float {
    right: 18%;
  }

  .bottom-float {
    left: 18%;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .hero-light {
    padding: 55px 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 10px 15px;
    margin-bottom: 28px;
  }

  .hero-light-left h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.6px;
  }

  .hero-light-left > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    max-width: 285px;
    height: 48px;
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-stats h3 {
    font-size: 34px;
  }

  .hero-light-right {
    min-height: auto;
    display: block;
  }

  .doctor-orbit {
    width: 290px;
    height: 290px;
    margin: 0 auto;
  }

  .doctor-orbit::before {
    width: 225px;
    height: 225px;
  }

  .doctor-main {
    width: 205px;
    height: 205px;
  }

  .doctor-main i {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .doctor-main h2 {
    font-size: 22px;
  }

  .doctor-main p,
  .doctor-main span {
    font-size: 12px;
  }

  .hero-float-card {
    position: static;
    width: 100%;
    max-width: 280px;
    margin: 10px auto 0;
  }

  .hero-shape,
  .hero-dots {
    display: none;
  }
}

/* SMALL MOBILE */

@media (max-width: 420px) {
  .hero-light-left h1 {
    font-size: 32px;
  }

  .doctor-orbit {
    width: 260px;
    height: 260px;
  }

  .doctor-main {
    width: 190px;
    height: 190px;
  }
}

/* =========================================================
   ABOUT DOCTOR HOME
   ========================================================= */

.about-doctor {
  padding: 5rem 0;
  background: #ffffff;
}

.about-container {
  max-width: 1180px;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.doctor-card {
  width: 46%;
  background: #f5f7fa;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.doctor-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 2.6rem;
}

.doctor-info h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.doctor-info p {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.qualification-box {
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.qualification-box i {
  color: var(--accent);
  font-size: 1rem;
}

.qualification-box span {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
}

.about-content {
  width: 54%;
  max-width: 620px;
}

.about-content .section-tag {
  justify-content: flex-start;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 1.4rem;
}

.about-text {
  color: #1f1f1f;
  margin-bottom: 1.2rem;
}

.about-btn {
  margin-top: 1rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.95rem 1.65rem;
  font-size: 0.98rem;
}

.about-btn:hover {
  background: var(--primary-dark);
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */

.why-choose {
  padding: 5rem 0;
  background: #ffffff;
}

.why-container h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon,
.service-icon,
.clinic-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.9rem;
  background: #eef3f8;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
}

.why-card h3 {
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   HOME SERVICES
   ========================================================= */

.home-services {
  background: #ffffff;
  padding: 4.5rem 0;
}

.services-container {
  max-width: 920px;
}

.services-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label p {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.services-heading h2 {
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.services-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-box {
  background: var(--light);
  border-radius: 1rem;
  padding: 1.6rem;
  min-height: 168px;
}

.service-box h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.service-box p {
  color: #31485f;
  font-size: 0.9rem;
}

.services-btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

.services-btn {
  min-width: 160px;
  min-height: 44px;
  padding: 0 1.4rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: #ffffff;
  font-size: 0.9rem;
}

.services-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

/* =========================================================
   CLINIC TIMINGS
   ========================================================= */

.clinic-timings {
  padding: 5rem 0;
  background: var(--primary);
}

.clinic-container h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
}

.timing-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.timing-card {
  width: min(450px, 100%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.4rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.clinic-info {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.clinic-info h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.clinic-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.time-row {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.day {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.day i {
  color: var(--accent);
}

.day span,
.time-row strong {
  color: #ffffff;
  font-size: 0.95rem;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.testimonial-container h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.testimonial-card {
  max-width: 820px;
  margin: auto;
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 3rem 4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.testimonial-stars i {
  color: #f4b400;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #4b5565;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-card h3 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.testimonial-location {
  display: block;
  color: #8d99a8;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.testimonial-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #dce3eb;
  background: #ffffff;
  color: var(--primary);
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4dbe4;
}

.testimonial-dots .active-dot {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  padding: 5rem 0;
  background: #ffffff;
}

.faq-container h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.faq-wrapper {
  max-width: 820px;
  margin: auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  color: var(--primary);
  font-size: 1.05rem;
}

.faq-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--muted);
  padding-top: 1rem;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #20b57b 0%, #169b72 100%);
}

.cta-container {
  text-align: center;
}

.cta-container h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-container p {
  max-width: 720px;
  margin: 0 auto 2.3rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  min-height: 54px;
  padding: 0 1.6rem;
  font-size: 1rem;
}

.cta-section .primary-btn {
  background: #ffffff;
  color: var(--accent-dark);
}

.cta-section .secondary-btn {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--primary);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.35fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 76px;
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.5rem;
  margin-bottom: 1.4rem;
}

.footer-about p,
.footer-links a,
.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a:hover,
.contact-item a:hover {
  color: #79c7ff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--accent);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(121, 199, 255, 0.25);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
  color: #79c7ff;
  font-size: 0.9rem;
}

/* =========================================================
   CONTACT / APPOINTMENT PAGES
   ========================================================= */

.contact-hero,
.services-hero,
.about-banner {
  background: linear-gradient(135deg, #18457f 0%, #1f4c84 100%);
  padding: 5.5rem 1rem 5rem;
  text-align: center;
}

.contact-hero h1,
.services-hero h1,
.about-content h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-description,
.hero-description,
.about-content p {
  color: #d9e6f5;
  max-width: 720px;
  margin: auto;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.contact-strip {
  background: var(--accent);
  padding: 1.3rem 0;
}

.contact-strip-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-weight: 700;
}

.strip-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
}

.appointment-section {
  background: var(--light);
  padding: 3.5rem 1rem;
}

.appointment-section .container {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
}

.form-card,
.info-card,
.map-card {
  background: #ffffff;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.form-card {
  padding: 2.5rem;
}

.form-card h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  color: #12395b;
  font-size: 0.9rem;
  font-weight: 750;
  margin-bottom: 0.5rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd6e0;
  border-radius: 0.75rem;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  color: #16324f;
  outline: none;
  background: #ffffff;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form-card button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-card {
  padding: 1.8rem;
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 1.4rem;
}

.info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.info-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: #e8eef6;
  color: var(--primary);
}

.whatsapp {
  display: block;
  text-align: center;
  background: #2ecc71;
  color: #ffffff;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-weight: 800;
}

.map-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #f3f6fa;
}

/* =========================================================
   ABOUT PAGE EXTRA SECTIONS
   ========================================================= */

.doctor-profile,
.credentials-section,
.mission-section,
.awards-section,
.consultation-cta {
  padding: 4.5rem 0;
}

.profile-wrap,
.mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.profile-card {
  background: #f1f4f8;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
}

.profile-content h2,
.mission-content h2,
.section-title h2,
.awards-title h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.profile-content p,
.mission-content p,
.credential-card p,
.award-card p {
  color: var(--muted);
}

.features,
.credentials-grid,
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.credentials-grid,
.awards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.credential-card,
.award-card,
.mission-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

/* =========================================================
   SERVICES PAGE ACCORDION
   ========================================================= */

.services-section {
  background: var(--light);
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.service-card {
  width: min(770px, calc(100% - 24px));
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-header {
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card .service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 0.9rem;
  background: #edf2f7;
  color: var(--primary);
  margin-bottom: 0;
}

.service-card.active .service-icon {
  background: var(--primary);
  color: #ffffff;
}

.service-content h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.service-content p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 560px;
}

.toggle-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid #d9dee6;
  background: #ffffff;
  color: #bcc5d0;
  cursor: pointer;
  display: grid;
  place-items: center;
  margin-top: 0.45rem;
}

.toggle-btn:hover,
.toggle-btn:focus,
.toggle-btn:active {
  background: #ffffff;
  color: #bcc5d0;
  border-color: #d9dee6;
  outline: none;
  box-shadow: none;
}

.service-details {
  display: none;
  border-top: 1px solid #edf1f5;
  padding: 1.3rem 1.5rem 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card.active .service-details {
  display: grid;
}

.detail-box h4 {
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.detail-box p,
.detail-box li {
  color: #304761;
  font-size: 0.9rem;
}

.detail-box ul {
  padding-left: 1.1rem;
}

.detail-box li::marker {
  color: var(--accent);
}

.consult-btn {
  margin-top: 1rem;
  min-height: 34px;
  padding: 0 1rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.82rem;
}

/* =========================================================
   BLOG PAGE
   ========================================================= */

.blog-hero {
  background: linear-gradient(135deg, #183f73 0%, #1f4f86 100%);
  padding: 5.5rem 1rem 5rem;
  text-align: center;
}

.blog-hero h1 {
  color: #ffffff;
}

.blog-description {
  max-width: 620px;
  margin: auto;
  color: #dbe8f6;
}

.blog-section {
  background: var(--light);
  padding: 3.5rem 1rem;
}

.blog-grid {
  width: min(760px, 100%);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.blog-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.6rem 1.35rem;
  min-height: 265px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.category {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-card h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-footer {
  border-top: 1px solid #edf1f5;
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #8a98aa;
  font-size: 0.72rem;
}

.blog-footer a {
  margin-left: auto;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-cta {
  width: min(760px, 100%);
  margin: auto;
  background: var(--primary);
  border-radius: 1rem;
  text-align: center;
  padding: 2.2rem 1rem;
}

.blog-cta h2 {
  color: #ffffff;
  font-size: 1.4rem;
}

.blog-cta p {
  color: #d9e6f5;
  margin: 0.7rem 0 1.4rem;
}

.blog-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
  .why-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    padding: 1.1rem;
    gap: 1rem;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }

  .navbar a,
  .navbar .active {
    display: inline-block;
    padding: 0.55rem 0.75rem;
  }

  .header-right {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .hero-container,
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right,
  .doctor-card,
  .about-content {
    width: 100%;
  }

  .hero-badge,
  .about-content .section-tag {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .doctor-card {
    max-width: 560px;
    margin-inline: auto;
  }

  .why-grid,
  .services-grid,
  .timing-grid,
  .profile-wrap,
  .mission-wrap,
  .credentials-grid,
  .awards-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid,
  .appointment-section .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --radius: 16px;
  }

  body {
    text-align: initial;
  }

  .header-container {
    padding: 1rem;
  }

  .logo {
    width: 42px;
  }

  .logo-text h2 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.68rem;
  }

  .navbar ul {
    gap: 0.4rem;
  }

  .navbar a,
  .navbar .active {
    font-size: 0.86rem;
    padding: 0.45rem 0.65rem;
  }

  .appointment-btn {
    width: min(260px, 100%);
    min-height: 46px;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero-container {
    gap: 2.8rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.65rem 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-left > p {
    font-size: 1rem;
    margin-inline: auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero .primary-btn,
  .hero .secondary-btn,
  .cta-btn {
    width: min(310px, 100%);
    min-height: 50px;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .doctor-circle {
    width: 300px;
    height: 300px;
  }

  .inner-circle {
    width: 215px;
    height: 215px;
  }

  .floating-card {
    position: static;
    width: min(280px, 100%);
    margin: 1rem auto 0;
  }

  .circle,
  .dot-pattern {
    display: none;
  }

  .about-doctor,
  .why-choose,
  .home-services,
  .clinic-timings,
  .testimonial-section,
  .faq-section,
  .cta-section,
  .footer,
  .doctor-profile,
  .credentials-section,
  .mission-section,
  .awards-section,
  .blog-section,
  .appointment-section {
    padding-block: 3.5rem;
  }

  .why-grid,
  .services-grid,
  .timing-grid,
  .profile-wrap,
  .mission-wrap,
  .features,
  .credentials-grid,
  .awards-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .service-box,
  .timing-card,
  .testimonial-card,
  .faq-item,
  .profile-card,
  .credential-card,
  .award-card,
  .mission-card,
  .form-card,
  .info-card {
    padding: 1.4rem;
  }

  .testimonial-card {
    padding: 2rem 1.3rem;
  }

  .time-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question {
    padding: 1.15rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.15rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-about p {
    margin-inline: auto;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .service-header {
    padding: 1.15rem;
  }

  .service-left {
    gap: 0.85rem;
  }

  .service-card .service-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.1rem;
  }

  .service-details {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 1.15rem;
  }

  .contact-strip-container {
    flex-direction: column;
    gap: 0.85rem;
  }

  .strip-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-container,
  .about-container,
  .why-container,
  .services-container,
  .clinic-container,
  .testimonial-container,
  .faq-container,
  .cta-container,
  .footer-container,
  .contact-hero-container,
  .contact-strip-container,
  .credentials-container,
  .profile-wrap,
  .mission-wrap,
  .awards-wrap {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-left h1 {
    font-size: 2.35rem;
  }

  .doctor-circle {
    width: 270px;
    height: 270px;
  }

  .inner-circle {
    width: 200px;
    height: 200px;
  }

  .inner-circle h2 {
    font-size: 1.35rem;
  }

  .degree,
  .specialist {
    font-size: 0.82rem;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.84rem;
  }

  .blog-footer {
    flex-wrap: wrap;
  }

  .blog-footer a {
    margin-left: 0;
  }
}
    
    /* ABOUT PAGE FIX */

.about-banner {
  background: linear-gradient(135deg, #183f78 0%, #1e4f86 100%);
  padding: 82px 20px;
  text-align: center;
}

.about-banner .about-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.about-banner .about-content h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-banner .about-content p {
  color: #d9e6f3;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.subtitle-wrap .line {
  width: 55px;
  height: 1px;
  background: #22c58b;
}

.subtitle {
  color: #22c58b;
  font-size: 13px;
  font-weight: 700;
}

/* DOCTOR PROFILE */

.doctor-profile {
  background: #fff;
  padding: 70px 20px;
}

.profile-wrap {
  width: 973px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 461px 1fr;
  gap: 51px;
  align-items: start;
}

.profile-card {
  background: #f1f4f8;
  border-radius: 18px;
  padding: 32px 31px 30px;
  text-align: center;
  height: auto;
}

.profile-content {
  max-width: 461px;
  padding-top: 0;
}

.profile-content h2 {
  color: #174a83;
  font-size: 25px;
  line-height: 1.18;
  margin-bottom: 23px;
}

.profile-content p {
  color: #213a56;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 15px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 14px;
  margin-top: 28px;
}

.features div {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 12px 14px;
  color: #082946;
  font-size: 12px;
  font-weight: 600;
}

/* CREDENTIALS */

.credentials-section {
  background: #f4f6f9;
  padding: 60px 20px;
}

.credentials-container {
  width: 975px;
  max-width: 100%;
  margin: 0 auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* MISSION */

.mission-section {
  background: #fff;
  padding: 64px 20px 68px;
}

.mission-wrap {
  width: 973px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 461px 1fr;
  gap: 51px;
  align-items: center;
}

/* AWARDS */

.awards-section {
  background: #f4f7fb;
  padding: 70px 20px;
}

.awards-wrap {
  width: 973px;
  max-width: 100%;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 18px;
}

/* MOBILE */

@media (max-width: 900px) {
  .profile-wrap,
  .mission-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .profile-card,
  .profile-content {
    max-width: 520px;
    margin: 0 auto;
  }

  .profile-content {
    text-align: left;
  }

  .credentials-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-banner {
    padding: 60px 16px;
  }

  .profile-card {
    padding: 28px 20px;
  }

  .profile-content h2 {
    font-size: 24px;
  }
.consultation-cta {
  background: #17467d;
  padding: 56px 20px;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-content p {
  margin: 0 0 28px;
  color: #d9e6f3;
  font-size: 15px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20b98a;
  color: #ffffff;
  text-decoration: none;
  min-width: 185px;
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.gallery-section {
  padding: 80px 20px;
  background: #f7f9fc;
  font-family: "Inter", Arial, sans-serif;
}

.gallery-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.gallery-tag .tag-line {
  width: 40px;
  height: 2px;
  background: #18b67a;
}

.gallery-tag p {
  color: #18b67a;
  font-weight: 700;
}

.gallery-header h2 {
  font-size: 42px;
  color: #123f7a;
  line-height: 1.2;
  margin: 15px 0;
}

.gallery-subtitle {
  color: #5f6b7a;
  font-size: 16px;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #e8eef6;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 63, 122, 0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  color: #123f7a;
  display: grid;
  place-items: center;
}

.photo-gallery {
  padding: 90px 20px;
  background: #f7f9fc;
  font-family: "Inter", Arial, sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-heading span {
  color: #18b979;
  font-size: 14px;
  font-weight: 800;
}

.gallery-heading h2 {
  margin: 12px 0 14px;
  color: #143d78;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
}

.gallery-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: #5f6f84;
  font-size: 16px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #e8eef6;
  box-shadow: 0 8px 24px rgba(15, 35, 65, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-gallery {
    padding: 70px 16px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-heading p {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item {
    height: 230px;
    border-radius: 18px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .gallery-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {

    .gallery-header h2 {
        font-size: 30px;
    }

}

.appointment-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}
     .home-services {
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Inter", Arial, sans-serif;
}

.services-container {
  max-width: 960px;
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 16px;
}

.section-label span {
  width: 34px;
  height: 2px;
  background: #18b979;
}

.section-label p {
  margin: 0;
  color: #18b979;
  font-size: 13px;
  font-weight: 800;
}

.services-heading h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #164884;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 900;
}

.services-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: #5f6f84;
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-box {
  background: #f4f7fb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 35, 65, 0.06);
}

.service-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #e8eef6;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 22px 24px 26px;
}

.service-content h3 {
  margin: 0 0 12px;
  color: #073f7c;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.service-content p {
  margin: 0;
  color: #31485f;
  font-size: 14px;
  line-height: 1.7;
}

.services-btn-wrap {
  text-align: center;
  margin-top: 36px;
}

.services-btn {
  min-width: 165px;
  height: 44px;
  padding: 0 26px;
  border: 1.5px solid #164884;
  border-radius: 999px;
  color: #164884;
  background: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .home-services {
    padding: 55px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 30px;
  }

  .services-subtitle {
    font-size: 14px;
  }

  .service-image {
    height: 180px;
  }
}   