/* ===== Global Styles & Variables ===== */
:root {
  --royal-blue: #051094;
  --white: #FFFFFF;
  --red: #FF0000;
  --dark: #343a40;
  --light: #f8f9fa;
  --gray: #6c757d;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Launching Soon Popup Styles */
.launching-soon-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,16,148,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.5s;
}
.launching-soon-popup .popup-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(5,16,148,0.18);
  padding: 48px 36px 36px 36px;
  text-align: center;
  position: relative;
  max-width: 480px;
  width: 95vw;
  min-width: 0;
  animation: popupScale 0.4s;
}
.launching-soon-popup .popup-icon {
  font-size: 3.5rem;
  color: #051094;
  margin-bottom: 18px;
}
.launching-soon-popup h2 {
  margin-bottom: 18px;
  color: #051094;
  font-size: 2rem;
}
.launching-soon-popup p {
  color: #343a40;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.popup-close:hover {
  color: #051094;
}
.popup-details-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: #051094;
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.popup-details-btn:hover {
  background: #2a3eb1;
}
@keyframes popupScale {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* Responsive for mobile */
@media (max-width: 600px) {
  .launching-soon-popup .popup-content {
    padding: 32px 10px 24px 10px;
    max-width: 98vw;
  }
  .launching-soon-popup h2 {
    font-size: 1.3rem;
  }
  .launching-soon-popup .popup-icon {
    font-size: 2.2rem;
  }
  .launching-soon-popup p {
    font-size: 1rem;
  }
  .popup-details-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}


/* === Site Loader Styles === */
.site-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: linear-gradient(135deg, #051094 0%, #e8eafc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: all;
}

.site-loader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.loader-logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  user-select: none;
}

.loader-char {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: loaderFadeIn 0.4s forwards;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 12px #05109444;
}

.loader-char.space {
  width: 0.7em;
  opacity: 0;
  animation: none;
}

@keyframes loaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }
}

