/* ==========================================================================
   Dr. S. A. Narayana Prasad - Redesigned Premium Profile Section CSS
   ========================================================================== */

:root {
  --dr-primary: #0074b9;
  --dr-primary-dark: #00568a;
  --dr-accent: #10b981;
  --dr-accent-glow: rgba(16, 185, 129, 0.2);
  --dr-navy: #0b1736;
  --dr-slate: #334155;
  --dr-light-bg: #f8fafc;
  --dr-card-bg: #ffffff;
  --dr-border: #e2e8f0;
  --dr-radius: 20px;
  --dr-shadow-sm: 0 4px 20px rgba(11, 23, 54, 0.04);
  --dr-shadow-lg: 0 24px 48px -12px rgba(11, 23, 54, 0.12);
}

/* Hero Spotlight Section */
.dr-hero-spotlight {
  position: relative;
  background: linear-gradient(135deg, #06152d 0%, #0b2545 45%, #0074b9 100%);
  padding: 60px 0 70px;
  overflow: hidden;
  color: #ffffff;
}

.dr-hero-spotlight::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.dr-hero-spotlight::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 116, 185, 0.35) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.dr-hero-banner-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .dr-hero-banner-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .dr-hero-portrait-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .dr-hero-main-details {
    align-items: center;
  }

  .dr-hero-degrees,
  .dr-hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .dr-hero-spotlight {
    padding: 40px 0 50px;
  }

  .dr-hero-banner-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .dr-hero-degrees {
    display: flex;
    flex-direction: column;
  }

  .dr-hero-portrait-frame {
    max-width: 260px;
  }
  .dr-hero-quick-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dr-hero-name-heading {
    font-size: 26px;
  }

  .dr-hero-lead-text {
    font-size: 14.5px;
  }

  .dr-hero-quick-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .dr-hero-cta-group {
    flex-direction: column;
  }

  .dr-hero-btn-appoint,
  .dr-hero-btn-phone {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .dr-hero-portrait-frame {
    max-width: 200px;
  }

  .dr-hero-exp-pill {
    padding: 6px 10px;
    gap: 6px;
  }

  .dr-hero-exp-pill .num {
    font-size: 18px;
  }

  .dr-hero-exp-pill .txt {
    font-size: 9px;
  }

  .dr-hero-name-heading {
    font-size: 22px;
  }
}

.dr-hero-portrait-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #0b1736;
  aspect-ratio: 4 / 5;
}

.dr-hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dr-hero-banner-card:hover .dr-hero-portrait-frame img {
  transform: scale(1.04);
}

.dr-hero-exp-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dr-hero-exp-pill .num {
  font-size: 22px;
  font-weight: 800;
  color: #0074b9;
  line-height: 1;
}

.dr-hero-exp-pill .txt {
  font-size: 11px;
  font-weight: 700;
  color: #0b1736;
  text-transform: uppercase;
  line-height: 1.2;
}

.dr-hero-main-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dr-hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50px;
  color: #34d399;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.dr-hero-name-heading {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.dr-hero-degrees {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.dr-hero-deg-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
}

.dr-hero-lead-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.dr-hero-quick-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 6px 0;
}

.dr-hero-metric-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.dr-hero-metric-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
}

.dr-hero-metric-box .v {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.dr-hero-metric-box .l {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dr-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.dr-hero-btn-appoint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #2cb624 0%, #2cb624 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  transition: all 0.3s ease;
}

.dr-hero-btn-appoint:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45);
  color: #ffffff !important;
}

.dr-hero-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dr-hero-btn-phone:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.dr-hero-section {
  position: relative;
  background: #f8fafc;
  padding: 70px 0 90px;
  overflow: hidden;
}

.dr-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--dr-border),
    transparent
  );
}

/* Shell Layout */
.dr-v2-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 28px;
  /* align-items: start; */
}

/* Left Card Sidebar */
.dr-v2-sidebar {
  position: sticky;
  top: 110px;
}

.dr-v2-card {
  background: var(--dr-card-bg);
  border: 1px solid var(--dr-border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--dr-shadow-lg);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease;
}

.dr-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -16px rgba(11, 23, 54, 0.16);
}

.dr-v2-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: #0f172a;
}

.dr-v2-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dr-v2-card:hover .dr-v2-image-container img {
  transform: scale(1.03);
}

