/* ==========================================================================
   Kanailal Raha Seva Sadan - Hero Slider & Home Page CSS
   ========================================================================== */

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #04140d;
}

.hero-slider-container {
  position: relative;
  width: 100%;
}

/* Individual Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-slide-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(134, 239, 172, 0.35);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.875rem;
  font-weight: 700;
  color: #86efac;
  margin-bottom: 1.25rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.15rem;
  letter-spacing: -0.5px;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.hero-title span {
  color: var(--logo-orange, #f58220);
}

.hero-lead {
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

/* Quick Appointment Card on Hero */
.hero-form-card {
  background: #ffffff;
  color: var(--text-body, #334155);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 5;
}

.hero-form-card h3 {
  color: #0b3b74;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.hero-form-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.35rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-size: 0.925rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-nav, 'Inter', sans-serif);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #1865c9;
  box-shadow: 0 0 0 3px rgba(24, 101, 201, 0.15);
}

/* Slider Controls: Arrow Buttons & Dots */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(11, 59, 116, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow-btn:hover {
  background: var(--logo-orange, #f58220);
  border-color: var(--logo-orange, #f58220);
  transform: translateY(-50%);
}

.slider-prev {
  left: 1.5rem;
}

.slider-next {
  right: 1.5rem;
}

.slider-dots-container {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--logo-orange, #f58220);
  border-color: #ffffff;
  width: 32px;
  border-radius: 10px;
}

/* Stats Ribbon (Clean Human Institutional Impact Ribbon) */
.stats-ribbon-wrapper {
  position: relative;
  z-index: 25;
  margin-top: -3rem;
  margin-bottom: 2.5rem;
}

.stats-ribbon-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(11, 59, 116, 0.08);
  padding: 2.15rem 1.75rem;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #1865c9;
}

/* 4 Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
  padding: 0.25rem 1rem;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 600;
  color: #0b3b74;
  font-family: var(--font-nav, 'Inter', sans-serif);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  font-family: var(--font-nav, 'Inter', sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.35;
}

/* Document Hero Action Buttons (Below Stats Card) */
.hero-buttons-container {
  margin-bottom: 5.5rem;
}

.hero-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 1.75rem;
  border-radius: 12px;
  font-size: 1.025rem;
  font-weight: 600;
  font-family: var(--font-nav, 'Inter', sans-serif);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.cta-appointment {
  background: #0b3b74;
  color: #ffffff;
  border: 2px solid #0b3b74;
}

.cta-appointment:hover {
  background: #062244;
  border-color: #062244;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 59, 116, 0.25);
  color: #ffffff;
}

.cta-donate {
  background: #f58220;
  color: #ffffff;
  border: 2px solid #f58220;
}

.cta-donate:hover {
  background: #dc6f12;
  border-color: #dc6f12;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 130, 32, 0.3);
  color: #ffffff;
}

.cta-csr {
  background: #ffffff;
  color: #0b3b74;
  border: 2px solid #0b3b74;
}

.cta-csr:hover {
  background: #0b3b74;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 59, 116, 0.2);
}

@media (max-width: 992px) {
  .hero-buttons-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
  }
  .stat-item:last-child, .stat-item:nth-child(3) {
    border-bottom: none;
  }
  .hero-buttons-container {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

/* Welcome to Kanailal Raha Seva Sadan Section (Full-Bleed Left Photo & Unboxed Right Content) */
.welcome-section {
  position: relative;
  width: 100%;
  background-color: #ebf4fd;
  padding: 3.5rem 0 0 0;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

/* Full-Bleed Background Photo Layer (Spans from absolute left screen edge 0px) */
.welcome-bg-photo-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 82px; /* Just above the bottom 4-values ribbon */
  width: 53%;
  z-index: 1;
  overflow: hidden;
}

.welcome-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* Smooth Linear Gradient Fade Overlay on Right Edge of Photo */
.welcome-photo-fade-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to right, 
    rgba(235, 244, 253, 0) 0%, 
    rgba(235, 244, 253, 0.4) 35%, 
    rgba(235, 244, 253, 0.88) 75%, 
    #ebf4fd 100%
  );
  pointer-events: none;
}

/* Organic S-Curve SVG Mask Shape Over Right Edge of Photo */
.welcome-organic-curve-mask {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 140px;
  height: 100%;
  pointer-events: none;
}

/* Background Accent Shapes */
.welcome-bg-accent-top-right,
.welcome-bg-accent-bottom-left {
  display: none;
}

/* Content Wrapper (Text Right Aligned) */
.welcome-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 1rem 3.5rem 3rem 0;
}

.welcome-text-column {
  width: 50%;
  max-width: 720px;
  padding: 1rem 0 1rem 1.5rem;
}

.welcome-category {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 600;
  color: #1865c9;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 0.35rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.welcome-category-line {
  width: 36px;
  height: 3px;
  background: #1865c9;
  border-radius: 2px;
  margin-bottom: 1.15rem;
}

.welcome-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #0b3b74;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
  letter-spacing: -0.4px;
}