.loader-spinner {
  width: 38px;
  height: 38px;
  border: 4px solid #fff;
  border-top: 4px solid #d32f2f;
  border-radius: 50%;
  margin: 18px auto 10px;
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.loader-text {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 500;
  text-shadow: 0 1px 8px #05109433;
}

@media (max-width: 600px) {
  .loader-logo { font-size: 1.1rem; }
  .loader-spinner { width: 28px; height: 28px; }
  .loader-text { font-size: 0.95rem; }
}

.facebook-link {
  background: #1877f3;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(24,119,243,0.18);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: fb-wiggle 1.6s infinite;
  cursor: pointer;
}

.facebook-link i {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.facebook-link:hover {
  background: #145db2;
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(24,119,243,0.28);
}

@keyframes fb-wiggle {
  0%, 100% { transform: rotate(0deg);}
  15% { transform: rotate(-10deg);}
  30% { transform: rotate(8deg);}
  45% { transform: rotate(-6deg);}
  60% { transform: rotate(4deg);}
  75% { transform: rotate(-2deg);}
  90% { transform: rotate(1deg);}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Soft gradient + subtle abstract SVG pattern */
  background-image:
    linear-gradient(135deg, #f8f9fa 0%, #e8eafc 100%),
    url("data:image/svg+xml;utf8,<svg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='20' cy='20' r='1.5' fill='%23051094' fill-opacity='0.08'/><circle cx='60' cy='60' r='1.5' fill='%23051094' fill-opacity='0.08'/><rect x='35' y='35' width='10' height='10' rx='5' fill='%23051094' fill-opacity='0.04'/><rect x='10' y='60' width='3' height='3' rx='1.5' fill='%23051094' fill-opacity='0.06'/><rect x='67' y='13' width='3' height='3' rx='1.5' fill='%23051094' fill-opacity='0.06'/></svg>");
  background-repeat: repeat;
  background-size: 80px 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

/* ===== Header Styles ===== */
header {
  width: 100%;
  font-family: 'Arial', sans-serif;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1000;
}

/* Emergency Strip */
.emergency-strip {
  background-color: var(--royal-blue);
  color: var(--white);
  padding: 8px 0;
  display: flex;
  justify-content: center;      /* Center horizontally */
  align-items: center;
  font-size: 14px;
  text-align: center;           /* Center text inside */
}

.emergency-text {
  padding-left: 20px;
  flex-grow: 1;
}

.facebook-link {
  color: var(--white);
  padding: 0 20px;
  font-size: 16px;
  transition: opacity 0.3s;
}

.facebook-link:hover {
  opacity: 0.8;
}

/* Top Navigation with Oval Items */
.top-nav-container {
  background-color: var(--light);
  padding: 5px 0;
}

.top-nav ul {
  display: flex;
  justify-content: flex-end; /* Align to right */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.top-nav li {
  margin: 0 5px;
}

.top-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  background-color: var(--royal-blue);
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  border: 2px solid transparent;
}

.top-nav a:hover {
  background-color: var(--white);
  color: var(--royal-blue);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(5, 16, 148, 0.2);
}

.top-nav a[data-page].active {
  background-color: #030b5e;
  font-weight: 600;
}

@media (max-width: 768px) {
  .top-nav ul {
    justify-content: center;
  }
}

/* Main Header */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1px 2px;
  background-color: var(--white);
  position: relative;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  width: 100%;
  padding: 18px 0 12px 0;
  background: var(--white);
}

.header-logo-wrap {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hospital-logo {
  width: 120px;
  height: 120px; /* Make it a perfect square */
  object-fit: contain; /* Show entire image without cropping */
  border-radius: 0; /* Keep it square */
  background: none;
  border: none;
  box-shadow: none;
  display: block;
  padding: 0;
}

.header-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hospital-name {
  color: #051094;
  font-size: 1.5rem;
  margin: 0 0 4px 0;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: left;
}

.hospital-tagline {
  color: var(--red);
  font-size: 18px;
  margin: 5px 0 0 0;
  text-align: center; /* Center text */
  font-weight: 700;
  width: 100%;
  display: block;
}
@media (max-width: 700px) {
  .header-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 0 8px 0;
  }
  .header-texts {
    align-items: center;
    text-align: center;
  }
  .hospital-logo {
    width: 100px;
    height: 100px;
  }
  .hospital-name {
    font-size: 1.1rem;
  }
  .hospital-tagline {
    font-size: 0.95rem;
  }
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e50;
  padding: 10px;
  z-index: 1001;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
  margin: 0 10px;
}

.main-nav a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.main-nav a i {
  margin-right: 8px;
  font-size: 0.9em;
}

.main-nav a:hover {
  color: var(--red);
}

/* Dropdown Styles */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-top: 2px solid var(--red);
}

.main-nav .dropdown-content li a {
  padding: 12px 16px;
  display: block;
  color: var(--dark);
  transition: background-color 0.3s;
}

.main-nav .dropdown-content li a:hover {
  background-color: #f5f5f5;
  color: var(--royal-blue);
}
/* Desktop - Show on hover */
@media (min-width: 769px) {
  .main-nav .dropdown:hover > .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .main-nav .dropdown-content {
    display: none;
    position: static;
    box-shadow: none;
    width: 100%;
    border: none;
    border-left: 3px solid var(--red);
    margin-top: 5px;
    border-radius: 0;
    opacity: 1;
    transform: none;
  }
  .main-nav .dropdown.open > .dropdown-content {
    display: block;
  }
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--light);
  padding: 10px 20px;
  border-top: 1px solid #eee;
}

.breadcrumb {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  margin-right: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.breadcrumb li:after {
  content: '/';
  margin-left: 5px;
  color: #7f8c8d;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb a {
  color: var(--royal-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  border-bottom: 3px solid var(--red);
}

.hero-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-images img.active {
  opacity: 1;
}

.hero-message-box {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 80%;
  max-width: 900px;
  text-align: center;
}

.hero-message {
  display: none;
  background: rgba(5, 16, 148, 0.85);
  padding: 25px 35px;
  border-radius: 15px;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease forwards;
  backdrop-filter: blur(5px);
}

.hero-message.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mission/Vision Section */
.mv-section {
  padding: 60px 20px;
  background: var(--royal-blue);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--red);
}

.section-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 15px auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.mv-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.mv-tab {
  padding: 12px 25px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.mv-tab:hover {
  background: var(--red);
  border-color: var(--red);
}

.mv-tab.active {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.mv-content {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  min-height: 300px;
}

.mv-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--red);
}

.mv-pane {
  display: none;
  animation: fadeIn 0.5s ease;
  color: var(--white);
}

.mv-pane.active {
  display: block;
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 20px;
}

.mv-pane h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-pane p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 15px;
}

.values-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list i {
  color: var(--red);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ===== Featured Services ===== */
.featured-services {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Modern Medical Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 50px 20px;
  border-radius: 18px;
  background: 
    /* Soft blue-white gradient base */
    radial-gradient(ellipse at top left, rgba(232,234,252,0.9) 0%, rgba(248,249,250,0.9) 100%),
    /* DNA helix pattern */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g opacity='0.08'><path d='M60,20 C70,30 70,40 60,50 C50,60 50,70 60,80 C70,90 70,100 60,110' stroke='%23051094' stroke-width='1.5' fill='none'/><path d='M60,20 C50,30 50,40 60,50 C70,60 70,70 60,80 C50,90 50,100 60,110' stroke='%23051094' stroke-width='1.5' fill='none'/><circle cx='60' cy='20' r='3' fill='%23e8eafc'/><circle cx='60' cy='50' r='3' fill='%23e8eafc'/><circle cx='60' cy='80' r='3' fill='%23e8eafc'/><circle cx='60' cy='110' r='3' fill='%23e8eafc'/></g></svg>");
  background-blend-mode: overlay;
  background-size: auto, 120px 120px;
  border: 1px solid rgba(232,234,252,0.7);
  box-shadow: 
    0 4px 24px rgba(5,16,148,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

/* Animated pulse effect */
.section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0) 0%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0) 100%);
  animation: shine 6s infinite;
  z-index: 0;
}

