* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.top-bar {
  background: #003d91;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 8%;
  font-size: 14px;
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 70px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
}

.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 40px;
}


/* Hero image slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
  /* Dark background to fill outer areas nicely */
  opacity: 0;
  animation: slide 12s infinite;
}

.hero-slider img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider img:nth-child(2) {
  animation-delay: 4s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes slide {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  41% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 90, .65);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #1e90ff;
  width: 700px;
  padding-left: 8%;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 90px 0;
}

.about-grid,
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about img,
.director img {
  width: 100%;
  border-radius: 15px;
}

/* New rules: reduce director image size and center it */
.director-grid>div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.director-grid img {
  max-width: 350px;
  /* increased image width */
  width: auto;
}

.about h5 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.about h2,
.director h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #003d91;
}

.tag {
  background: #003d91;
  color: white;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 20px;
}

.doctor-points {
  margin-top: 20px;
}

.doctor-points li {
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #003d91;
}

.services {
  background: #f8fbff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 45px;
  color: #003d91;
  margin-bottom: 20px;
}

.stats {
  background: #003d91;
  padding: 70px 0;
  color: white;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-grid h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.cta {
  background: #ff7a00;
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.cta a {
  background: white;
  color: #ff7a00;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}



@media(max-width:768px) {
  .hero h1 {
    font-size: 38px;
  }

  .about-grid,
  .director-grid,
  .service-grid,
  .gallery-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav ul {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 30px;
  }
}


body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.top-bar {
  background: #003d91;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 8%;
  font-size: 14px;
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 70px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
}

.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
}

/* Hero image slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slide 12s infinite;
}

.hero-slider img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider img:nth-child(2) {
  animation-delay: 4s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes slide {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  41% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 90, .65);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #1e90ff;
  width: 700px;
  padding-left: 8%;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 30px 0;
}

.about-grid,
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about img,
.director img {
  width: 100%;
  border-radius: 15px;
}

.about h5 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.about h2,
.director h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #003d91;
}

.tag {
  background: #003d91;
  color: white;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 20px;
}

.doctor-points {
  margin-top: 20px;
}

.doctor-points li {
  list-style-type: none;
  margin-bottom: 10px;
}

.doctor-points li i {
  color: #003d91;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #003d91;
}

.services {
  background: #f8fbff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 45px;
  color: #003d91;
  margin-bottom: 20px;
}

.stats {
  background: #003d91;
  padding: 70px 0;
  color: white;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-grid i {
  font-size: 42px;
  color: #ff7a00;
  margin-bottom: 15px;
  display: inline-block;
}

.stat-grid h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card component */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.card img {
  width: calc(100% + 32px);
  /* Spans the full width of the card, offsetting the padding */
  margin-left: -16px;
  margin-right: -16px;
  height: 570px;
  object-fit: cover;
  background-color: #f7f9fc;
  /* Light background to fill empty space */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card .gallery-caption {
  width: 100%;
  text-align: left;
}

.card .gallery-caption ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

.card .gallery-caption li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.card .gallery-caption li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #003d91;
  /* Primary site blue */
  font-weight: bold;
}


.gallery-grid img:not(.card img) {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* Doctors section styling */
.doctors {
  background: #f8fbff;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.doctor-card.card img {
  height: 180px;
  /* Reduced image height */
  object-fit: cover;
  border-radius: 6px;
  background-color: #f7f9fc;
}

.doctor-card.card h3 {
  font-size: 18px;
  color: #003d91;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
}

.doctor-card.card .doctor-info {
  width: 100%;
  text-align: center;
}

.doctor-card.card .specialty {
  font-size: 14px;
  color: #ff7a00;
  font-weight: 600;
  margin-bottom: 4px;
}

.doctor-card.card .qualification {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-bottom: 0;
}


.cta {
  background: #ff7a00;
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.cta a {
  background: white;
  color: #ff7a00;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* ── Footer ── */
        footer {
            background: #0a1628;
            color: rgba(255,255,255,0.7);
            padding: 52px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 36px;
        }

        footer h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        footer h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        footer p { font-size: 14px; line-height: 1.8; }

        footer ul { list-style: none; }
        footer ul li { margin-bottom: 8px; font-size: 14px; }
        footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
        footer ul li a:hover { color: #ff7a00; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

/* ── Doctor Page Specific Styles ── */

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        /* ── Page Hero ── */
        .page-hero {
            background: linear-gradient(135deg, rgba(0,61,145,0.93) 0%, rgba(0,25,80,0.97) 100%),
                        url('assets/images/gallery/about-hm1.PNG') no-repeat center center;
            background-size: cover;
            padding: 90px 0 80px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 120%, rgba(255,122,0,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero .tagline {
            display: inline-block;
            background: rgba(255,122,0,0.18);
            border: 1px solid rgba(255,122,0,0.5);
            color: #ffb066;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 8px 22px;
            border-radius: 30px;
            margin-bottom: 22px;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 14px;
            line-height: 1.15;
        }

        .page-hero h1 span { color: #ff7a00; }

        .page-hero p {
            font-size: 17px;
            color: rgba(255,255,255,0.78);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .breadcrumb-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
            font-size: 14px;
        }
        .breadcrumb-bar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
        .breadcrumb-bar a:hover { color: #ff7a00; }
        .breadcrumb-bar .sep { color: rgba(255,255,255,0.35); }
        .breadcrumb-bar .current { color: #ff7a00; font-weight: 600; }

        /* ── Doctors Section ── */
        .doctors-section {
            padding: 90px 0 100px;
            background: #f4f8ff;
        }

        .doctors-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .doctors-section .section-header .eyebrow {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: #ff7a00;
            background: rgba(255,122,0,0.08);
            border: 1px solid rgba(255,122,0,0.2);
            padding: 6px 20px;
            border-radius: 30px;
            margin-bottom: 18px;
        }

        .doctors-section .section-header h2 {
            font-size: 44px;
            font-weight: 800;
            color: #003d91;
            margin: 0;
            line-height: 1.15;
        }

        .doctors-section .section-header h2 span {
            color: #ff7a00;
        }

        .doctors-section .section-header .divider {
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #003d91, #ff7a00);
            border-radius: 4px;
            margin: 20px auto 0;
        }

        /* ── Doctor Cards Grid ── */
        .doctors-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
        }

        .doctor-profile-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 61, 145, 0.09);
            transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                        box-shadow 0.35s cubic-bezier(.4,0,.2,1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .doctor-profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 61, 145, 0.18);
        }

        /* Top accent line */
        .doctor-profile-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 5px;
            background: linear-gradient(90deg, #003d91 0%, #ff7a00 100%);
            border-radius: 20px 20px 0 0;
        }

        /* Image wrapper */
        .doctor-profile-card .card-img-wrap {
            position: relative;
            width: 100%;
            height: 280px;
            background: linear-gradient(160deg, #dce9ff 0%, #eef5ff 100%);
            overflow: hidden;
        }

        .doctor-profile-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.45s ease;
        }

        .doctor-profile-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        /* Overlay badge on image */
        .doctor-profile-card .card-img-wrap .img-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 40px 20px 14px;
            background: linear-gradient(to top, rgba(0,20,70,0.72) 0%, transparent 100%);
        }

        /* Card body */
        .doctor-profile-card .card-body {
            padding: 26px 28px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .doctor-profile-card .card-body h3 {
            font-size: 20px;
            font-weight: 800;
            color: #003d91;
            margin: 0;
            line-height: 1.25;
        }

        .doctor-profile-card .card-body .qualification-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(0, 61, 145, 0.07);
            border-left: 3px solid #003d91;
            color: #003d91;
            font-size: 13px;
            font-weight: 600;
            padding: 7px 14px;
            border-radius: 0 8px 8px 0;
            width: fit-content;
        }

        .doctor-profile-card .card-body .qualification-badge i {
            font-size: 12px;
            color: #ff7a00;
        }

        /* Special highlighted badge for director */
        .doctor-profile-card.director .card-body .role-tag {
            display: inline-block;
            background: linear-gradient(90deg, #003d91, #0055cc);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            width: fit-content;
        }

        .doctor-profile-card .card-footer-bar {
            border-top: 1px solid #edf2fb;
            padding: 14px 28px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fafcff;
        }

        .doctor-profile-card .card-footer-bar i {
            color: #ff7a00;
            font-size: 14px;
        }

        .doctor-profile-card .card-footer-bar span {
            font-size: 13px;
            color: #5a6a85;
            font-weight: 500;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #003d91 0%, #001f5e 100%);
            padding: 70px 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(255,122,0,0.15) 0%, transparent 65%);
        }

        .cta-banner h2 {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
        }

        .cta-banner p {
            color: rgba(255,255,255,0.7);
            font-size: 17px;
            margin-bottom: 30px;
            position: relative;
        }

        .cta-banner a.cta-btn {
            display: inline-block;
            background: #ff7a00;
            color: #fff;
            padding: 16px 42px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            position: relative;
            transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 6px 24px rgba(255,122,0,0.4);
        }

        .cta-banner a.cta-btn:hover {
            background: #e06500;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255,122,0,0.45);
        }

        /* ── Responsive ── */
        @media (max-width: 991px) {
            .doctors-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .page-hero h1 { font-size: 38px; }
            .doctors-section .section-header h2 { font-size: 34px; }
        }

        @media (max-width: 600px) {
            .doctors-cards-grid {
                grid-template-columns: 1fr;
            }
            .page-hero { padding: 70px 0 60px; }
            .page-hero h1 { font-size: 30px; }
            .doctor-profile-card .card-img-wrap { height: 240px; }
            .cta-banner h2 { font-size: 26px; }
        }

        /* Active nav link */
        .nav a.active { color: #ff7a00; }
		
		/* ── Visiting Doctors Section ── */
.visiting-section {
    padding: 90px 0 100px;
    background: #fff;
}

.visiting-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.visiting-section .section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ff7a00;
    background: rgba(255,122,0,0.08);
    border: 1px solid rgba(255,122,0,0.2);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.visiting-section .section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #003d91;
    margin: 0;
    line-height: 1.15;
}

.visiting-section .section-header h2 span { color: #ff7a00; }

.visiting-section .section-header .divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #003d91, #ff7a00);
    border-radius: 4px;
    margin: 18px auto 0;
}

/* Table wrapper */
.visiting-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,61,145,0.10);
}

.visiting-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
    min-width: 600px;
}

/* Header row */
.visiting-table thead tr {
    background: linear-gradient(90deg, #003d91 0%, #0055c8 100%);
    color: #fff;
}

.visiting-table thead th {
    padding: 18px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.visiting-table thead th:first-child { border-radius: 0; }
.visiting-table thead th i { margin-right: 8px; color: #ffb066; }

/* Body rows */
.visiting-table tbody tr {
    border-bottom: 1px solid #e8f0fb;
    transition: background 0.2s;
}

.visiting-table tbody tr:last-child { border-bottom: none; }

.visiting-table tbody tr:hover { background: #f0f6ff; }

.visiting-table tbody tr:nth-child(even) { background: #f7faff; }
.visiting-table tbody tr:nth-child(even):hover { background: #e8f2ff; }

.visiting-table tbody td {
    padding: 16px 24px;
    color: #2c3e60;
    vertical-align: middle;
}

/* Name cell */
.vt-name {
    font-weight: 700;
    color: #003d91;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vt-name .doc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003d91 0%, #0055c8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Specialization pill */
.vt-spec-badge {
    display: inline-block;
    background: rgba(0,61,145,0.07);
    color: #003d91;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0,61,145,0.12);
}

/* Hours cell */
.vt-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.vt-hours i { color: #ff7a00; font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
    .visiting-section { padding: 60px 0 70px; }
    .visiting-section .section-header h2 { font-size: 28px; }
    .visiting-table thead th,
    .visiting-table tbody td { padding: 12px 14px; }
    .vt-name .doc-avatar { width: 32px; height: 32px; font-size: 11px; }
}

@media(max-width:768px) {

  .hero {
    height: 35vh;
  }

  .hero h1 {
    font-size: 38px;
  }

  .about-grid,
  .director-grid,
  .service-grid,
  .gallery-grid,
  .doctors-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav ul {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 30px;
  }  

 

        /* ── CTA Banner ── */
        .cta-banner {
            background: linear-gradient(135deg, #003d91 0%, #001950 100%);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 130%, rgba(255,122,0,0.22) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-banner h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .cta-banner p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            margin-bottom: 28px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ff7a00;
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            padding: 16px 36px;
            border-radius: 50px;
            box-shadow: 0 8px 28px rgba(255,122,0,0.4);
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #e06800;
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(255,122,0,0.5);
        }
		
		
		 
     
		
		

}