/* ========================================
   ASIA MED - Global Styles & Design System
   Modern Healthcare Website
   ======================================== */

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors */
  --color-primary: #2EC1AC;
  --color-primary-dark: #066666;
  --color-primary-light: #14b8b8;
  --color-secondary: #ff6b4a;
  --color-secondary-dark: #e55a3a;
  --color-accent: #d4a843;
  --color-brand-blue: #00204A;
  --color-brand-teal: #2EC1AC;
  --color-brand-grey: #555555;
  --color-dark: #1a1a2e;
  --color-darker: #0f0f1a;
  --color-light: #f8f9fa;
  --color-white: #ffffff;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-text-muted: #a0aec0;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, #ff8f73 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-darker) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(13, 138, 138, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  /* Deeply rounded for premium feel */
  --radius-xl: 40px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(13, 138, 138, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Medical Specific Colors */
  --medical-teal: #2EC1AC;
  --medical-blue: #00204A;
  --medical-glow: rgba(46, 193, 172, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
  text-align: justify;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brand-blue);
  /* Match Logo Navy */
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.625rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
  text-align: justify;
  /* Justify text globally */
}

.text-muted {
  color: var(--color-text-muted);
}

.text-light {
  color: var(--color-text-light);
}

/* Fix justification spacing in centered cards */
.service-card p.centered,
.testimonial-card p,
.contact-info-card p,
.aesthetic-header p,
.service-card p {
  text-align: center !important;
}

.vision-card .card-text,
.vision-card .card-body p,
.vision-card .card-body ul li,
.vision-card p,
.service-card p:not(.centered),
.project-desc,
.contact-info-card p,
.legacy-content p {
  text-align: justify !important;
}

.vision-content p {
  text-align: justify !important;
  font-size: 1.1rem !important;
  /* Reduced font size as requested */
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 400 !important;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

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

/* Simple Fade-In Animations */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-left {
  transform: translateX(-30px);
}

.animate-fade-right {
  transform: translateX(30px);
}

.animated {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.text-white {
  color: var(--color-white);
}

/* ===== Container ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header .subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* Aesthetic Header & Vision Refinement */
.aesthetic-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.aesthetic-header .subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
  background: rgba(46, 193, 172, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
}

.aesthetic-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--color-brand-blue);
  line-height: 1.1;
}

.aesthetic-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--color-text-light);
  text-align: center !important;
  /* Explicitly NOT justified */
}

.aesthetic-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
}

.vision-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, #ffffff 0%, #2ec1ac 50%, #4ecdc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vision-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center all heading/subtitle elements */
  text-align: center;
}

.vision-content .subtitle {
  font-size: 1.25rem !important;
  /* Slightly enlarged */
  letter-spacing: 0.3em !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  text-align: center;
  color: var(--color-primary) !important;
  /* Ensure it's visible */
  font-weight: 700 !important;
}

/* Legacy Section Specific Refinements */
.legacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Image gets slightly more space */
}

.legacy-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  /* Centers both lines relative to the longest one */
  margin-bottom: 2rem !important;
  text-align: center;
}

.legacy-heading .line-1 {
  display: block;
  font-size: 1em;
  font-weight: 800;
  line-height: 1;
}