.welcome-lead {
  font-size: 1.025rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.68;
  margin-bottom: 1.1rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.welcome-text {
  font-size: 0.965rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.welcome-quote-box {
  background: #e4effc;
  border-left: 4px solid #1865c9;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.65rem;
}

.welcome-quote-box p {
  font-size: 1rem;
  font-weight: 600;
  color: #0b3b74;
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.quote-author {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1865c9;
  margin-top: 0.45rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

/* Bottom 4 Values Ribbon */
.welcome-bottom-values {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(24, 101, 201, 0.12);
  padding: 1.5rem 3.5rem;
}

.welcome-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  max-width: 1350px;
  margin: 0 auto;
}

.val-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  border-right: 1px solid rgba(203, 213, 225, 0.8);
  padding-right: 1.25rem;
}

.val-item:last-child {
  border-right: none;
  padding-right: 0;
}

.val-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e4effc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b3b74;
  margin: 0 0 0.15rem 0;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.val-info p {
  font-size: 0.825rem;
  color: #64748b;
  margin: 0;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

@media (max-width: 1024px) {
  .welcome-bg-photo-layer {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 380px;
  }
  .welcome-photo-fade-overlay,
  .welcome-organic-curve-mask {
    display: none;
  }
  .welcome-content-wrapper {
    justify-content: center;
    padding: 0 1.5rem 2rem 1.5rem;
  }
  .welcome-text-column {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0 0 0;
  }
  .welcome-bottom-values {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .welcome-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .val-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.85rem;
  }
  .val-item:last-child, .val-item:nth-child(3) {
    border-bottom: none;
  }
}

/* Why Choose Us Section (Simple Normal Hospital Layout) */
.why-choose-section {
  padding: 4rem 0 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.section-header-simple {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.sub-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1865c9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.section-main-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0b3b74;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
  letter-spacing: -0.3px;
}

.section-main-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  font-family: var(--font-nav, 'Inter', sans-serif);
  line-height: 1.6;
}

/* Why Choose Us Section (Exact Concept Reference Layout) */
.why-choose-section {
  padding: 4.5rem 0 5.25rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Background Watermark Emblem */
.why-bg-watermark {
  position: absolute;
  top: -40px;
  right: -50px;
  width: 420px;
  height: 420px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.why-bg-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dot Patterns */
.why-dot-pattern {
  position: absolute;
  width: 110px;
  height: 90px;
  background-image: radial-gradient(#cbd5e1 1.6px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.dot-pattern-left {
  top: 75px;
  left: 175px;
}

.dot-pattern-right {
  bottom: 60px;
  right: 175px;
}

/* Orange Underline Line beneath CLINICAL COMMITMENT sub-label */
.sub-label-orange-line {
  width: 32px;
  height: 3px;
  background: #f58220;
  border-radius: 2px;
  margin: 0.4rem auto 0.85rem auto;
}

/* Left & Right Semicircle Side Badges */
.why-side-semicircle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.side-badge-left {
  left: 0;
  width: 170px;
  height: 340px;
  background: #0b3b74; /* Deep Royal Navy Blue */
  border-radius: 0 170px 170px 0;
  border: 4px solid #f58220; /* Outer Vibrant Orange Stroke Ring */
  border-left: none;
  box-shadow: 0 10px 30px rgba(11, 59, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1.5rem;
}

.side-badge-right {
  right: 0;
  width: 170px;
  height: 340px;
  background: #f58220; /* Vibrant Orange */
  border-radius: 170px 0 0 170px;
  border: 4px solid #0b3b74; /* Outer Royal Navy Blue Stroke Ring */
  border-right: none;
  box-shadow: 0 10px 30px rgba(245, 130, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.5rem;
}

.side-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.side-badge-inner svg {
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.side-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.35;
  color: #ffffff;
}

.side-badge-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 0.6rem;
}

/* 5x2 Cards Grid Layout */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.35rem;
  max-width: 1280px;
  margin: 0 auto;
}

.why-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.1rem 1.15rem 1.75rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #1865c9;
  box-shadow: 0 14px 35px rgba(24, 101, 201, 0.12);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e4effc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  transition: all 0.28s ease;
}

.why-card:hover .why-card-icon {
  background: #1865c9;
}

.why-card:hover .why-card-icon svg {
  stroke: #ffffff;
}

.why-card h3 {
  font-size: 1.025rem;
  font-weight: 700;
  color: #0b3b74;
  margin: 0 0 0.45rem 0;
  font-family: var(--font-nav, 'Inter', sans-serif);
  line-height: 1.35;
}

.why-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.why-choose-section .welcome-container-wide {
  position: relative;
  z-index: 1;
}

@media (max-width: 1650px) {
  .side-badge-left, .side-badge-right {
    width: 135px;
    height: 290px;
  }
  .side-badge-left { padding-left: 0.85rem; }
  .side-badge-right { padding-right: 0.85rem; }
  .side-badge-text { font-size: 0.725rem; }
  .dot-pattern-left { left: 135px; }
  .dot-pattern-right { right: 135px; }
}

@media (max-width: 1400px) {
  .why-side-semicircle {
    display: none;
  }
  .dot-pattern-left { left: 20px; }
  .dot-pattern-right { right: 20px; }
}

@media (max-width: 1100px) {
  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
  .why-dot-pattern {
    display: none;
  }
}

@media (max-width: 520px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.section-padding {
  padding: 4.5rem 0;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
}

.dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1865c9;
}

.dept-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #edf5fd;
  color: #1865c9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.35rem;
}

.dept-title {
  font-size: 1.3rem;
  color: #0b3b74;
  margin-bottom: 0.6rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.dept-desc {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.dept-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1865c9;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dept-link:hover {
  color: #f58220;
}

/* About Section Card */
.about-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.values-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.value-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.95rem 1.2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #0b3b74;
  font-size: 0.95rem;
}

/* CD Block Lookup Box */
.blocks-widget {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2.75rem;
  border: 1px solid #e2e8f0;
}

.blocks-search-input {
  max-width: 480px;
  margin: 1.35rem 0 2.25rem 0;
}

.block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.block-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #0f172a;
  font-weight: 600;
  transition: all 0.18s ease;
}

.block-chip:hover {
  background: #1865c9;
  color: #ffffff;
  border-color: #1865c9;
}

/* Recent Health Blogs Section & Slider Styling */
.blog-slider-section {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  padding: 5rem 0;
}

.blog-slider-section .container {
  max-width: 1520px;
  width: 96%;
}

.blog-slider-header {
  margin-bottom: 2.25rem;
  max-width: 720px;
}

.blog-slider-container {
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.blog-slider-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1.25rem 0;
}

.blog-nav-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 25;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0b3b74;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(11, 59, 116, 0.16);
}

.blog-prev-btn {
  left: -24px;
}

.blog-next-btn {
  right: -24px;
}

.blog-nav-btn:hover:not(:disabled) {
  background: #0b3b74;
  color: #ffffff;
  border-color: #0b3b74;
  box-shadow: 0 8px 20px rgba(11, 59, 116, 0.28);
}

.blog-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  box-shadow: none;
}

.blog-slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* 3 cards visible on desktop (992px+) */
.blog-card-v2 {
  flex: 0 0 calc((100% - (2 * 1.75rem)) / 3);
  min-width: calc((100% - (2 * 1.75rem)) / 3);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card-v2:hover {
  box-shadow: 0 10px 24px rgba(11, 59, 116, 0.1);
  border-color: #cbd5e1;
}

.blog-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-category-text {
  font-weight: 700;
  color: #1865c9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.blog-readtime {
  font-weight: 600;
  color: #64748b;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b3b74;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #1865c9;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  font-size: 0.825rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #64748b;
}

.blog-read-link {
  color: #1865c9;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-read-link:hover {
  color: #0b3b74;
}

/* Dots container */
.blog-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #0b3b74;
}

/* Responsive breakdowns */
@media (max-width: 991px) {
  .blog-card-v2 {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
  .blog-prev-btn {
    left: -12px;
  }
  .blog-next-btn {
    right: -12px;
  }
}

@media (max-width: 640px) {
  .blog-card-v2 {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .blog-prev-btn {
    left: 0;
  }
  .blog-next-btn {
    right: 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.1rem;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .about-box-grid {
    grid-template-columns: 1fr;
  }
  .slider-arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .slider-prev { left: 0.75rem; }
  .slider-next { right: 0.75rem; }
}

/* Mid-Page High-Impact CTA Banner Section (Clean Solid Royal Navy Theme) */
.mid-cta-banner-section {
  position: relative;
  width: 100%;
  background: #0b3b74; /* Solid Royal Navy Blue - No Gradient */
  padding: 4rem 2rem;
  overflow: hidden;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mid-banner-container {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
}

.mid-banner-glow-left,
.mid-banner-glow-right {
  display: none;
}

.mid-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.mid-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.6px;
  margin-bottom: 1.25rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #f58220;
  border-radius: 50%;
}

.mid-banner-heading {
  font-size: 2.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.15rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
  letter-spacing: -0.4px;
}

.mid-banner-subtext {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.mid-banner-helpline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
}

.helpline-icon {
  width: 40px;
  height: 40px;
  background: #f58220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.helpline-info {
  display: flex;
  flex-direction: column;
}

.helpline-label {
  font-size: 0.785rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.helpline-number {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.helpline-number:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Right Action Buttons & Features */
.mid-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mid-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 1.85rem;
  border-radius: 10px;
  font-size: 1.025rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-nav, 'Inter', sans-serif);
  transition: all 0.22s ease;
  text-align: center;
}

.btn-orange {
  background: #f58220;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.25);
}

.btn-orange:hover {
  background: #e07115;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: #ffffff;
  color: #0b3b74;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.mid-banner-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.feat-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: #ffffff;
  font-weight: 500;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

@media (max-width: 992px) {
  .mid-banner-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .mid-banner-heading {
    font-size: 1.85rem;
  }
}

/* Our Medical Specialists & Clinical Team Section (V3) */
.doctors-section-v3 {
  padding: 4.5rem 0 5rem 0;
  background: linear-gradient(180deg, #f0f7ff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Background Ambient Glow Accents & Pattern */
.doc-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.doc-bg-glow.glow-1 {
  top: -80px;
  left: 5%;
  width: 450px;
  height: 450px;
  background: rgba(24, 101, 201, 0.08);
  filter: blur(100px);
}

.doc-bg-glow.glow-2 {
  bottom: -80px;
  right: 5%;
  width: 450px;
  height: 450px;
  background: rgba(8, 145, 178, 0.08);
  filter: blur(100px);
}

.doc-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(24, 101, 201, 0.12) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.doctors-container-v3 {
  width: 85%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.watermark-text {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 0.725rem;
  font-weight: 700;
  color: rgba(24, 101, 201, 0.15);
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
  pointer-events: none;
  font-family: var(--font-nav, sans-serif);
}

.bg-plus-icon {
  position: absolute;
  top: 0rem;
  right: 2rem;
  font-size: 11rem;
  font-weight: 300;
  color: rgba(24, 101, 201, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Header V3 */
.doctors-header-v3 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.doctors-sub-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1865c9;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-family: var(--font-nav, sans-serif);
}

.badge-line {
  width: 25px;
  height: 2px;
  background: #1865c9;
  border-radius: 1px;
}

.doctors-title-v3 {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0b3b74;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  letter-spacing: -0.5px;
  font-family: var(--font-nav, sans-serif);
}

.highlight-blue {
  color: #1865c9;
}

.doctors-subtitle-v3 {
  font-size: 1.025rem;
  color: #475569;
  font-weight: 500;
  font-family: var(--font-nav, sans-serif);
}

/* Doctors Grid V3 (3 Columns x 2 Rows = 6 Cards) */
.doctors-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
}

.doctor-card-v3 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(11, 59, 116, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.doctor-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(11, 59, 116, 0.14);
  border-color: #93c5fd;
}

.doc-card-top {
  display: flex;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.doc-card-left {
  width: 145px;
  height: 185px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}

.doc-v3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.doctor-card-v3:hover .doc-v3-img {
  transform: none;
}

.doc-card-right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  min-width: 0;
}

.doc-dept-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e0f2fe;
  color: #0284c7;
  padding: 0.28rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-family: var(--font-nav, sans-serif);
}

.doc-v3-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b3b74;
  margin: 0 0 0.15rem 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-nav, sans-serif);
}

.doc-v3-dept {
  font-size: 0.725rem;
  font-weight: 700;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  display: block;
  font-family: var(--font-nav, sans-serif);
}

.doc-v3-degree {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0 0 0.75rem 0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-nav, sans-serif);
}

.doc-v3-schedule {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sched-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 500;
  font-family: var(--font-nav, sans-serif);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sched-row svg {
  stroke: #1865c9;
  flex-shrink: 0;
}

.doc-v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.8rem 1rem;
  background: #0b3b74;
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-nav, sans-serif);
  transition: all 0.25s ease;
  margin-top: auto;
}

.doc-v3-btn:hover {
  background: #1865c9;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(24, 101, 201, 0.3);
}

.doc-v3-btn .arrow-right {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.doc-v3-btn:hover .arrow-right {
  transform: translateX(4px);
}

@media (max-width: 1280px) {
  .doctors-container-v3 {
    width: 92%;
  }
  .doctors-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .doctors-container-v3 {
    width: 95%;
  }
  .doctors-grid-v3 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HEALTHCARE DEPARTMENTS & CLINICAL SERVICES (V3 - ROYAL BLUE SLIDER)
   ========================================================================== */
.departments-section-v3 {
  padding: 3.25rem 0 3.5rem 0; /* Reduced section padding */
  background: #0b3b74; /* Matches Mid-CTA banner royal blue color exactly */
  position: relative;
  overflow: hidden;
}

/* Hospital Decorative SVG Graphic Icon Watermarks */
.dept-med-icon-watermark-left {
  position: absolute;
  top: -40px;
  left: -40px;
  color: #ffffff;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.dept-med-icon-watermark-right {
  position: absolute;
  bottom: -40px;
  right: -30px;
  color: #ffffff;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.dept-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.dept-bg-glow.glow-top {
  top: -100px;
  right: 5%;
  width: 500px;
  height: 500px;
  background: rgba(56, 189, 248, 0.12);
  filter: blur(120px);
}

.dept-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.departments-container-v3 {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

/* Header V3 for Slider with Top Right Action Button */
.depts-header-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem; /* Reduced header spacing */
}

.depts-header-v3 {
  text-align: left;
  max-width: 760px;
}

.depts-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.825rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-nav, sans-serif);
}

.badge-line-cyan {
  width: 28px;
  height: 2px;
  background: #38bdf8;
  border-radius: 1px;
}

.depts-title-v3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  letter-spacing: -0.5px;
  font-family: var(--font-nav, sans-serif);
}

.highlight-blue {
  color: #38bdf8;
}

.depts-subtitle-v3 {
  font-size: 1.025rem;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.55;
  font-family: var(--font-nav, sans-serif);
}

.view-all-depts-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #38bdf8;
  color: #062247;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.35);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.view-all-depts-btn:hover {
  background: #ffffff;
  color: #0b3b74;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Slider Wrapper & Side-Flanking Left/Right Arrow Buttons */
.departments-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}

.dept-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #0b3b74;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.dept-side-btn.prev-btn {
  left: -26px;
}

.dept-side-btn.next-btn {
  right: -26px;
}

.dept-side-btn:hover:not(:disabled) {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #0b3b74;
  transform: translateY(-50%);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45);
}

