/* Custom CSS stylesheet for Dr. D.V.L. Narayana Rao */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --primary-color: #062f37;
  /* Deep Teal: hsl(184, 80%, 12%) */
  --primary-rgb: 6, 47, 55;
  --secondary-color: #ebf3f4;
  /* Sage/Teal-Gray Light: hsl(184, 20%, 92%) */
  --secondary-rgb: 235, 243, 244;
  --accent-color: #c99b44;
  /* Warm Gold/Ochre: hsl(43, 50%, 55%) */
  --accent-rgb: 201, 155, 68;

  --bg-color: #f2f6f7;
  /* Muted background: hsl(184, 15%, 96%) */
  --fg-color: #2c3a3e;
  /* Dark slate text: hsl(215, 30%, 20%) */
  --card-bg: #ffffff;
  --muted-color: #e3ecee;
  /* hsl(184, 15%, 90%) */
  --muted-fg: #617377;
  /* hsl(215, 12%, 45%) */

  --border-color: #deebec;
  /* hsl(184, 15%, 88%) */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(6, 47, 55, 0.08), 0 10px 10px -5px rgba(6, 47, 55, 0.04);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--fg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted-fg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Components */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(6, 47, 55, 0.15);
}

.btn-primary:hover {
  background-color: rgb(12, 63, 73);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(6, 47, 55, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(6, 47, 55, 0.2);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: rgba(6, 47, 55, 0.05);
  border-color: var(--primary-color);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

header .logo-container {
  display: flex;
  flex-direction: column;
}

header .logo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
}

header .logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  header .logo-title {
    font-size: 1.5rem;
  }

  header .logo-subtitle {
    font-size: 0.75rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(44, 58, 62, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-in-out;
  max-height: 0;
}

.mobile-nav.active {
  display: block;
  max-height: 400px;
}

.mobile-nav-container {
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg-color);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(222, 235, 236, 0.5);
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

/* Sections General */
section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: var(--accent-color);
}

.section-center-tag::before {
  display: none;
  /* Hide for centered titles */
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(235, 243, 244, 0.5) 100%);
  overflow: hidden;
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.hero-text {
  max-width: 580px;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title span.italic-gold {
  color: var(--accent-color);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stat-icon {
  background-color: rgba(201, 155, 68, 0.1);
  color: var(--accent-color);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
}

.hero-image-wrapper {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    display: block;
  }
}

.hero-image-container {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  max-width: 420px;
  margin-left: auto;
  margin-right: -1rem;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-img:hover {
  transform: scale(1.05);
}

/* Background blurs */
.hero-glow-1 {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(201, 155, 68, 0.15);
  border-radius: var(--radius-full);
  filter: blur(48px);
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(6, 47, 55, 0.12);
  border-radius: var(--radius-full);
  filter: blur(48px);
  z-index: 1;
}

/* Floating Award Badge */
.hero-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background-color: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  max-width: 190px;
  z-index: 20;
  transition: transform var(--transition-normal);
}

.hero-floating-badge:hover {
  transform: translateY(-5px);
}

.hero-badge-year {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.2;
  margin-top: 0.25rem;
}

/* About Section & Milestones */
.milestones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.milestone-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f6fbfc 100%);
  padding: 2.25rem 2rem 2rem;
  border-radius: 18px;
  border: 1px solid rgba(6, 47, 55, 0.08);
  box-shadow:
    0 2px 8px rgba(6, 47, 55, 0.06),
    0 8px 28px rgba(6, 47, 55, 0.08);
  transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  width: 100%;
}

/* Premium top accent bar */
.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
  background-size: 200% 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease, background-position 0.6s ease;
}

.milestone-card:hover::before {
  opacity: 1;
  background-position: right center;
}