/* Floating Badges */
.dr-v2-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 23, 54, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dr-v2-badge-top i {
  color: var(--dr-accent);
}

.dr-v2-badge-experience {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(11, 23, 54, 0.15);
}

.dr-v2-badge-experience .number {
  font-size: 24px;
  font-weight: 800;
  color: var(--dr-primary);
  line-height: 1;
}

.dr-v2-badge-experience .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dr-navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Quick Stats Bar */
.dr-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: var(--dr-light-bg);
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.dr-v2-stat-item .val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--dr-navy);
}

.dr-v2-stat-item .lbl {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* Action Buttons */
.dr-v2-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dr-v2-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(
    135deg,
    var(--dr-primary) 0%,
    var(--dr-primary-dark) 100%
  );
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 116, 185, 0.25);
  transition: all 0.3s ease;
}

.dr-v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 116, 185, 0.35);
  color: #ffffff !important;
}

.dr-v2-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid var(--dr-border);
  color: var(--dr-navy) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dr-v2-btn-secondary:hover {
  background: var(--dr-light-bg);
  border-color: #cbd5e1;
  color: var(--dr-primary) !important;
}

/* Right Content Main Area */
.dr-v2-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dr-v2-content-full {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header Info Block */
.dr-v2-header-block {
  border-bottom: 1px solid var(--dr-border);
}

.dr-v2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 116, 185, 0.08);
  border: 1px solid rgba(0, 116, 185, 0.18);
  border-radius: 50px;
  color: var(--dr-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dr-v2-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dr-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.dr-v2-qual-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  vertical-align: middle;
  margin-left: 10px;
  letter-spacing: 0.5px;
}

.dr-v2-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}

.dr-v2-subtitle span.highlight {
  color: var(--dr-primary);
}

.dr-v2-subtitle span.dot {
  width: 5px;
  height: 5px;
  background: #cbd5e1;
  border-radius: 50%;
}

/* Feature Grid / Bento Layout */
.dr-v2-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dr-v2-bento-card {
  background: #ffffff;
  border: 1px solid var(--dr-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--dr-shadow-sm);
  transition: all 0.3s ease;
}

.dr-v2-bento-card:hover {
  border-color: rgba(0, 116, 185, 0.3);
  box-shadow: var(--dr-shadow-lg);
  transform: translateY(-2px);
}

.dr-v2-bento-card.full-width {
  grid-column: span 2;
}

.dr-v2-bento-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.dr-v2-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 116, 185, 0.08);
  color: var(--dr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.dr-v2-icon-box.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--dr-accent);
}

.dr-v2-bento-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dr-navy);
  margin: 0;
}

/* Academic List styled inside bento */
.dr-v2-edu-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dr-v2-edu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--dr-light-bg);
  border-radius: 14px;
  border-left: 4px solid var(--dr-primary);
}

.dr-v2-edu-item:nth-child(2) {
  border-left-color: var(--dr-accent);
}

.dr-v2-edu-item:nth-child(3) {
  border-left-color: #f59e0b;
}

.dr-v2-edu-item .deg {
  font-size: 15px;
  font-weight: 700;
  color: var(--dr-navy);
  margin-bottom: 2px;
}

.dr-v2-edu-item .inst {
  font-size: 13px;
  color: #64748b;
}

/* Body Text Block */
.dr-v2-prose {
  font-size: 16px;
  line-height: 1.85;
  color: var(--dr-slate);
}

.dr-v2-prose p {
  margin-bottom: 18px;
}

.dr-v2-prose strong {
  color: var(--dr-navy);
  font-weight: 700;
}

/* Modern Quote Banner */
.dr-v2-quote-card {
  position: relative;
  background: linear-gradient(135deg, #0b1736 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 36px 40px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 23, 54, 0.2);
}

.dr-v2-quote-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 180px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.dr-v2-quote-card p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.dr-v2-quote-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dr-v2-quote-author .bar {
  width: 32px;
  height: 3px;
  background: var(--dr-accent);
  border-radius: 2px;
}

.dr-v2-quote-author .name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dr-v2-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dr-v2-sidebar {
    position: static;
    max-width: 440px;
    margin: 0 auto;
  }
  .dr-v2-bento-grid {
    grid-template-columns: 1fr;
  }
  .dr-v2-bento-card.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   V3 Redesigned Doctor Profile Section CSS
   ========================================================================== */

.dr-v3-profile-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0 100px;
}