.dept-side-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  box-shadow: none;
}

.departments-slider-outer {
  width: 100%;
  overflow: hidden;
  padding: 0.6rem 0.3rem 1.25rem 0.3rem;
}

.departments-slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Card Styling with Photo Box & Front-Layered Icon Badge */
.dept-card-v3 {
  flex: 0 0 calc(33.333% - 1.17rem);
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dept-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
  border-color: #38bdf8;
}

.dept-card-img-box {
  width: 100%;
  height: 235px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.dept-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.dept-card-v3:hover .dept-card-img {
  transform: none; /* Removed hover image zoom effect */
}

/* Front-Layered Overlapping Circular Icon Badge */
.dept-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #1865c9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  border: 3px solid #ffffff;
  margin-top: -24px; /* Pulls badge UP to float seamlessly on top of photo! */
  margin-left: 0.15rem;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 10; /* Ensures 100% front visibility */
}

.dept-card-body {
  padding: 0 1.35rem 1.25rem 1.35rem; /* Reduced card padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.dept-card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.4rem;
  display: block;
  font-family: var(--font-nav, sans-serif);
}

.dept-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b3b74;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  font-family: var(--font-nav, sans-serif);
}

.dept-card-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 0.95rem 0; /* Reduced description bottom margin */
  font-family: var(--font-nav, sans-serif);
}