.legacy-heading .line-2 {
  display: block;
  font-size: 0.65em;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  /* Ultra-wide professional tracking */
  font-weight: 700;
  margin-top: 0.8rem;
  padding-left: 0.5em;
  /* Offset for the last letter's tracking */
  background: linear-gradient(90deg, var(--color-primary) 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-hud-panel {
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.hero-hud-panel:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(46, 193, 172, 0.3) !important;
  transform: translateY(-5px);
}

.glass-pod {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.glass-pod:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--color-brand-teal) !important;
  transform: scale(1.05) translateX(10px) !important;
  box-shadow: 0 10px 40px rgba(46, 193, 172, 0.2);
}

.glass-pod::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.glass-pod:hover::before {
  left: 100%;
}

@media (max-width: 992px) {
  .hero .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual-pods {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .glass-pod {
    transform: none !important;
    width: 100%;
    max-width: 300px;
  }
}

/* Cinematic Hero Extentions */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cinematic-h1 {
  font-size: clamp(3.5rem, 10vw, 7rem) !important;
  line-height: 0.9 !important;
  font-weight: 900 !important;
  margin-bottom: 2rem !important;
  background: linear-gradient(135deg, #ffffff 0%, #2ec1ac 50%, #00204a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.vision-content .subtitle {
  position: relative;
  /* padding-left removed to center properly without the line */
}

/* Removed .vision-content .subtitle::before rule to delete the line beside it */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(13, 138, 138, 0.4);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-brand-teal);
  border-color: var(--color-brand-teal);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(46, 193, 172, 0.4);
}

.btn-dark {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Button Effects */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
  pointer-events: none;
  z-index: -1;
}

.btn:hover::after {
  transform: scale(1);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(13, 138, 138, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(13, 138, 138, 0.5);
  animation: buttonGlow 2s infinite;
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 10px rgba(13, 138, 138, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(13, 138, 138, 0.6);
  }

  100% {
    box-shadow: 0 0 10px rgba(13, 138, 138, 0.3);
  }
}

/* Medical Modern Containers */
.medical-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.medical-container h2,
.medical-container h3 {
  background: linear-gradient(90deg, var(--color-white) 0%, var(--color-brand-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.medical-container h4 {
  color: var(--color-brand-teal) !important;
}

.medical-container p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.medical-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(46, 193, 172, 0.4);
}

.medical-container.vision-card {
  background: rgba(10, 15, 25, 0.7);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.medical-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 30px;
  pointer-events: none;
}

/* 3D Canvas Styles */
.three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  /* Above background image but below content */
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Global Content Containers */
.container,
section>div:not(.hero-bg):not(.three-glow-overlay) {
  border-radius: 30px;
  /* Ensure all content blockers are rounded */
}

/* Rounded Buttons Global Override */
button,
.btn {
  border-radius: 50px !important;
  /* Pill shape for all buttons */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

button:hover,
.btn:hover {
  transform: scale(1.05);
  /* Pop effect */
}

.btn-icon {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  /* Perfect circle */
}

/* Global Background with Subtle Pulse */
body {
  background: #02040a;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46, 193, 172, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 32, 74, 0.1) 0%, transparent 40%);
  background-attachment: fixed;
  animation: pulse-bg 15s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 10% 5%;
  }
}

/* ===== Header & Navigation - FLOATING BUBBLE ===== */
.header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 10px;
  width: 98%;
}

.header.scrolled .nav-link {
  color: #4ecdc4;
  /* Same teal color when scrolled */
}

.header.scrolled .nav-link:hover {
  color: #6fffe9;
}

/* Cleaned up conflicting logo color rule */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  height: 80px;
}

.logo {
  position: relative;
  z-index: 1100;
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transform: scale(4.5);
  /* Massive 4.5x zoom */
  transform-origin: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  transition: all 0.4s ease;
  margin-left: 50px;
  /* Larger offset for bigger scale */
}

.header.scrolled .logo img {
  transform: scale(3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  margin-left: 35px;
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    width: 92%;
    border-radius: 25px;
  }

  .nav {
    height: 60px;
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 40px;
    transform: scale(1.5);
    margin-left: 10px;
  }

  .header.scrolled .logo img {
    height: 35px;
    transform: scale(1.3);
  }
}

.logo-icon-a,
.logo-asiamed,
.logo-solutions,
.logo-pulse {
  display: none;
}


.header.scrolled .logo-icon-a,
.header.scrolled .logo-asiamed {
  color: var(--color-brand-blue);
}

.header.scrolled .logo-solutions {
  color: var(--color-brand-grey);
}

.header.scrolled .logo-pulse {
  color: var(--color-brand-teal);
}

/* Footer specific logo adjustment */
.footer .logo-icon-a,
.footer .logo-asiamed {
  color: var(--color-white);
}

.footer .logo-solutions {
  color: rgba(255, 255, 255, 0.75);
}

.footer .logo-pulse {
  color: var(--color-brand-teal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #4ecdc4;
  /* Teal/mint matching logo */
  padding: 0.5rem 0;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2EC1AC, #4ecdc4);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #6fffe9;
  /* Brighter mint on hover */
  text-shadow: 0 0 15px rgba(111, 255, 233, 0.5);
}

.nav-link.active {
  color: #6fffe9;
}

.nav-cta {
  margin-left: var(--spacing-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.header.scrolled .nav-toggle span {
  background: var(--color-dark);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 32, 74, 0.95) 0%, rgba(26, 26, 46, 0.85) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 20;
  /* Ensure content is above everything */
  width: 100%;
  max-width: 1400px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
}

.hero-content .subtitle {
  display: inline-block;
  align-self: center;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  width: 100%;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: 8rem 0 2rem;
  background: transparent;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--color-primary-light);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

/* ===== Cards ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.vision-card .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.vision-card .card-title {
  color: var(--color-brand-teal);
}

.vision-card .card-text,
.vision-card .card-body ul {
  color: rgba(255, 255, 255, 0.85);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-body {
  padding: var(--spacing-md);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.card-text {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: inherit;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.service-card h3 {
  color: var(--color-brand-teal);
  text-align: center;
  margin-bottom: 1rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, rgba(13, 138, 138, 0.1) 0%, rgba(13, 138, 138, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

/* ===== Grids ===== */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

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

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

/* ===== Stats Section ===== */
.stats {
  background: var(--gradient-primary);
  padding: var(--spacing-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.stat-item {
  text-align: center;
  color: var(--color-white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-dark);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 138, 138, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

/* ===== Footer - Premium Aesthetic ===== */
.footer {
  background: linear-gradient(180deg, var(--color-darker) 0%, #0a0a14 100%);
  padding: var(--spacing-3xl) 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  /* Add rounded top corners */
  margin-top: var(--spacing-2xl);
  /* Add some breathing room above the rounded footer */
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 138, 138, 0.5), rgba(78, 205, 196, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .logo {
  margin-bottom: var(--spacing-lg);
  margin-top: 0;
  display: inline-block;
}

.footer-brand .logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  transition: all 0.3s ease;
}

.footer-brand .logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(13, 138, 138, 0.5));
  transform: scale(1.05);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-lg);
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(13, 138, 138, 0.8), rgba(78, 205, 196, 0.8));
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 138, 138, 0.3);
}

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  display: list-item;
  /* Restore standard list item for clean bullet-less look if preferred */
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  margin-right: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary-light);
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 8px;
}

.footer-bottom {
  padding: var(--spacing-lg) 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: var(--color-primary-light);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
    text-align: center;
  }

  .footer-brand .logo {
    display: block;
    margin: 0 auto var(--spacing-lg);
  }

  .social-links {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column {
    text-align: center;
  }
}

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

  .footer-brand {
    grid-column: span 1;
  }
}