.dr-v3-section-title-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.dr-v3-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0, 116, 185, 0.1);
  border: 1px solid rgba(0, 116, 185, 0.2);
  border-radius: 50px;
  color: var(--dr-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dr-v3-main-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dr-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.dr-v3-subtitle {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
}

/* Feature Pillars Grid */
.dr-v3-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dr-v3-pillar-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 26px;
  border: 1px solid var(--dr-border);
  box-shadow: 0 10px 30px rgba(11, 23, 54, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dr-v3-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--dr-primary) 0%,
    var(--dr-accent) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dr-v3-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(11, 23, 54, 0.1);
  border-color: rgba(0, 116, 185, 0.3);
}

.dr-v3-pillar-card:hover::before {
  opacity: 1;
}

.dr-v3-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 116, 185, 0.1) 0%,
    rgba(0, 116, 185, 0.03) 100%
  );
  color: var(--dr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.dr-v3-pillar-card:nth-child(2) .dr-v3-pillar-icon {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(16, 185, 129, 0.03) 100%
  );
  color: var(--dr-accent);
}

.dr-v3-pillar-card:nth-child(3) .dr-v3-pillar-icon {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(245, 158, 11, 0.03) 100%
  );
  color: #f59e0b;
}

.dr-v3-pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dr-navy);
  margin-bottom: 10px;
}

.dr-v3-pillar-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Academic Showcase Grid */
.dr-v3-academic-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--dr-border);
  box-shadow: 0 12px 36px rgba(11, 23, 54, 0.05);
  margin-bottom: 40px;
}

.dr-v3-academic-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.dr-v3-academic-header i {
  font-size: 26px;
  color: var(--dr-primary);
}

.dr-v3-academic-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dr-navy);
  margin: 0;
}

.dr-v3-credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dr-v3-cred-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.dr-v3-cred-card:hover {
  background: #ffffff;
  border-color: var(--dr-primary);
  box-shadow: 0 10px 24px rgba(0, 116, 185, 0.1);
}

.dr-v3-cred-degree {
  font-size: 16px;
  font-weight: 800;
  color: var(--dr-navy);
  margin-bottom: 6px;
}

.dr-v3-cred-full {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dr-primary);
  margin-bottom: 8px;
}

.dr-v3-cred-inst {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Biography & Quote Showcase */
.dr-v3-biography-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  border: 1px solid var(--dr-border);
  box-shadow: 0 16px 40px rgba(11, 23, 54, 0.06);
  margin-bottom: 40px;
}

.dr-v3-bio-header {
  margin-bottom: 24px;
}

.dr-v3-bio-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dr-navy);
  margin-bottom: 6px;
}

.dr-v3-bio-body {
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
}

.dr-v3-bio-body p {
  margin-bottom: 18px;
}

.dr-v3-bio-body strong {
  color: var(--dr-navy);
}

/* Quote Spotlight Card */
.dr-v3-quote-banner {
  position: relative;
  background: linear-gradient(135deg, #091e42 0%, #0b2545 60%, #0074b9 100%);
  /* border-radius: 24px; */
  padding: 40px 44px;
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(9, 30, 66, 0.25);
  overflow: hidden;
  margin-bottom: 30px;
}

.dr-v3-quote-banner::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.dr-v3-quote-text {
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: #f8fafc;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.dr-v3-quote-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.dr-v3-quote-author-wrap .line {
  width: 40px;
  height: 3px;
  background: #34d399;
  border-radius: 2px;
}

.dr-v3-quote-author-wrap .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.dr-v3-closing-note {
  text-align: center;
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Rules for V3 */
@media (max-width: 991px) {
  .dr-v3-pillars-grid {
    grid-template-columns: 1fr;
  }
  .dr-v3-credentials-grid {
    grid-template-columns: 1fr;
  }
  .dr-v3-main-title {
    font-size: 30px;
  }
  .dr-v3-quote-banner {
    padding: 30px 24px;
  }
  .dr-v3-quote-text {
    font-size: 16.5px;
  }
}

/* Redesigned About Section Utilities */
.hover-card-up {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-card-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(35, 60, 153, 0.12) !important;
  border-color: rgba(35, 60, 153, 0.3) !important;
}

.transition-scale {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-hero-img-card:hover .transition-scale {
  transform: scale(1.04);
}

.pulse-dot {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
