:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(210, 15%, 15%);
  --primary: hsl(210, 70%, 50%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(150, 40%, 60%);
  --secondary-foreground: hsl(210, 15%, 15%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(210, 15%, 45%);
  --accent: hsl(180, 60%, 85%);
  --accent-foreground: hsl(210, 15%, 15%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --border: hsl(210, 20%, 90%);
  --input: hsl(210, 20%, 90%);
  --ring: hsl(210, 70%, 50%);
  --medical-blue: hsl(210, 70%, 50%);
  --medical-blue-light: hsl(210, 60%, 85%);
  --medical-blue-dark: hsl(210, 80%, 35%);
  --medical-teal: hsl(180, 60%, 55%);
  --medical-green: hsl(150, 40%, 60%);
  --medical-gray: hsl(210, 15%, 95%);
  --text-white: #fff;
  --gradient-hero: linear-gradient(
    135deg,
    var(--medical-blue),
    var(--medical-teal)
  );
  --gradient-card: linear-gradient(
    180deg,
    var(--background),
    var(--medical-gray)
  );
  --shadow-medical: 0 4px 20px -2px hsl(210, 70%, 50%, 0.1);
  --shadow-card: 0 2px 10px -1px hsl(210, 70%, 50%, 0.05);
  --radius: 0.5rem;
  --medical-teal-h: 173;
  --medical-teal-s: 85%;
  --medical-teal-l: 31%;

  --primary-h: 221;
  --primary-s: 83%;
  --primary-l: 58%;
  --shrivas-bg-blue: #005a86;

  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --primary: hsl(210, 85%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(187, 85%, 55%);
  --accent: hsl(187, 85%, 55%);
  --muted-foreground: hsl(215, 15%, 50%);
  --border: hsl(210, 25%, 88%);
  --shadow-card:
    0 4px 6px -1px rgba(30, 86, 133, 0.08),
    0 2px 4px -1px rgba(30, 86, 133, 0.04);
  --shadow-hover:
    0 10px 25px -5px rgba(30, 86, 133, 0.15),
    0 8px 10px -6px rgba(30, 86, 133, 0.08);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol,
    "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header */
}

body {
  background: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: bold;
  margin: 0 0 0.5em 0;
}

ol,
ul,
menu {
  margin: 0;
  padding: 0;
}

.text-white {
  color: var(--text-white);
}
.shrivas-bg-blue {
  background-color: var(--shrivas-bg-blue);
}

.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.text-background {
  color: var(--background);
}
.bg-background {
  background: var(--background);
}
.bg-foreground {
  background: var(--foreground);
}
.bg-light {
  background: var(--medical-gray);
}
.bg-gradient {
  background: var(--gradient-hero);
}
.bg-gradient-card {
  background: var(--gradient-card);
}
.block {
  display: block;
}

/* Flex, Grid, and Layout Utilities */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.col-span-2 {
  grid-column: span 2;
}
.col-span-1 {
  grid-column: span 1;
}

/* Spacing Utilities */
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-6 {
  padding-top: 1.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Border, Radius, and Shadow */
.border {
  border: 1px solid var(--border);
}
.border-b {
  border-bottom: 1px solid var(--border);
}
.border-t {
  border-top: 1px solid var(--border);
}
.border-l-2 {
  border-left: 2px solid var(--primary);
}
.border-background\/20 {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-full {
  border-radius: 9999px;
}
.shadow-medical {
  box-shadow: var(--shadow-medical);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.box-sizing-border-box {
  box-sizing: border-box;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  padding: 0.5em 1.5em;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: hsl(210, 70%, 45%);
}
.btn-outline {
  background: var(--background);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.btn-secondary:hover {
  background: hsl(150, 40%, 55%);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--background);
  color: var(--accent-foreground);
}
.btn-lg {
  font-size: 1.125rem;
  padding: 0.75em 2em;
}
.btn-sm {
  font-size: 0.875rem;
  padding: 0.25em 1em;
}
.w-full {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-4 {
  width: 1rem;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25em 0.75em;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s;
}
.badge-default {
  background: var(--shrivas-bg-blue);
  color: var(--primary-foreground);
}
.badge-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.badge-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

/* Card Styles */
.card,
.about-card,
.doctor-card,
.gallery-card,
.news-card,
.sidebar-card {
  background: var(--card, var(--background));
  color: var(--card-foreground, var(--foreground));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

/* Misc */
.text-xs {
  font-size: 0.75rem;
}
.font-bold {
  font-weight: bold;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.leading-tight {
  line-height: 1.2;
}
.transition-shadow {
  transition: box-shadow 0.2s;
}
.transition-transform {
  transition: transform 0.2s;
}
.transition-opacity {
  transition: opacity 0.2s;
}
.text-sm {
  font-size: 0.875rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.lg\:text-4xl {
  font-size: 2.25rem;
}
.lg\:text-6xl {
  font-size: 3.75rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-full {
  border-radius: 9999px;
}
.object-cover {
  object-fit: cover;
}

/* Icon SVGs (Lucide style, minimal) */
.icon-phone::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="hsl(210, 70%, 50%)" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22 16.92v3a2 2 0 0 1-2.18 2A19.72 19.72 0 0 1 3.09 5.18 2 2 0 0 1 5 3h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.68 2.34a2 2 0 0 1-.45 2.11l-1.27 1.27a16 16 0 0 0 6.29 6.29l1.27-1.27a2 2 0 0 1 2.11-.45c.74.32 1.53.55 2.34.68A2 2 0 0 1 22 16.92z"/></svg>')
    no-repeat center/contain;
}
.icon-heart::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="hsl(210, 70%, 50%)" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>')
    no-repeat center/contain;
}
.icon-award::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="hsl(210, 70%, 50%)" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="8" r="7"/><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"/></svg>')
    no-repeat center/contain;
}
.icon-users::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="hsl(210, 70%, 50%)" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>')
    no-repeat center/contain;
}
.icon-menu::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="18" x2="21" y2="18"/></svg>')
    no-repeat center/contain;
}
.icon-mail::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="4" width="20" height="16" rx="2"/><polyline points="22,6 12,13 2,6"/></svg>')
    no-repeat center/contain;
}
.icon-calendar::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>')
    no-repeat center/contain;
}
.icon-graduation::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4.5"/><polyline points="2 10.5 12 16.5 22 10.5"/><polyline points="2 10.5 12 16.5 22 10.5"/><path d="M6 18v-2a6 6 0 0 1 12 0v2"/></svg>')
    no-repeat center/contain;
}
.icon-stethoscope::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="18" r="3"/><circle cx="18" cy="18" r="3"/><path d="M6 15v-6a6 6 0 0 1 12 0v6"/><path d="M6 21v-3"/><path d="M18 21v-3"/></svg>')
    no-repeat center/contain;
}
.icon-microscope::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 2v20"/><path d="M2 12h20"/></svg>')
    no-repeat center/contain;
}
.icon-shield::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>')
    no-repeat center/contain;
}
.icon-play::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="5 3 19 12 5 21 5 3"/></svg>')
    no-repeat center/contain;
}
.icon-zoom-in::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/><line x1="11" y1="8" x2="11" y2="14"/><line x1="8" y1="11" x2="14" y2="11"/></svg>')
    no-repeat center/contain;
}
.icon-facebook::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.675 0h-21.35C.595 0 0 .592 0 1.326v21.348C0 23.408.595 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.797.143v3.24l-1.918.001c-1.504 0-1.797.715-1.797 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116C23.406 24 24 23.408 24 22.674V1.326C24 .592 23.406 0 22.675 0"/></svg>')
    no-repeat center/contain;
}
.icon-twitter::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M24 4.557a9.83 9.83 0 0 1-2.828.775 4.932 4.932 0 0 0 2.165-2.724c-.951.564-2.005.974-3.127 1.195a4.916 4.916 0 0 0-8.38 4.482C7.691 8.095 4.066 6.13 1.64 3.161c-.542.929-.856 2.01-.857 3.17 0 2.188 1.115 4.117 2.823 5.254a4.904 4.904 0 0 1-2.229-.616c-.054 2.281 1.581 4.415 3.949 4.89a4.936 4.936 0 0 1-2.224.084c.627 1.956 2.444 3.377 4.6 3.417A9.867 9.867 0 0 1 0 21.543a13.94 13.94 0 0 0 7.548 2.209c9.058 0 14.009-7.496 14.009-13.986 0-.213-.005-.425-.014-.636A9.936 9.936 0 0 0 24 4.557z"/></svg>')
    no-repeat center/contain;
}
.icon-linkedin::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.23 0H1.77C.792 0 0 .771 0 1.723v20.549C0 23.229.792 24 1.77 24h20.459C23.208 24 24 23.229 24 22.271V1.723C24 .771 23.208 0 22.23 0zM7.12 20.452H3.56V9h3.56v11.452zM5.34 7.633a2.062 2.062 0 1 1 0-4.124 2.062 2.062 0 0 1 0 4.124zM20.452 20.452h-3.555v-5.569c0-1.328-.025-3.037-1.85-3.037-1.85 0-2.132 1.445-2.132 2.939v5.667h-3.555V9h3.414v1.561h.049c.476-.899 1.637-1.85 3.37-1.85 3.602 0 4.267 2.37 4.267 5.455v6.286z"/></svg>')
    no-repeat center/contain;
}
.icon-map-pin::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="hsl(210, 70%, 50%)" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>')
    no-repeat center/contain;
}
.icon-clock::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>')
    no-repeat center/contain;
}
.icon-arrow-right::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>')
    no-repeat center/contain;
}