/* Card Footer Row */
.dept-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.dept-card-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1865c9;
  text-decoration: none;
  font-family: var(--font-nav, sans-serif);
  padding: 0.4rem 0;
  transition: all 0.22s ease;
}

.dept-card-secondary-link svg {
  transition: transform 0.22s ease;
}

.dept-card-secondary-link:hover {
  color: #0b3b74;
}

.dept-card-secondary-link:hover svg {
  transform: translateX(4px);
}

.dept-card-btn svg {
  transition: transform 0.22s ease;
}

.dept-card-btn:hover svg {
  transform: translateX(4px);
}

.dept-card-secondary-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  font-family: var(--font-nav, sans-serif);
  transition: color 0.2s ease;
}

.dept-card-secondary-link:hover {
  color: #1865c9;
}

/* Dots Indicator */
.dept-dots-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dept-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dept-dot.active {
  width: 26px;
  border-radius: 999px;
  background: #38bdf8;
}

@media (max-width: 1100px) {
  .departments-container-v3 {
    width: 94%;
  }
  .dept-card-v3 {
    flex: 0 0 calc(50% - 0.875rem); /* 2 cards on tablet */
  }
  .dept-side-btn.prev-btn {
    left: -15px;
  }
  .dept-side-btn.next-btn {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .depts-header-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .view-all-depts-btn {
    margin-top: 0;
  }
  .dept-watermark-left, .dept-watermark-right {
    display: none;
  }
}

@media (max-width: 650px) {
  .departments-container-v3 {
    width: 95%;
  }
  .dept-card-v3 {
    flex: 0 0 100%; /* 1 card on mobile */
  }
  .dept-side-btn {
    display: none; /* Hide side buttons on small mobile */
  }
}

/* ==========================================================================
   OUR VISION SECTION (EXACT REFERENCE REPLICA DESIGN)
   ========================================================================== */
.vision-section {
  padding: 6rem 0; /* Increased height & vertical padding */
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.vision-container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vision-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.vision-text-col {
  text-align: left;
}

.vision-sub-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.825rem;
  font-weight: 800;
  color: #1865c9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-nav, sans-serif);
}

.vision-line {
  width: 28px;
  height: 2px;
  background: #1865c9;
  border-radius: 1px;
}

.vision-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #061e3d;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.6px;
  font-family: var(--font-nav, sans-serif);
}