@media (min-width: 768px) {
  .milestone-card {
    width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .milestone-card {
    width: calc(33.333% - 1.34rem);
  }
}

.milestone-card:hover {
  border-color: rgba(201, 155, 68, 0.3);
  box-shadow:
    0 4px 16px rgba(6, 47, 55, 0.1),
    0 20px 48px rgba(6, 47, 55, 0.14),
    0 0 0 1px rgba(201, 155, 68, 0.18);
  transform: translateY(-7px);
}

.milestone-icon-bg {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--primary-color);
  opacity: 0.06;
  transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.milestone-card:hover .milestone-icon-bg {
  opacity: 0.13;
  transform: scale(1.15) rotate(-5deg);
  color: var(--accent-color);
}

.milestone-tag {
  background: linear-gradient(135deg, rgba(6, 47, 55, 0.08) 0%, rgba(6, 47, 55, 0.04) 100%);
  color: var(--primary-color);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(6, 47, 55, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.milestone-card:hover .milestone-tag {
  background: linear-gradient(135deg, rgba(201, 155, 68, 0.15) 0%, rgba(201, 155, 68, 0.07) 100%);
  border-color: rgba(201, 155, 68, 0.35);
  color: #a0782a;
}

.milestone-year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-color);
  margin-bottom: 0.45rem;
  opacity: 0.85;
}

.milestone-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.85rem;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.milestone-card:hover .milestone-title {
  color: #a0782a;
}

/* Staggered text reveal inside milestone cards */
.milestone-card .milestone-tag,
.milestone-card .milestone-year,
.milestone-card .milestone-title,
.milestone-card .milestone-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.milestone-card.reveal-active .milestone-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 15s) + 0.30s);
}

.milestone-card.reveal-active .milestone-year {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 0s) + 0.28s);
}

.milestone-card.reveal-active .milestone-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 0s) + 0.4s);
}

.milestone-card.reveal-active .milestone-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 0s) + 0.52s);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.stats-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-repeat: repeat;
  background-size: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

/* Expertise Section */
.expertise-section {
  background-color: var(--secondary-color);
}

.expertise-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════
   Advanced Surgical Solutions — Premium Cards
   Roaming glow border via conic-gradient
══════════════════════════════════════════ */

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes glow-spin {
  to {
    --glow-angle: 360deg;
  }
}

.expertise-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f4fafb 100%);
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 47, 55, 0.09);
  box-shadow:
    0 2px 8px rgba(6, 47, 55, 0.05),
    0 8px 28px rgba(13, 165, 68, 0.07);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  isolation: isolate;
}

/* Roaming glow border — hidden by default */
.expertise-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  padding: 4px;
  background: conic-gradient(from var(--glow-angle),
      transparent 0%,
      transparent 68%,
      rgba(136, 141, 139, 0.3) 74%,
      rgb(5, 131, 100) 80%,
      rgba(160, 162, 161, 0.3) 86%,
      transparent 92%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  filter: blur(1.5px);
}

.expertise-card:hover::before {
  opacity: 1;
  animation: glow-spin 2.2s linear infinite;
}

/* Subtle radial shimmer on hover */
.expertise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%,
      rgba(201, 155, 68, 0.04) 0%,
      transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card>* {
  position: relative;
  z-index: 1;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 16px rgba(6, 47, 55, 0.1),
    0 20px 48px rgba(6, 47, 55, 0.13);
}

.expertise-icon-container {
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(6, 47, 55, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.4rem;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.expertise-card:hover .expertise-icon-container {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08);
}

.expertise-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.expertise-card p {
  color: var(--muted-fg);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Staggered text reveal inside cards */
.expertise-card .expertise-card-title,
.expertise-card p {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.expertise-card.reveal-active .expertise-card-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 0s) + 0.25s);
}

.expertise-card.reveal-active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--card-delay, 0s) + 0.4s);
}

.expertise-card.reveal-active:hover {
  transform: translateY(-6px) !important;
}

.milestone-card.reveal-active:hover {
  transform: translateY(-5px) !important;
}

/* Experience Section */
.experience-section {
  background-color: rgba(235, 243, 244, 0.4);
}

.experience-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(222, 235, 236, 0.5);
  transition: box-shadow var(--transition-normal);
}

.experience-card:hover {
  box-shadow: var(--shadow-md);
}