.nav-links a {
  text-decoration: none;
}

.text-decoration-none {
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main.grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .doctors-list,
  .gallery-list,
  .about-cards,
  .news-main {
    grid-template-columns: 1fr !important;
  }
  .footer-main.grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-section,
  .about-section,
  .doctors-section,
  .gallery-section,
  .news-section,
  .footer {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .show-md {
    display: inline-flex !important;
  }
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .show-md {
    display: none !important;
  }
  .hidden-md {
    display: flex !important;
  }
  .md\:w-75 {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero-title,
  .section-title {
    font-size: 1.25rem;
  }
  .btn,
  .btn-lg,
  .btn-sm {
    font-size: 0.9rem;
    padding: 0.5em 1em;
  }
  .sm\:w-100 {
    width: 100%;
  }
}

/* Responsive Grid Columns */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .lg\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .lg\:grid-cols-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .lg\:col-span-2 {
    grid-column: span 2;
  }
  .lg\:col-span-1 {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

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

/* Gaps */
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}

/* --- Spacing Utilities --- */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-0 {
  padding-right: 0;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* --- Sizing Utilities --- */
.w-full {
  width: 100%;
}
.w-2 {
  width: 0.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}
.w-36 {
  width: 9rem;
}

.h-36 {
  height: 9rem;
}
.w-24 {
  width: 6rem;
}
.w-28 {
  width: 7rem;
}
.w-32 {
  width: 8rem;
}
.w-48 {
  width: 12rem;
}
.w-64 {
  width: 16rem;
}
.w-96 {
  width: 24rem;
}
.h-full {
  height: 100%;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-24 {
  height: 6rem;
}
.h-28 {
  height: 7rem;
}
.h-32 {
  height: 8rem;
}
.h-48 {
  height: 12rem;
}
.h-64 {
  height: 16rem;
}
.h-96 {
  height: 24rem;
}
.min-h-screen {
  min-height: 100vh;
}

/* --- Positioning & Z-Index --- */
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.top-3 {
  top: 0.75rem;
}
.top-4 {
  top: 1rem;
}
.right-4 {
  right: 1rem;
}
.top-24 {
  top: 6rem;
}
.-bottom-2 {
  bottom: -0.5rem;
}
.-right-2 {
  right: -0.5rem;
}
.left-0 {
  left: 0;
}
.left-3 {
  left: 0.75rem;
}
.right-0 {
  right: 0;
}
.z-50 {
  z-index: 50;
}
.z-100 {
  z-index: 100;
}

/* --- Typography --- */
.font-bold {
  font-weight: bold;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.leading-tight {
  line-height: 1.2;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.lg\:text-4xl {
  font-size: 2.25rem;
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.text-primary {
  color: var(--shrivas-bg-blue);
}
.text-primary-foreground {
  color: var(--primary-foreground);
}
.text-background {
  color: var(--background);
}
.text-background\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-background\/60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-blue-500 {
  color: #3b82f6;
}
.text-blue-700 {
  color: #1d4ed8;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-100 {
  color: #f3f4f6;
}
.underline {
  text-decoration: underline;
}

/* --- Color & Background Utilities --- */
.bg-background {
  background: var(--background);
}
.bg-foreground {
  background: var(--foreground);
}
.bg-white\/90 {
  background-color: #ffffffe6;
}
.bg-primary {
  background: var(--primary);
}
.bg-primary\/10 {
  background: rgba(56, 189, 248, 0.1);
}
.bg-black\/0 {
  background: rgba(0, 0, 0, 0);
}
.bg-black\/20 {
  background: rgba(0, 0, 0, 0.2);
}
.bg-medical-blue-light {
  background: hsl(210, 60%, 85%);
}
.bg-medical-gray\/30 {
  background: rgba(241, 245, 249, 0.3);
}
.bg-gradient-to-br {
  background: linear-gradient(
    135deg,
    var(--medical-blue-light),
    var(--background)
  );
}
.bg-gradient-to-r {
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.1),
    rgba(45, 212, 191, 0.1)
  );
}
.from-primary\/10 {
  background: rgba(56, 189, 248, 0.1);
}
.to-medical-teal\/10 {
  background: rgba(45, 212, 191, 0.1);
}
.--tw-gradient-to-position {
}

/* --- Effects & Transitions --- */
.shadow-card {
  box-shadow: 0 2px 10px -1px rgba(56, 189, 248, 0.05);
}
.shadow-medical {
  box-shadow: 0 4px 20px -2px rgba(56, 189, 248, 0.1);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: 0.375rem;
}
.transition-colors {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-shadow {
  transition: box-shadow 0.2s;
}
.transition-transform {
  transition: transform 0.2s;
}
.transition-opacity {
  transition: opacity 0.2s;
}
.duration-300 {
  transition-duration: 300ms;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.hover\:shadow-card:hover {
  box-shadow: 0 2px 10px -1px rgba(56, 189, 248, 0.15);
}
.hover\:bg-primary\/80:hover {
  background: rgba(56, 189, 248, 0.8);
}
.hover\:text-primary:hover {
  color: var(--primary);
}
.hover\:bg-background\/10:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hover\:text-blue-700:hover {
  color: #1d4ed8;
}
.hover\:underline:hover {
  text-decoration: underline;
}

/* --- Flex & Grid --- */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: 1fr;
}
.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.col-span-1 {
  grid-column: span 1;
}
.col-span-2 {
  grid-column: span 2;
}
.hidden {
  display: none !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.group {
  position: relative;
  padding: 0;
}
.group-hover\:scale-105:hover {
  transform: scale(1.05);
}
.group-hover\:opacity-100:hover {
  opacity: 1;
}
.group-hover\:bg-black\/20:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* --- Misc --- */
.space-x-2 > :not(:last-child) {
  margin-right: 0.5rem;
}
.space-x-3 > :not(:last-child) {
  margin-right: 0.75rem;
}
.space-x-4 > :not(:last-child) {
  margin-right: 1rem;
}
.space-x-6 > :not(:last-child) {
  margin-right: 1.5rem;
}
.space-x-8 > :not(:last-child) {
  margin-right: 2rem;
}
.space-y-1 > :not(:last-child) {
  margin-bottom: 0.25rem;
}
.space-y-3 > :not(:last-child) {
  margin-bottom: 0.75rem;
}
.space-y-4 > :not(:last-child) {
  margin-bottom: 1rem;
}
.space-y-6 > :not(:last-child) {
  margin-bottom: 1.5rem;
}

/* --- Animation Placeholders --- */
.animate-fade-in {
  animation: fadeIn 0.8s ease;
}
.animate-slide-in-right {
  animation: slideInRight 0.8s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Utility for absolute fill --- */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}

/* --- Utility for border color --- */
.border-border {
  border-color: var(--border);
}
.border-primary\/20 {
  border-color: rgba(56, 189, 248, 0.2);
}

/* --- Utility for font color --- */
.text-foreground {
  color: var(--foreground);
}

/* --- Utility for background color --- */
.bg-black\/0 {
  background: rgba(0, 0, 0, 0);
}

/* --- Utility for hover states --- */
.hover\:bg-accent:hover {
  background: var(--accent);
}
.hover\:text-accent-foreground:hover {
  color: var(--accent-foreground);
}

/* --- Utility for pointer events --- */
.pointer-events-none {
  pointer-events: none;
}

/* --- Utility for disabled states --- */
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.icon-calendar,
.icon-clock,
.icon-users,
.icon-map-pin,
.icon-mail,
.icon-heart,
.icon-award,
.icon-graduation,
.icon-facebook,
.icon-twitter,
.icon-linkedin,
.icon-menu,
.icon-play,
.icon-zoom-in,
.icon-arrow-right {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.aspect-ratio {
  aspect-ratio: 1 / 1;
}

.overflow-hidden {
  overflow: hidden;
}

/* Gallery image styles */

/* .gallery-image:hover img {
  transform: scale(1.1);
} */

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allow clicks to pass through to the image */
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}

@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
}

/* Responsive Grid */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

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

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:flex {
    display: flex;
  }
}

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

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Gradient backgrounds */

.gradient-to-right {
  background-image: linear-gradient(
    to right,
    hsla(221, 83%, 58%, 0.1),
    hsla(221, 83%, 58%, 0)
  );
}

.to-medical-teal-10 {
  --gradient-to: hsla(
    var(--medical-teal-h),
    var(--medical-teal-s),
    var(--medical-teal-l),
    0.1
  );
}

.from-primary-10 {
  --gradient-from: hsla(
    var(--primary-h),
    var(--primary-s),
    var(--primary-l),
    0.1
  );
  --gradient-to: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0);
  --gradient-stops: var(--gradient-from), var(--gradient-to);
}

/* Text sizes */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* Max width utilities */
.max-w-2xl {
  max-width: 42rem;
}

/* Spacing utilities */
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}

/* Flex utilities */
.justify-center {
  justify-content: center;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

/* Button size variants */
.btn-lg {
  height: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Play icon */
.icon-play {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="5 3 19 12 5 21 5 3"/></svg>')
    no-repeat center/contain;
}

/* Procedures Section Utilities */
.bg-medical-teal\/10 {
  background: rgba(45, 212, 191, 0.1);
}
.text-medical-teal {
  color: #14b8a6;
}
.bg-accent\/10 {
  background: rgba(244, 63, 94, 0.1);
}
.text-accent {
  color: #f43f5e;
}
.bg-medical-blue\/10 {
  background: rgba(56, 189, 248, 0.1);
}
.text-medical-blue {
  color: #38bdf8;
}
.bg-primary\/5 {
  background: rgba(56, 189, 248, 0.05);
}
.to-medical-teal\/5 {
  --tw-gradient-to: rgba(45, 212, 191, 0.05);
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.font-medium {
  font-weight: 500;
}
.h-full {
  height: 100%;
}
.border-border {
  border-color: var(--border);
}
.hover\:bg-primary\/90:hover {
  background: rgba(56, 189, 248, 0.9);
}
.hover\:bg-muted:hover {
  background: var(--muted);
}
.icon-activity {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>')
    no-repeat center/contain;
}
/* .icon-clock { display: inline-block; width: 2rem; height: 2rem; background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>') no-repeat center/contain; } */
.icon-scissors {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><line x1="20" y1="4" x2="8.12" y2="15.88"/><line x1="14.47" y1="14.48" x2="20" y2="20"/><line x1="8.12" y1="8.12" x2="12" y2="12"/></svg>')
    no-repeat center/contain;
}

/* Lazy Loading Styles */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
  opacity: 1;
}

/* Gallery Image Loading States */

.gallery-image {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 6px;
  /* border-radius: 12px; */
  background: rgba(255, 255, 255, 0.1); /* transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  /* object-fit: cover; */
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

.gallery-image img.lazy {
  opacity: 0;
}

.gallery-image img.loaded {
  opacity: 1;
}

#gallery-grid {
  column-count: 4;
}

/* Responsive columns */
@media (max-width: 1200px) {
  #gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  #gallery-grid {
    column-count: 2;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  #gallery-grid {
    column-count: 1;
  }
}

/* Loading Placeholder */
.loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  z-index: 2;
}

.loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 8px;
}

.loading-text {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #3b82f6;
}

/* Responsive Gallery Grid */
@media (max-width: 640px) {
  .gallery-image {
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-image {
    min-height: 120px;
  }
}

/* Mobile menu styles */
.nav-links-mobile {
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.nav-links-mobile.active {
  max-height: 500px; /* Adjust as needed */
}

.nav-links-mobile a {
  transition: color 0.2s ease;
  padding: 1rem;
  font-size: 20px;
  text-decoration: none;
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.nav-links-mobile a:last-child {
  border-bottom: none;
}

.nav-links-mobile a:hover {
  color: var(--primary);
  background: var(--accent);
}

.cursor-pointer {
  cursor: pointer;
}

.each-post img {
  width: 100%;
}

.circle-bg {
  position: relative;
  width: 420px;
  height: 420px;
  background-color: #92b4c9;
  border-radius: 50%;
}

.circle-bg .ragahvi-header {
  position: absolute;
  width: 320px;
  left: 10%;
  top: 20px;
}

.throat-svg {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  right: 6%;
  top: 10%;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  background-color: white;
  border-radius: 50%;
}

/* floating whatsapp button with circular text around the icon */
.whatsapp-float {
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}

/* svg that draws text around the button's perimeter */
.whatsapp-text-circle {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  /* rotate so the text path starts at the top instead of the right */
  transform: rotate(-90deg);
  pointer-events: none;
}

.whatsapp-text-circle text {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: bold;
  fill: #333;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 2px 6px 19px var(--secondary);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.menu_fixed {
  position: fixed;
  z-index: 9999 !important;
  width: 100%;
  top: 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .circle-bg {
    width: 300px;
    height: 300px;
  }
  .circle-bg .ragahvi-header {
    width: 220px;
    left: 5%;
  }
  .throat-svg {
    right: 4%;
    top: 8%;
  }
}

@media (max-width: 400px) {
  .circle-bg {
    width: 200px;
    height: 200px;
  }
  .circle-bg .ragahvi-header {
    width: 170px;
    left: 5%;
  }
  .throat-svg {
    right: 4%;
    top: 8%;
  }
}

.shorts-section {
  max-width: 100%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shorts-title {
  font-size: 1.8rem;
  margin-bottom: 4px;
  padding-left: 10px;
  color: #111;
}

.shorts-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #000;
}

.shorts-slide.active {
  opacity: 1;
  z-index: 1;
}

.shorts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shorts-nav:hover {
  background: #f0f0f0;
  transform: translateY(-50%) scale(1.05);
}

.shorts-nav.prev {
  left: 0px;
  background-color: var(--primary);
  color: white;
}

.shorts-nav.next {
  right: 0px;
  background-color: var(--primary);
  color: white;
}

@media (max-width: 500px) {
  .shorts-nav.prev {
    left: 5px;
  }
  .shorts-nav.next {
    right: 5px;
  }
  /* .shorts-slider-wrapper {
    width: 90%;
  } */
}

#moveToTopBtn {
  position: fixed;
  bottom: 50px;
  left: 50px;
  z-index: 50;
  background-color: #1e40af72; /* blue-800 */
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: none; /* Hidden by default */
  transition:
    opacity 0.3s,
    transform 0.3s;
}

#moveToTopBtn:hover {
  background-color: #2563eb; /* blue-600 */
  transform: scale(1.1);
}

/* Instagrram */

.insta-slider-section {
  max-width: 100%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta-slider-wrapper {
  position: relative;
  width: 320px;
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.insta-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.insta-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 0;
}

.insta-slide.active {
  opacity: 1;
  z-index: 1;
}

.insta-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-nav:hover {
  background: #f0f0f0;
}

.insta-nav.prev {
  left: 0;
  background-color: var(--primary);
  color: white;
}

.insta-nav.next {
  right: 0;
  background-color: var(--primary);
  color: white;
}

@media (max-width: 500px) {
  .insta-nav.prev {
    left: 5px;
  }
  .insta-nav.next {
    right: 5px;
  }
  /* .insta-slider-wrapper {
    width: 90%;
  } */
}

.permalink-blog {
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}

.blog-details-hero {
  padding: 3rem;
}

.shorts-logo {
  width: 26px;
  height: 26px;
  padding-top: 4px;
}

.company-name {
  color: var(--primary-foreground);
  text-decoration: none;
}

.event_registration {
  display: none;
}

#home {
  background-color: var(--shrivas-bg-blue);
}

.faq {
  max-width: 70%;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: #f1f5f9;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 16px;
  color: #475569;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: max-content;
  padding: 16px;
}

.faq-answer ul {
  margin: revert;
  padding: revert;
}

.icon {
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  padding: 2rem 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-image img {
  width: 80%;
  height: 600px;
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  color: #2680d9;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--card-foreground);
}

.service-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.service-features li::before {
  content: "•";
  color: #2680d9;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 4rem;
  }
}

.hospital-scroll-section {
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
}

.subtitle {
  text-align: center;
  color: #94a3b8;
  font-size: 1.1rem;
}

.scroll-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.gradient-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8rem;
  background: linear-gradient(to right, #0f172a, transparent);
  z-index: 10;
}

.gradient-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8rem;
  background: linear-gradient(to left, #0f172a, transparent);
  z-index: 10;
}

.scroll-track {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.hospital-card {
  flex-shrink: 0;
  margin: 0 2rem;
  width: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hospital-card p {
  height: 30%;
  font-weight: bold;
}

.card-inner {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  padding: 1.1rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-inner:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.card-inner img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

.card-inner:hover img {
  /* filter: grayscale(0%); */
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 768px) {
  .hospital-card {
    width: 10rem;
    height: 6rem;
    margin: 0 2rem;
  }
}

.testimonials-section {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0px;
  margin-top: 2px;
}

.testimonial-container {
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  opacity: 0;
  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--shrivas-bg-blue);
}

.testimonial-author {
  flex: 1;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-role {
  color: #666;
  font-size: 0.875rem;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 20px;
  height: 20px;
  fill: var(--shrivas-bg-blue);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: #e5e5e5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: #d4d4d4;
}

.dot.active {
  width: 32px;
  background: var(--shrivas-bg-blue);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.nav-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
}

.nav-button:hover svg {
  stroke: white;
}

.nav-button svg {
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  transition: stroke 0.3s ease;
}

.counter {
  color: #fff;
  font-size: 0.875rem;
}

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

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-content {
    font-size: 1rem;
  }
}

.ngg-gallery-thumbnail a {
  text-decoration: none;
}

.ngg-gallery-thumbnail {
  border: 3px solid var(--shrivas-bg-blue) !important;
}

.ngg-gallery-thumbnail a::after {
  content: attr(data-title); /* falls back to the image's data-title */
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: black;
  text-align: left;
}

.ngg-gallery-thumbnail img {
  width: 100%;
}

.sl-overlay {
  background: #000 !important;
}