.section-header h1 {
  font-size: 2.5rem;
  color: var(--royal-blue);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  z-index: 1;
}

.section-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--red);
  z-index: 1;
}

.section-description {
  font-size: 1.2rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ...existing code... */
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  /* Replace the current pattern with the DNA helix pattern */
  background-image: 
    /* Soft blue-white gradient base */
    radial-gradient(ellipse at top left, rgba(232,234,252,0.9) 0%, rgba(248,249,250,0.9) 100%),
    /* DNA helix pattern */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g opacity='0.08'><path d='M60,20 C70,30 70,40 60,50 C50,60 50,70 60,80 C70,90 70,100 60,110' stroke='%23051094' stroke-width='1.5' fill='none'/><path d='M60,20 C50,30 50,40 60,50 C70,60 70,70 60,80 C50,90 50,100 60,110' stroke='%23051094' stroke-width='1.5' fill='none'/><circle cx='60' cy='20' r='3' fill='%23e8eafc'/><circle cx='60' cy='50' r='3' fill='%23e8eafc'/><circle cx='60' cy='80' r='3' fill='%23e8eafc'/><circle cx='60' cy='110' r='3' fill='%23e8eafc'/></g></svg>");
  background-blend-mode: overlay;
  background-size: auto, 120px 120px;
  border: 1px solid rgba(232,234,252,0.7);
  box-shadow: 
    0 4px 24px rgba(5,16,148,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.8);
}

/* ...existing code... */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--red);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Ensure service images are always visible */
.service-image, .service-image img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h2 {
  color: var(--royal-blue);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--gray);
}