.vision-title .highlight-blue {
  color: #1865c9;
}

.vision-subtitle-desc {
  font-size: 1.025rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-nav, sans-serif);
  max-width: 660px;
}

/* Side-by-side Vision & Mission Columns with vertical divider line */
.vision-mission-cols-wrap {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 2.25rem;
  max-width: 660px;
}

.vm-col {
  flex: 1;
}

.vm-col-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #061e3d;
  margin: 0 0 0.6rem 0;
  font-family: var(--font-nav, sans-serif);
}

.vm-col-text {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.62;
  margin: 0;
  font-family: var(--font-nav, sans-serif);
}

.vm-col-text strong {
  color: #0f172a;
  font-weight: 700;
}

.vm-divider-line {
  width: 1px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* Action Buttons Row */
.vision-actions-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.btn-vision-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #1865c9;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-nav, sans-serif);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(24, 101, 201, 0.25);
}

.btn-vision-primary:hover {
  background: #0b3b74;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(11, 59, 116, 0.35);
}

.btn-vision-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #1865c9;
  border: 1.5px solid #1865c9;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-nav, sans-serif);
  transition: all 0.25s ease;
}

.btn-vision-secondary:hover {
  background: #1865c9;
  color: #ffffff;
}

.btn-vision-primary svg, .btn-vision-secondary svg {
  transition: transform 0.2s ease;
}