/* ===== Contact Form ===== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-text);
}

.medical-container .form-label {
  color: var(--color-white);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  /* Force pill shape */
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--color-white);
}


.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  /* Force pill shape */
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 138, 138, 0.1);
}

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

/* ===== Floating WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* ===== Section Separator (Wave) ===== */
.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-wave svg {
  width: calc(100% + 1.3px);
  height: 80px;
}

.section-wave .shape-fill {
  fill: var(--color-white);
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: var(--spacing-lg) 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

/* ===== Project Grid ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 25, 0.98) 0%, rgba(10, 15, 25, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-md);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-category {
  font-size: 0.75rem;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
}

.project-title {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.project-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== Filter Tabs ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}


.filter-tab:hover,
.filter-tab.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== Contact Info Cards ===== */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.contact-info-card:hover .contact-info-content h4,
.contact-info-card:hover .contact-info-content p {
  color: var(--color-brand-blue) !important;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-brand-teal);
  /* Use brand teal for consistency */
  font-weight: 700;
}

.contact-info-content p {
  color: rgba(255, 255, 255, 0.7);
  /* Lighter text for details */
  margin: 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
}

.animate.animated {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.animate-fade-in.animated {
  animation-name: fadeIn;
}

.animate-fade-up.animated {
  animation-name: fadeInUp;
}

.animate-fade-left.animated {
  animation-name: fadeInLeft;
}

.animate-fade-right.animated {
  animation-name: fadeInRight;
}

.animate-scale.animated {
  animation-name: scaleIn;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-darker);
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    transition: right var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--color-white);
    font-size: 1.25rem;
  }

  .nav-cta {
    margin: var(--spacing-md) 0 0;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .page-hero {
    padding: 10rem 0 4rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Utility Classes ===== */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

.mb-4 {
  margin-bottom: var(--spacing-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mt-4 {
  margin-top: var(--spacing-xl);
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.py-2 {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.py-3 {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: var(--spacing-sm);
}

.gap-2 {
  gap: var(--spacing-md);
}

.gap-3 {
  gap: var(--spacing-lg);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-light {
  background-color: var(--color-light);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-primary {
  background-color: var(--color-primary);
}