.service-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link i {
  transition: transform 0.3s;
  font-size: 0.9rem;
}

.service-link:hover {
  color: #c1121f;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Insurance Partners Carousel */
.logo-carousel {
  background: #f9f9ff;
  padding: 2.5rem 0;
  margin: 0;
}
.logo-carousel h2 {
  text-align: center;
  color: #051094;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.carousel-logo {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 180px;
  min-height: 70px;
  max-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(5, 16, 148, 0.10);
  padding: 18px 28px;
  margin: 0;
  transition: transform 0.2s;
}
.carousel-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}
.carousel-logo:hover img {
  filter: grayscale(0);
}
.carousel-arrow {
  background: #051094;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  margin: 0 10px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: #ff2a2a;
}
@media (max-width: 900px) {
  .carousel-logo {
    min-width: 100px;
    max-width: 120px;
    min-height: 40px;
    max-height: 60px;
    padding: 8px 10px;
  }
  .carousel-track {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .carousel-logo {
    min-width: 70px;
    max-width: 90px;
    min-height: 30px;
    max-height: 40px;
    padding: 4px 6px;
  }
  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}/* ===== Contact Section ===== */

.contact {
  padding: 60px 0;
  /* Soft blue gradient + subtle pattern */
  background: linear-gradient(135deg, #e8eafc 0%, #f8f9fa 100%);
  background-image:
    linear-gradient(135deg, #e8eafc 0%, #f8f9fa 100%),
    url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='30' cy='30' r='1.5' fill='%23051094' fill-opacity='0.07'/></svg>");
  background-repeat: repeat;
  background-size: 60px 60px, cover;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--royal-blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid var(--red);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2rem;
  color: var(--royal-blue);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: var(--royal-blue);
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 10px;
}

.business-map-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.map-responsive-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.google-map-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
/* Footer Styles */
footer {
  background: linear-gradient(135deg, #232946 0%, #1a1f2b 100%);
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  border-top: 5px solid #e8eafc;
  box-shadow: 0 -4px 24px rgba(35,41,70,0.10);
  background-image:
    linear-gradient(135deg, #232946 0%, #1a1f2b 100%),
    url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='30' cy='30' r='1.5' fill='%23e8eafc' fill-opacity='0.10'/></svg>");
  background-repeat: repeat;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Contact Information Styles */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-brand-text {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact-link {
  color: #b8c1ec;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-contact-link:hover .footer-contact-icon {
  background: #d62839;
  transform: scale(1.1);
}

/* Social Media Styles */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: #1877f3;
  transform: translateY(-3px);
}

/* Links Section Styles */
.footer-links-section {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #b8c1ec;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #b8c1ec;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 1em;
}


.footer-links a i {
  font-size: 0.9rem;
  color: #b8c1ec;
}

/* Footer Bottom Styles */
.footer-divider {
  height: 1px;
  background: rgba(184, 193, 236, 0.2);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  color: #b8c1ec;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  
  .footer-links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-link {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links-section {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
}/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.floating-btn {
  background-color: var(--royal-blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  text-decoration: none;
}

.floating-btn[href*="wa.me"] {
  background-color: #25D366;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-label {
  display: none;
}


/* ===== Chatbot Styles ===== */
:root {
  --primary-blue: #051094;
  --emergency-red: #ff4d4d;
  --light-bg: #f8f9fa;
  --message-blue: #e3f2fd;
  --user-message: #d1e7ff;
  --text-dark: #333;
  --text-light: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  background: #1a2ac0;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--emergency-red);
  border-radius: 50%;
  border: 2px solid white;
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 500px;
  max-height: 80vh;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .chatbot-container {
    width: 90vw;
    right: 5vw;
    bottom: 80px;
    max-height: 65vh;
  }

  .chatbot-messages {
    max-height: none !important;
    min-height: 0;
    flex: 1 1 auto;
    padding-bottom: 90px; /* ensures space for quick-questions and input */
    overflow-y: auto;
  }
}

.chatbot-container.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* Header Styles */
.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--primary-blue);
  color: white;
}

.chatbot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-brand i {
  font-size: 1.8rem;
  color: var(--emergency-red);
}

.chatbot-brand h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.close-chatbot {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s ease;
}

.close-chatbot:hover {
  color: var(--emergency-red);
  transform: rotate(90deg);
}

.insurance-response {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 24px;
  margin: 22px auto 0;
  box-shadow: 0 2px 12px rgba(5,16,148,0.08);
  border: 1px solid #e8eafc;
  text-align: left;
  max-width: 420px;
  width: 100%;
  box-sizing: border-box;
}

.insurance-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.insurance-icon {
  color: #051094;
  font-size: 1.6rem;
}

.insurance-title {
  font-weight: 700;
  color: #051094;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.insurance-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: flex-start;
  align-items: center;
}

.insurance-badge {
  background: #e8eafc;
  color: #051094;
  border-radius: 18px;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(5,16,148,0.06);
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.insurance-badge:hover {
  background: #d1dbfa;
  transform: translateY(-1px);
}

.insurance-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.show-all-insurances-btn {
  background: #051094;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  width: auto;
  margin: 5px 0;
}

.show-all-insurances-btn:hover {
  background: #2336a7;
  transform: translateY(-1px);
}

.insurance-note {
  margin-top: 18px;
  color: #343a40;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.insurance-note i {
  margin-top: 2px;
}

.insurance-note a {
  color: #051094;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.insurance-note a:hover {
  color: #2336a7;
}

/* Messages Area */
.chatbot-messages {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  padding: 15px 15px 70px 15px; /* extra bottom padding for quick-questions/input */
  overflow-y: auto;
  scroll-behavior: smooth;
  background: var(--light-bg);
}

.message {
  margin-bottom: 12px;
  padding: 10px 15px;
  border-radius: 18px;
  max-width: 85%;
  line-height: 1.4;
  font-size: 0.95rem;
  animation: messageAppear 0.25s ease-out;
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-message {
  background: var(--primary-blue);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.bot-message {
  background: white;
  color: var(--text-dark);
  margin-right: auto;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Quick Questions */
.quick-questions {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 15px;
  background: white;
  border-top: 1px solid #eee;
  z-index: 1;
  position: relative;
}

.quick-question {
  background: rgba(5, 16, 148, 0.08);
  color: var(--primary-blue);
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-question:hover {
  background: rgba(5, 16, 148, 0.15);
}

.quick-question:active {
  transform: scale(0.96);
}

/* Input Area */
.chatbot-input {
  display: flex;
  padding: 12px 15px;
  background: white;
  border-top: 1px solid #eee;
}

.chatbot-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 0.95rem;
  transition: border 0.2s ease;
}

.chatbot-input input:focus {
  border-color: var(--primary-blue);
}

.chatbot-input button {
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-input button:hover {
  background: #1a2ac0;
  transform: scale(1.05);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  margin: 0 4px;
  animation: typingBounce 1.4s infinite ease-in-out;
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Action Buttons */
.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  margin-top: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.action-button:hover {
  background: #1a2ac0;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-button.red {
  background: var(--emergency-red);
}

.action-button.red:hover {
  background: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 480px) {
  .chatbot-container {
    width: 90vw;
    right: 5vw;
    bottom: 80px;
    max-height: 65vh;
  }
  
  .chatbot-messages {
    max-height: 50vh;
  }
  
  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .emergency-strip {
    flex-direction: column;
    text-align: center;
    padding: 8px;
  }
  
  .emergency-text {
    padding: 0;
    margin-bottom: 5px;
  }
  
  .top-nav ul {
    flex-wrap: wrap;
  }
  
  .top-nav li {
    margin: 5px 10px;
  }
  
  .logo-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .hospital-logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .main-nav.show {
    display: block;
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .main-nav a {
    padding: 12px 20px;
  }
  
  .dropdown-content li a {
    padding-left: 30px;
  }
  
  .dropdown-content li a i {
    margin-right: 10px;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero-message {
    font-size: 1rem;
    padding: 15px;
  }
  
  .mv-tabs {
    flex-direction: column;
  }
  
  .mv-tab {
    width: 100%;
  }
  
  .mv-content {
    padding: 20px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .breadcrumb li {
    font-size: 0.9rem;
  }
}

@media (min-width: 600px) {
  .btn-label {
    display: inline;
  }

  .floating-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 50vh;
  }
  
  .hero-message-box {
    width: 90%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  .carousel-track {
    gap: 25px;
  }
  
  .carousel-logo {
    height: 50px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 12.5px));
    }
  }
}

/* Animation for dropdowns */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Error message styling */
.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: center;
}

.error-message a {
  color: var(--royal-blue);
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

/* Service content container */
#service-content-container {
  padding: 40px 0;
}

/* Clinic Timetable Section */
.clinic-timetable-section {
  background: #f8f9fa;
  padding: 40px 0 30px 0;
  border-radius: 12px;
  margin: 0 0 40px 0;
  box-shadow: 0 2px 10px rgba(5,16,148,0.06);
}
.timetable-title {
  text-align: center;
  color: #051094;
  font-size: 1.7rem;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.clinic-timetable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.clinic-timetable-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(5,16,148,0.04);
  padding: 18px 12px;
  text-align: center;
  border-left: 4px solid #051094;
  transition: box-shadow 0.2s;
}
.clinic-timetable-item:hover {
  box-shadow: 0 6px 18px rgba(5,16,148,0.10);
}
.clinic-name {
  font-weight: 600;
  color: #051094;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.clinic-days {
  color: #c1121f;
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.clinic-hours {
  color: #333;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .clinic-timetable-grid {
    grid-template-columns: 1fr;
  }
  .clinic-timetable-section {
    padding: 18px 4px;
  }
}

/* ...existing code... */

/* Responsive: Quick Questions horizontal scroll on mobile */
@media (max-width: 600px) {
  .quick-questions {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100vw;
    padding-bottom: 8px;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: #051094 #f8f9fa;
  }
  .quick-question {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 80vw;
    white-space: nowrap;
  }

@media (max-width: 600px) {
  .chatbot-container {
    width: 98vw;
    right: 1vw;
    bottom: 10px;
    max-height: 90vh;
    min-height: 60vh;
    border-radius: 10px;
    padding-bottom: 110px; /* space for quick-questions + input */
  }
  .chatbot-messages {
    max-height: 65vh !important;
    min-height: 250px;
    padding-bottom: 120px !important; /* ensures space for quick-questions and input */
    font-size: 1.05rem;
  }
  .quick-questions {
    position: fixed;
    left: 0;
    bottom: 56px;
    width: 100vw;
    z-index: 1002;
    background: #fff;
    border-top: 1px solid #eee;
    padding-bottom: 8px;
    overflow-x: auto;
    display: flex !important;
  }
  .chatbot-input {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 1003;
  }
}
  
}

/* Make main navigation a full-width blue strip for desktop */
@media (min-width: 769px) {
  .nav-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #051094;
    box-shadow: var(--shadow);
    padding: 0;
    justify-content: center;
    z-index: 100;
  }
  .main-nav {
    width: 100%;
    background: transparent;
    box-shadow: none;
    position: static;
    display: flex !important;
    justify-content: center;
  }
  .main-nav ul {
    width: 100%;
    justify-content: center;
    background: transparent;
  }
  .main-nav a {
    color: #fff;
    background: transparent;
    font-weight: 500;
    transition: var(--transition);
  }
  .main-nav a:hover {
    color: var(--red);
    background: rgba(255,255,255,0.08);
  }
}