.btn-vision-primary:hover svg, .btn-vision-secondary:hover svg {
  transform: translateX(4px);
}

/* Right 3-Image Gallery Layout */
.vision-gallery-col {
  width: 100%;
}

.vision-gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.v-gal-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #f1f5f9;
}

.v-gal-card.gal-tall {
  height: 540px; /* Increased tall image height */
}

.v-gal-stacked {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v-gal-card.gal-stacked-top, .v-gal-card.gal-stacked-bottom {
  height: 262px; /* Increased stacked images height */
}

.v-gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

@media (max-width: 1100px) {
  .vision-top-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .v-gal-card.gal-tall {
    height: 380px;
  }
  .v-gal-card.gal-stacked-top, .v-gal-card.gal-stacked-bottom {
    height: 182px;
  }
}

@media (max-width: 600px) {
  .vision-title {
    font-size: 2.1rem;
  }
  .vision-mission-cols-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vm-divider-line {
    width: 100%;
    height: 1px;
  }
  .vision-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-vision-primary, .btn-vision-secondary {
    justify-content: center;
  }
  .vision-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FULL-WIDTH VISION BANNER IMAGE SECTION (SPACIOUS VERTICAL GAPS)
   ========================================================================== */
.vision-banner-full-width {
  width: 100%;
  padding: 3.5rem 0; /* Generous 3.5rem (56px) vertical gap above and below */
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f3fe 50%, #f4f9ff 100%);
  display: block;
}

.full-width-banner-img {
  width: 98%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(11, 59, 116, 0.12);
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   FOUNDER'S MESSAGE SECTION (IMAGE LEFT, CONTENT RIGHT - ENLARGED)
   ========================================================================== */
.founder-section {
  padding: 4.5rem 0 0 0; /* 0 bottom padding so doctor sits on bottom edge */
  position: relative;
  overflow: hidden;
  background-image: url('https://files.netnoted.com/storage/public/1788934727_6aa0fa4754891.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #cbd5e1;
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 249, 255, 0.85) 0%, rgba(232, 243, 254, 0.93) 45%, rgba(240, 247, 255, 0.97) 100%);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.founder-container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* Image left, content right */
  gap: 3.5rem;
  align-items: flex-end; /* Doctor cutout sits on bottom edge */
}

/* Left Doctor Cutout Column */
.founder-img-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  line-height: 0;
}

.founder-doctor-cutout {
  height: 560px; /* Increased cutout size */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(11, 59, 116, 0.18));
}

