/* css/style.css */
/* Professional doctor/medical color combination */
:root {
  --navy: #00587A;        /* Deep medical blue */
  --teal: #00A6A6;        /* Soft healthcare teal */
  /* --accent: #F4C430;       */
  --muted: #6B7280;       /* Neutral gray for text */
  --bg: #FFFFFF;          /* Clean white background */
  --light-blue: #E6F2F5;  /* Light background tint */
  --light-teal: #E0F5F5;
  --light-accent: #FEF6E0;
  --dark-navy: #003D52;
  --max-width: 1200px;
  --shadow: 0 10px 30px rgba(0, 88, 122, 0.08);
  --radius: 12px;
  --overlay: rgba(0, 88, 122, 0.85);
}

/* Reset & Base */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

.container { 
  width: 90%; 
  max-width: var(--max-width); 
  margin: 0 auto; 
}

.visually-hidden {
  position: absolute !important;
  height: 1px; 
  width: 1px;
  overflow: hidden; 
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(0, 88, 122, 0.08);
}

.site-header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 88, 122, 0.1);
}

.site-header.sticky .topbar {
  display: none;
}

.site-header.sticky .nav-wrap {
  padding: 5px 0;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--navy), #024F69);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
}

.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 12px;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar .social { 
  opacity: 0.95;
  font-weight: 500;
}

/* Nav Area */
.nav-wrap {
  padding: 8px 0;
  transition: all 0.3s ease;
  background: var(--bg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.brand .logo {
  display: flex;
  align-items: center;
}

.brand .logo img { 
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.sticky .brand .logo img {
  height: 45px;
}

/* Improved Hamburger Button */
.nav-toggle {
  background: none;
  border: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  z-index: 2000;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--light-blue);
}

.nav-toggle .hamburger {
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before { 
  top: -7px; 
  transform-origin: left center;
}

.nav-toggle .hamburger::after { 
  top: 7px; 
  transform-origin: left center;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: -2px;
  left: 4px;
  width: 24px;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 2px;
  left: 4px;
  width: 24px;
}

/* Improved Mobile Navigation */
.main-nav { 
  display: flex; 
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 6px;
}

.main-nav a:hover {
  color: var(--teal);
  background: var(--light-blue);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 70%;
}

.main-nav a.cta {
  background: var(--teal);
  color: white;
  border-radius: 6px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.2);
}

.main-nav a.cta:hover {
  background: #028E8E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 166, 0.3);
}

.main-nav a.cta::after {
  display: none;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: #E8F6F8;
  padding: 40px 0 15px;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.site-footer h4 {
  color: white;
  margin: 0 0 15px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.site-footer a {
  color: #DCEEEF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.newsletter-form button {
  padding: 10px 20px;
  border-radius: 6px;
  border: 0;
  background: var(--accent);
  color: #0B1324;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 13px;
}

.newsletter-form button:hover {
  background: #E3B020;
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-row a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-row a:hover {
  background: var(--accent);
  color: var(--dark-navy);
  transform: translateY(-3px);
}

.footer-grid .links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid .links li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
  font-size: 14px;
}

.footer-grid .links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  transition: all 0.3s ease;
}

.footer-grid .links li:hover::before {
  transform: translateX(5px);
}

.site-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* Full Screen Hero Section */
.hero_section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  margin-top: 0;
}

.hero_gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery_track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s ease;
}

.gallery_slide {
  flex: 0 0 25%;
  height: 100%;
  position: relative;
}

.gallery_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 50, 65, 0.85);
  z-index: 2;
}

.hero_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero_text {
  max-width: 600px;
  text-align: left;
}

.hero_title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
  margin-top:100px;
}

.hero_subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 550px;
}

.hero_buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero_stats {
  display: flex;
  gap: 25px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat_item {
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}

.stat_item h3 {
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 3px;
  font-weight: 700;
}

.stat_item p {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
}

.gallery_dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.gallery_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 88, 122, 0.15);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--navy);
  opacity: 0.8;
}

.gallery_arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.gallery_arrow.prev {
  left: 20px;
}

.gallery_arrow.next {
  right: 20px;
}

.gallery_arrow i {
  font-size: 1.2rem;
}

.scroll_indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Button Styles */
.btn_primary, .btn_secondary, .btn_outline, .btn_light, .btn_consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.btn_primary {
  background: #00A6A6;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.2);
}

.btn_primary:hover {
  background: #028E8E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.3);
}

.btn_secondary {
  background: var(--teal);
  color:  #FEF6E0;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
}

.btn_secondary:hover {
   background: #028E8E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
}

