/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Brand Colors */
  --primary-dark: #0B2558;     /* Deep navy blue */
  --primary-pink: #F6164D;     /* Bright magenta/pink */
  --primary-teal: #28D5E8;     /* Aqua / teal */
  --primary-orange: #F1A43A;   /* Soft amber/orange */
  --primary-lightpink: #E6C6C1; /* Soft pastel pink */

  /* Neutral Colors */
  --neutral-dark: #5A6A8C;     /* Steel bluish-gray */
  --neutral-light: #FFFFFF;    /* White */

  /* Background Colors */
  --background: #FFFFFF;
  --background-light: #FAFAFA;
  --background-muted: #E6C6C1;

  /* Text Colors */
  --text-primary: #0B2558;
  --text-secondary: #5A6A8C;

  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 37, 88, 0.1);
  --shadow-md: 0 4px 8px rgba(11, 37, 88, 0.15);
  --shadow-lg: 0 8px 16px rgba(11, 37, 88, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(11, 37, 88, 0.15);
  --shadow-2xl: 0 25px 50px -12px rgba(11, 37, 88, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container Widths */
  --container-sm: 100%;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;

  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
  border-radius: 10px;
  border: 3px solid var(--background-light);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-teal) var(--background-light);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

/* ===== ENHANCED NAVBAR STYLES ===== */

.navbar{
  height:80px
}
.custom-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  z-index: 1030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.custom-navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Increased navbar logo size */
.navbar-brand .logo-image-container {
  width: 170px; /* Increased from 50px */
  height: 170px; /* Increased from 50px */
  background: transparent; /* Removed container background */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem; /* Reduced padding */
  box-shadow: none; /* Removed shadow */
  border: none; /* Removed border */
  transition: all var(--transition-normal);
}

/* Mobile screen adjustments */
@media (min-width: 0px) and (max-width: 992px) {
  .navbar-brand .logo-image {
    margin-bottom: 120px;
  }
}


/* .navbar-brand .logo-image-container:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
} */

/* Desktop styles only */
@media (min-width: 992px) {
  .navbar-brand {
    margin-top: 50px;
  }
  
  .navbar-brand .logo-text {
    margin-bottom: 20px;
  }
}

.navbar-brand .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain to show full logo */
  border-radius: 0; /* Removed border radius for PNG logo */
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-normal);
}

/* Navbar Links */
.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.25rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(246, 22, 77, 0.1), transparent);
  transition: left 0.5s;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-pink);
  background: rgba(246, 22, 77, 0.1);
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* CTA Button in Navbar */
.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange)) !important;
  color: var(--neutral-light) !important;
  border-radius: var(--radius-lg) !important;
  padding: 0.5rem 1.5rem !important;
  margin-left: 0.5rem !important;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal) !important;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Enhanced Mobile Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  margin-bottom: 50px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    margin-bottom: 120px;

}

/* Hamburger Menu Icon (3 lines) */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar-toggler-icon::before {
  transform: translateY(-6px);
}

.navbar-toggler-icon::after {
  transform: translateY(6px);
}

/* Middle line for hamburger */
.navbar-toggler-icon .hamburger-middle {
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Close Icon (X) when expanded */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(0, 0);
  background: var(--primary-pink);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(0, 0);
  background: var(--primary-pink);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .hamburger-middle {
  opacity: 0;
  transform: scale(0);
}

/* Alternative: Using different approach for more precise X icon */
/* Uncomment below if you want a more precise X icon */

/*
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  background: var(--primary-pink);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  background: var(--primary-pink);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .hamburger-middle {
  opacity: 0;
  transform: rotate(45deg);
}
*/

/* Hover effects */
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after,
.navbar-toggler:hover .navbar-toggler-icon .hamburger-middle {
  background: var(--primary-teal);
}

.navbar-toggler[aria-expanded="true"]:hover .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"]:hover .navbar-toggler-icon::after {
  background: var(--primary-pink);
  opacity: 0.8;
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(11, 37, 88, 0.1);
    padding: 1rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1.5rem !important;
    text-align: center;
    font-size: 1.1rem;
  }

  .btn-nav-cta {
    margin: 0.5rem 1.5rem !important;
    text-align: center;
    display: block;
  }
}

/* ===== LOADER STYLES ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a7a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  text-align: center;
  color: var(--neutral-light);
}

.logo-container {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease;
}

.logo-image-container {
  width: 100px;
  height: 100px;
  background: var(--neutral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-teal), var(--neutral-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-animation {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.loader-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-teal);
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-circle:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--primary-pink);
}

.loader-circle:nth-child(3) {
  animation-delay: 0.4s;
  background: var(--primary-orange);
}

.loader-text {
  font-size: 1.1rem;
  opacity: 0.9;
  animation: fadeIn 2s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* ===== COMMON COMPONENTS ===== */
.container {
  width: 100%;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
  color: var(--neutral-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--background-light);
  border: 2px solid var(--background-light);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--neutral-light);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--primary-teal);
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-teal:hover {
  background: var(--primary-dark);
  color: var(--neutral-light);
  transform: translateY(-2px);
}

/* Card Layout */
.card {
  background: var(--neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  margin-bottom: var(--space-lg);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.card-body {
  color: var(--text-secondary);
}

/* Section Styles */
.section {
  padding: var(--space-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ===== ENHANCED FOOTER STYLES ===== */
.footer {
  background: var(--primary-dark);
  color: var(--neutral-light);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(40, 213, 232, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(246, 22, 77, 0.08) 0%, transparent 50%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-image-container {
  width: 160px;
  height: 60px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.footer-brand .logo-image-container:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.footer-brand .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-light);
}

.footer-description {
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-light);
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: var(--primary-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--neutral-light);
}

.footer h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--neutral-light);
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: width var(--transition-fast);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.footer-links a:hover {
  color: var(--primary-teal);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  color: var(--primary-teal);
  transform: translateX(5px);
}

.contact-item svg {
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-left: 1.5rem;
}

.footer-link:hover {
  color: var(--primary-teal);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
  color: var(--neutral-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(246, 22, 77, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40, 213, 232, 0.4);
}

/* Responsive Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* Responsive Typography */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .logo-image-container {
    width: 80px;
    height: 80px;
  }

  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-brand .logo-text {
    font-size: 1.5rem;
  }

  .footer h5 {
    font-size: 1.2rem;
  }

  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}