/* Right Content Side (Enlarged Text) */
.founder-content-col {
  text-align: left;
  padding-bottom: 4.5rem; /* Vertically balances larger text */
  max-width: 720px;
}

.founder-quote-title {
  font-size: 3.1rem; /* Increased font size */
  font-weight: 800;
  color: #0b3b74;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  letter-spacing: -0.8px;
  font-family: var(--font-nav, sans-serif);
}

.founder-desc-text {
  font-size: 1.18rem; /* Increased font size */
  color: #334155;
  line-height: 1.72;
  margin-bottom: 2.6rem;
  font-family: var(--font-nav, sans-serif);
  max-width: 680px;
}

.founder-signoff-box {
  margin-top: 1rem;
  border-left: 4px solid #1865c9;
  padding-left: 1.25rem;
}

.signoff-salutation {
  font-size: 1.05rem; /* Increased font size */
  color: #475569;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-nav, sans-serif);
}

.founder-name {
  font-size: 2.1rem; /* Increased font size */
  font-weight: 800;
  color: #1865c9;
  margin: 0 0 0.2rem 0;
  font-family: var(--font-nav, sans-serif);
}

.founder-designation {
  font-size: 1.05rem; /* Increased font size */
  color: #64748b;
  font-weight: 600;
  display: block;
  font-family: var(--font-nav, sans-serif);
}