.btn_outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn_outline:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.btn_light {
  background: white;
  color: var(--navy);
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn_light:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.btn_consult {
  background: var(--accent);
  color: var(--dark-navy);
  padding: 8px 20px;
  font-size: 0.85rem;
  margin-top: 12px;
  box-shadow: 0 4px 10px rgba(244, 196, 48, 0.2);
}

.btn_consult:hover {
  background: #E3B020;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(244, 196, 48, 0.3);
}

/* About Section */
.about_section {
  background: var(--bg);
}

.section_header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section_title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
  position: relative;
  display: inline-block;
  margin-top:40px;
}

.section_subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 auto;
  line-height: 1.6;
}

.about_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.about_image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about_image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about_image:hover img {
  transform: scale(1.05);
}

.experience_badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark-navy);
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.experience_badge span {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience_badge p {
  margin: 3px 0 0;
  font-weight: 500;
  font-size: 0.8rem;
}

.about_text p {
  margin-bottom: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about_features {
  margin: 10px 0;
}

.feature_item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature_icon {
  width: 50px;
  height: 50px;
  background: var(--light-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature_item:hover .feature_icon {
  background: var(--teal);
  transform: translateY(-3px);
}

.feature_item:hover .feature_icon i {
  color: white;
}

.feature_icon i {
  font-size: 1.3rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.feature_text h4 {
  margin-bottom: 5px;
  color: var(--dark-navy);
  font-size: 1.1rem;
}

.feature_text p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Products Section */
.products_section {
  background: var(--bg);
}

.product_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.product_card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.product_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 88, 122, 0.15);
}

.product_image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product_card:hover .product_image img {
  transform: scale(1.1);
}

.product_category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--teal);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product_content {
  padding: 25px;
}

.product_content h4 {
  margin-bottom: 12px;
  color: var(--dark-navy);
  font-size: 1.2rem;
}

.product_content p {
  color: var(--muted);
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.product_features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
}

.product_features i {
  color: var(--teal);
  font-size: 0.8rem;
}

.section_cta {
  text-align: center;
}

/* Diseases & Conditions Section (Support System) */
.diseases_section {
  padding: 60px 0;
  background: var(--light-blue);
}

.diseases_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.disease_card {
  background: white;
  border-radius: var(--radius);
  padding: 25px 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.disease_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.disease_card:hover::before {
  transform: scaleX(1);
}

.disease_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 88, 122, 0.15);
  background: var(--bg);
}

.disease_icon {
  width: 60px;
  height: 60px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.disease_card:hover .disease_icon {
  background: var(--teal);
  transform: rotate(15deg) scale(1.1);
}

.disease_icon i {
  font-size: 1.5rem;
  color: var(--teal);
  transition: all 0.4s ease;
}

.disease_card:hover .disease_icon i {
  color: white;
}

.disease_content h4 {
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.disease_card:hover .disease_content h4 {
  color: var(--teal);
}

.disease_content p {
  color: var(--muted);
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
  font-size: 0.9rem;
}

/* Services We Offer Section (Why Choose Us) */
.services_offer_section {
  background: var(--light-blue);
  padding-bottom:10px;
}

.services_offer_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service_offer_card {
  background: white;
  border-radius: var(--radius);
  padding: 25px 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
}

/* .service_offer_card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(244, 196, 48, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
} */

/* .service_offer_card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.05) 0%, rgba(244, 196, 48, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
} */

/* .service_offer_card:hover::after {
  opacity: 1;
} */

.service_offer_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--teal), #028E8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service_offer_card:hover {
  transform: rotateY(180deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent), #E3B020);
}

.service_offer_icon i {
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s ease;
}

.service_offer_content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service_offer_content h4 {
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.service_offer_card:hover .service_offer_content h4 {
  color: var(--navy);
}

.service_offer_content p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 0.9rem;
}

/* Why Choose Us (Our Commitment) */
.why_section {
  padding: 60px 0;
  background: var(--bg);
}

.why_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why_card {
  background: white;
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 88, 122, 0.15);
}