.experience-icon-wrapper {
  padding: 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.experience-icon-wrapper.academic {
  background-color: rgba(6, 47, 55, 0.1);
  color: var(--primary-color);
}

.experience-icon-wrapper.current {
  background-color: rgba(201, 155, 68, 0.1);
  color: var(--accent-color);
}

.experience-icon-wrapper.experience {
  background-color: #f1f5f9;
  color: #475569;
}

.experience-info-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

.experience-info-role {
  font-size: 0.85rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.experience-info-period {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Staggered text reveal inside experience cards */
.experience-card .experience-info-title,
.experience-card .experience-info-role,
.experience-card .experience-info-period {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.experience-card.reveal-active .experience-info-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.experience-card.reveal-active .experience-info-role {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.experience-card.reveal-active .experience-info-period {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Awards & Feature Section */
.awards-section {
  background: linear-gradient(to bottom, #ffffff 0%, rgba(235, 243, 244, 0.5) 100%);
}

.awards-banner {
  background-color: var(--primary-color);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}

.awards-banner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(201, 155, 68, 0.2);
  border-radius: var(--radius-full);
  filter: blur(48px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.awards-grid {
  display: grid;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.awards-content {
  padding: 2.5rem;
  color: #ffffff;
  z-index: 10;
}

@media (min-width: 768px) {
  .awards-content {
    padding: 4.5rem;
  }
}

.awards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(201, 155, 68, 0.25);
  color: var(--accent-color);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.awards-title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .awards-title {
    font-size: 2.75rem;
  }
}

.awards-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.awards-quote-block {
  position: relative;
  /* Add positioning context for ::before animated border */
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.awards-quote-icon {
  color: var(--accent-color);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.awards-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
}

.awards-quote-author {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.awards-visual {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .awards-visual {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.awards-trophy-badge {
  text-align: center;
}

.awards-trophy-circle {
  width: 6rem;
  height: 6rem;
  background-color: var(--accent-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(201, 155, 68, 0.25);
  animation: pulse-ring 2.5s infinite;
  color: var(--primary-color);
}

.awards-visual h3 {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.awards-visual p {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(201, 155, 68, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(201, 155, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(201, 155, 68, 0);
  }
}

/* Media Outreach Section */
.media-section {
  background-color: #ffffff;
}

.media-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-video-card {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.featured-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 10;
  transition: all var(--transition-normal);
}

.featured-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-video-card:hover .featured-video-img {
  transform: scale(1.05);
}

.featured-video-play-btn {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-ring-outer {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.featured-video-card:hover .play-ring-outer {
  transform: scale(1.1);
}

.play-ring-inner {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  padding-left: 0.25rem;
  /* center play arrow */
}

.featured-video-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  color: #ffffff;
}

.featured-video-badge {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.featured-video-title {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.featured-video-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.videos-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.video-item-row {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-normal);
  cursor: pointer;
}

.video-item-row:hover {
  background-color: var(--secondary-color);
}

.video-thumb-container {
  position: relative;
  width: 10rem;
  aspect-ratio: 16/9;
  background-color: #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-normal);
}

.video-item-row:hover .video-thumb-overlay {
  background-color: rgba(0, 0, 0, 0.10);
}

.video-thumb-play {
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  padding-left: 0.1rem;
}

.video-info-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.video-item-row:hover .video-info-title {
  color: var(--accent-color);
}

.video-info-desc {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--secondary-color);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-detail-icon {
  background-color: rgba(6, 47, 55, 0.08);
  color: var(--primary-color);
  padding: 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-detail-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Request Appointment Form Card */
.form-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-group-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-element {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-color);
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  background-color: #ffffff;
  transition: all var(--transition-fast);
  color: var(--fg-color);
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 155, 68, 0.12);
}

.form-input::placeholder {
  color: #a0aec0;
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.form-btn {
  margin-top: 0.5rem;
  width: 100%;
}

.form-notice {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.5rem;
}

/* Modal Popup styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 47, 55, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--muted-fg);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: var(--primary-color);
}

.modal-body {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000000;
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer disclaimer bottom */
.footer-bottom {
  color: var(--muted-fg);
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Scroll reveal system (Framer motion replacements) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal-active {
  opacity: 1;
  transform: translate(0) !important;
}

.reveal-word {
  display: inline-block;
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
  --card-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
  --card-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
  --card-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
  --card-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
  --card-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
  --card-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
  --card-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
  --card-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
  --card-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
  --card-delay: 1s;
}

/* Custom Success Pop Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(150%);
  transition: transform var(--transition-normal);
}

.toast-notification.active {
  transform: translateY(0);
}

/* SumanTV Doctor Award section custom transitions */

/* Green card popup transition (custom scale from small to large) */
.awards-banner.reveal-zoom {
  opacity: 0;
  transform: scale(0.6) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}

.awards-banner.reveal-zoom.reveal-active {
  opacity: 1;
  transform: scale(1) translateY(0) !important;
}

/* Left content badge & quote icon */
.awards-badge,
.awards-quote-icon {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.awards-banner.reveal-active .awards-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.awards-banner.reveal-active .awards-quote-icon {
  opacity: 0.5;
  transform: translateY(0);
  transition-delay: 1.5s;
  /* Align with the start of the quote text reveal */
}

/* Quote block left vertical line animations */
.awards-quote-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 2.1s;
  /* Start drawing exactly when the quote text starts appearing */
}

.awards-banner.reveal-active .awards-quote-block::before {
  height: 100%;
}

/* Left content word-by-word reveal */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-word.reveal-active,
.awards-banner.reveal-active .reveal-word {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Custom animated divider */
.awards-visual {
  position: relative;
  border-top: none !important;
  /* Override standard border */
}

@media (min-width: 768px) {
  .awards-visual {
    border-left: none !important;
    /* Override standard border */
  }
}

.awards-visual::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 2.0s;
  /* Draw dividing line after left text description has slid in */
  z-index: 5;
}

/* Mobile: horizontal line on top of awards-visual */
@media (max-width: 767px) {
  .awards-visual::before {
    top: 0;
    left: 10%;
    width: 0;
    height: 1px;
  }

  .awards-banner.reveal-active .awards-visual::before {
    width: 80%;
  }
}

/* Desktop: vertical line on left of awards-visual */
@media (min-width: 768px) {
  .awards-visual::before {
    top: 10%;
    bottom: 10%;
    left: 0;
    width: 1px;
    height: 0;
  }

  .awards-banner.reveal-active .awards-visual::before {
    height: 80%;
  }
}

/* Right content items reveal */
.awards-trophy-circle,
.awards-visual h3,
.awards-visual p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.awards-trophy-circle {
  transform: scale(0.5) translateY(20px);
}

.awards-banner.reveal-active .awards-trophy-circle {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 2.5s;
  /* Start after divider is drawn */
  animation: pulse-ring 2.5s infinite;
  animation-delay: 3.1s;
  /* Start pulse after slide finishes */
}

.awards-banner.reveal-active .awards-visual h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.7s;
}

.awards-banner.reveal-active .awards-visual p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.9s;
}

/* Align left featured video card height with right side column cards on desktop */
@media (min-width: 1024px) {
  .featured-video-card {
    height: 100%;
    aspect-ratio: auto;
  }
}

/* Staggered text reveal inside the featured video card */
.featured-video-card .featured-video-badge,
.featured-video-card .featured-video-title,
.featured-video-card .featured-video-description {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.featured-video-card.reveal-active .featured-video-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  /* Start animating when container is mostly in place */
}

.featured-video-card.reveal-active .featured-video-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.featured-video-card.reveal-active .featured-video-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Staggered text reveal inside the Request Appointment form card */
.form-card .form-title,
.form-card #appointmentForm>* {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.form-card.reveal-active .form-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.form-card.reveal-active #appointmentForm>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.form-card.reveal-active #appointmentForm>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.form-card.reveal-active #appointmentForm>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

.form-card.reveal-active #appointmentForm>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.form-card.reveal-active #appointmentForm>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.25s;
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.footer-col-text {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.footer-col-text p {
  margin-bottom: 0.4rem;
}

.footer-col-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-link {
  font-size: 0.9rem;
  color: var(--muted-fg);
  transition: color var(--transition-fast);
}

.footer-col-link:hover {
  color: var(--accent-color);
}

/* Social links cards style */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.footer-social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 47, 55, 0.15);
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
}

.footer-social-icon.instagram {
  color: #e1306c;
}

.footer-social-icon.youtube {
  color: #ff0000;
}

/* Site Footer styles (rgb(12, 63, 73) background) */
.site-footer {
  background-color: rgb(12, 63, 73);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-col-title {
  color: #ffffff !important;
}

.site-footer .footer-col-text {
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer .footer-col-link {
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer .footer-col-link:hover {
  color: var(--accent-color) !important;
}

.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer .footer-disclaimer {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Ensure all generic text and strong elements inside the dark footer are visible */
.site-footer p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.site-footer p strong {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
}

.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
}