@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-content-col {
    padding-bottom: 2rem;
  }
  .founder-quote-title {
    font-size: 2.4rem;
  }
  .founder-doctor-cutout {
    height: 440px;
  }
}

/* ==========================================================================
   Hospital Location & Directions Section Styling
   ========================================================================== */
.location-section {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 5rem 0;
}

.location-section .container {
  max-width: 1520px;
  width: 96%;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.location-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b3b74;
  margin: 0.75rem 0 1rem 0;
  letter-spacing: -0.3px;
}

.location-desc-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.location-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  margin-bottom: 2.25rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.location-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f0f7ff;
  border: 1px solid #cce3fe;
  color: #1865c9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-item-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b3b74;
  margin-bottom: 0.25rem;
}

.location-item-text p {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.location-cta-group {
  margin-top: 0.5rem;
}

.location-map-card {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(11, 59, 116, 0.08);
  background-color: #f1f5f9;
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-map-card {
    height: 360px;
  }
}

/* ==========================================================================
   Modern Clean Hospital Footer Styling
   ========================================================================== */
/* ==========================================================================
   Modern Clean Hospital Footer Styling (Rich Blue & Large Fonts)
   ========================================================================== */
.site-footer {
  background-color: #082952;
  color: #e2e8f0;
  font-family: var(--font-nav, 'Inter', sans-serif);
}

.site-footer .container {
  max-width: 1520px;
  width: 96%;
}

.footer-helpline-bar {
  background: linear-gradient(90deg, #0b3b74, #041c3a);
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.helpline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.helpline-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.helpline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.helpline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.helpline-subtitle {
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 400;
}

.helpline-numbers {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.emergency-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.footer-main {
  padding: 4.5rem 0 3.5rem 0;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
}

.footer-logo-card {
  background: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  margin-bottom: 1.35rem;
}

.footer-brand-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 0;
}

.footer-brand-name {
  font-size: 1.45rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.footer-brand-tagline {
  font-size: 0.95rem;
  color: #60a5fa;
  font-weight: 500;
  display: block;
  margin-bottom: 1.1rem;
}

.footer-mission-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 1.65rem;
  max-width: 400px;
}

.footer-social-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-label-v2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.social-links-row {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: #1865c9;
  color: #ffffff;
  border-color: #1865c9;
  transform: translateY(-2px);
}

.footer-title-v2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

.footer-menu-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-menu-v2 a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-menu-v2 a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 400;
}

.contact-item-v2 svg {
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item-v2 a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item-v2 a:hover {
  color: #60a5fa;
}

.footer-bottom-v2 {
  background-color: #041833;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 400;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-v2 strong {
  color: #ffffff;
  font-weight: 500;
}

.bottom-links-v2 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.bottom-links-v2 a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bottom-links-v2 a:hover {
  color: #ffffff;
}

.credit-link-v2 {
  color: #60a5fa !important;
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .helpline-inner, .footer-bottom-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}