.why_icon {
  width: 70px;
  height: 70px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.why_card:hover .why_icon {
  background: var(--teal);
  transform: scale(1.1) rotate(10deg);
}

.why_icon i {
  font-size: 1.8rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.why_card:hover .why_icon i {
  color: white;
}

.why_card h4 {
  margin-bottom: 12px;
  color: var(--dark-navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.why_card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* CTA Banner */
.cta_banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/pattern.svg') repeat;
  opacity: 0.1;
  z-index: 1;
}

.cta_content {
  position: relative;
  z-index: 2;
}

.cta_content h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta_content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials_section {
  padding: 60px 0;
  background: var(--light-blue);
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial_card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.testimonial_card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: 0 15px 30px rgba(0, 166, 166, 0.15);
}

.testimonial_content p {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.testimonial_content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial_author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author_avatar {
  width: 60px;
  height: 60px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author_avatar i {
  font-size: 1.8rem;
  color: var(--teal);
}

.author_info h5 {
  margin-bottom: 3px;
  color: var(--dark-navy);
  font-size: 1.1rem;
}

.author_info p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Contact Section */
.contact_section {
  padding: 60px 0;
  background: var(--bg);
}

.contact_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact_info .section_header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact_info .section_title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact_info .section_subtitle {
  margin: 0;
  font-size: 0.95rem;
}

.contact_details {
  margin-top: 30px;
}

.contact_item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact_icon {
  width: 50px;
  height: 50px;
  background: var(--light-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact_item:hover .contact_icon {
  background: var(--teal);
  transform: rotate(10deg);
}

.contact_item:hover .contact_icon i {
  color: white;
}

.contact_icon i {
  font-size: 1.3rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.contact_text h4 {
  margin-bottom: 5px;
  color: var(--dark-navy);
  font-size: 1rem;
}

.contact_text p, .contact_text a {
  color: var(--muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
  font-size: 0.9rem;
}

.contact_text a:hover {
  color: var(--teal);
}

.contact_form_wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form_group {
  margin-bottom: 20px;
}

.form_group input, .form_group select, .form_group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form_group input:focus, .form_group select:focus, .form_group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero_title {
    font-size: 2.5rem;
  }
  
  .diseases_grid,
  .services_offer_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .product_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero_title {
    font-size: 2.2rem;
  }
  
  .hero_subtitle {
    font-size: 1rem;
  }
  
  .diseases_grid,
  .services_offer_grid,
  .why_grid,
  .testimonials_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact_content {
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile Header */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 88, 122, 0.1);
  }
  
  .topbar {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: all 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 88, 122, 0.1);
    overflow-y: auto;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  
  .main-nav li {
    width: 100%;
    margin-bottom: 5px;
  }
  
  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 88, 122, 0.1);
  }
  
  .main-nav a:hover {
    background: transparent;
    color: var(--teal);
  }
  
  .main-nav a::after {
    display: none;
  }
  
  .main-nav a.cta {
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    border: none;
  }
  
  /* Mobile Menu Overlay */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
  }
  
  /* Hero Section Mobile */
  .hero_section {
    min-height: 500px;
    height: auto;
    padding: 100px 0 60px;
  }
  
  .hero_title {
    font-size: 2rem;
  }
  
  .hero_subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero_buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .hero_stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 1.5rem;
  }
  
  .gallery_slide {
    flex: 0 0 100%;
  }
  
  .gallery_track {
    width: 800%;
  }
  
  .gallery_arrow {
    width: 35px;
    height: 35px;
  }
  
  .gallery_arrow.prev {
    left: 10px;
  }
  
  .gallery_arrow.next {
    right: 10px;
  }
  
  /* General Mobile Styles */
  .section_title {
    font-size: 1.8rem;
  }
  
  .section_subtitle {
    font-size: 0.95rem;
  }
  
  .about_content,
  .contact_content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .diseases_grid,
  .services_offer_grid,
  .product_grid,
  .why_grid,
  .testimonials_grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .disease_card,
  .service_offer_card,
  .why_card,
  .testimonial_card {
    padding: 20px;
  }
  
  .contact_form_wrapper {
    padding: 25px 20px;
  }
  
  .cta_content h3 {
    font-size: 1.8rem;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .experience_badge {
    padding: 15px;
    right: 15px;
    bottom: 15px;
  }
  
  .experience_badge span {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero_title {
    font-size: 1.6rem;
  }
  
  .hero_subtitle {
    font-size: 0.9rem;
  }
  
  .gallery_arrow {
    width: 30px;
    height: 30px;
  }
  
  .gallery_arrow i {
    font-size: 1rem;
  }
  
  .section_title {
    font-size: 1.6rem;
  }
  
  .stat_item h3 {
    font-size: 2rem;
  }
  
  .stat_item p {
    font-size: 0.85rem;
  }
  
  .disease_icon,
  .service_offer_icon,
  .why_icon {
    width: 50px;
    height: 50px;
  }
  
  .disease_icon i,
  .service_offer_icon i,
  .why_icon i {
    font-size: 1.3rem;
  }
  
  .contact_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .contact_icon {
    width: 45px;
    height: 45px;
  }
  
  .contact_icon i {
    font-size: 1.1rem;
  }
}

/* Animation for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero_text, .about_content, .product_card, .why_card, .testimonial_card,
.service_card, .feature_item, .contact_item, .disease_card, .service_offer_card {
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}


/* ============ LOCATION PAGES CSS ============ */

/* Presence Page Specific Styles */
.presence_section {
  padding: 80px 0;
  background: var(--bg);
}

.presence_header {
  text-align: center;
  margin-bottom: 50px;
}

.presence_header h2 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.presence_header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--teal);
}

.presence_header p {
  font-size: 0.95rem;
  color: var(--muted);
  /* max-width: 700px; */
  margin: 20px auto 0;
}

.presence_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.presence_card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.presence_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.presence_card:hover::before {
  transform: scaleX(1);
}

.presence_card:hover {
  transform: translateY(-10px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(0, 166, 166, 0.15);
}

.presence_icon {
  width: 80px;
  height: 80px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.presence_card:hover .presence_icon {
  background: var(--teal);
  transform: rotate(360deg) scale(1.1);
}

.presence_icon i {
  font-size: 2.2rem;
  color: var(--teal);
  transition: all 0.4s ease;
}

.presence_card:hover .presence_icon i {
  color: white;
}

.presence_card h3 {
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.presence_card .city {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.presence_card .state {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 15px;
  display: inline-block;
  background: var(--light-blue);
  padding: 4px 15px;
  border-radius: 20px;
}

.presence_card .contact-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(0, 166, 166, 0.2);
}

.presence_card .contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.presence_card .contact-info i {
  color: var(--teal);
  font-size: 0.9rem;
}

.presence_card .direction-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--light-teal);
  color: var(--navy);
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.presence_card .direction-btn:hover {
  background: var(--teal);
  color: white;
  transform: translateX(5px);
}

.presence_card .direction-btn i {
  font-size: 0.8rem;
}

/* Map Section */
.presence_map_section {
  padding: 60px 0;
  background: var(--light-blue);
}

.presence_map_header {
  text-align: center;
  margin-bottom: 40px;
}

.presence_map_header h3 {
  font-size: 2rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.presence_map_header p {
  font-size: 1rem;
  color: var(--muted);
}

.map_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map_wrapper {
  height: 450px;
  width: 100%;
}

.map_wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map_locations_list {
  padding: 30px;
  background: white;
}

.map_locations_list h4 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-teal);
}

.location_items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

.location_items::-webkit-scrollbar {
  width: 5px;
}

.location_items::-webkit-scrollbar-track {
  background: var(--light-blue);
  border-radius: 10px;
}

.location_items::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 10px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: var(--light-blue);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.location-item:hover {
  background: white;
  border-color: var(--teal);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 166, 166, 0.1);
}

.location-item.active {
  background: var(--teal);
  border-color: var(--teal);
}

.location-item.active i,
.location-item.active .location-info h4,
.location-item.active .location-info p {
  color: white;
}

.location-item i {
  color: var(--teal);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.location-info h4 {
  font-size: 1rem;
  color: var(--dark-navy);
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.location-info p {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

/* Stats Section */
.presence_stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy), var(--dark-navy));
  color: white;
}

.stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat_item {
  padding: 20px;
}

.stat_item h3 {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 5px;
}

.stat_item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design for Location Pages */
@media (max-width: 992px) {
  .presence_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map_container {
    grid-template-columns: 1fr;
  }
  
  .map_wrapper {
    height: 350px;
  }
  
  .stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .presence_grid {
    grid-template-columns: 1fr;
  }
  
  .presence_header h2 {
    font-size: 2rem;
  }
  
  .stats_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .presence_card {
    padding: 20px;
  }
  
  .location-item {
    padding: 10px;
  }
  
  .map_wrapper {
    height: 300px;
  }
}

/* Franchise Page Specific Styles (if needed) */
.franchise_features {
  padding: 60px 0;
  background: var(--bg);
}

.franchise_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.franchise_card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.franchise_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 166, 166, 0.15);
}

.franchise_icon {
  width: 70px;
  height: 70px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.franchise_icon i {
  font-size: 1.8rem;
  color: var(--teal);
}

.franchise_card h3 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.franchise_card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Our Story Page Specific Styles */
.story_timeline {
  padding: 60px 0;
  background: var(--bg);
}

.timeline_item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.timeline_year {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  text-align: right;
}

.timeline_content {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.timeline_content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
}

.timeline_content h3 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.timeline_content p {
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive for Story page */
@media (max-width: 768px) {
  .timeline_item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .timeline_year {
    text-align: left;
  }
  
  .timeline_content::before {
    left: 20px;
    top: -10px;
  }
}