/* css/style.css */
/* Professional doctor/medical color combination */
:root {
  --navy: #00587A;        /* Deep medical blue */
  --teal: #00A6A6;        /* Soft healthcare teal */
  --accent: #F4C430;      /* Gentle golden accent (call-to-action) */
  --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.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
.container { width: 96%; 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: 14px;
  letter-spacing: 0.2px;
  padding: 8px 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: 20px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 13px;
}
.topbar a:hover {
  color: var(--accent);
}
.topbar .social { 
  opacity: 0.95;
  font-weight: 500;
}

/* Nav Area */
.nav-wrap {
  padding: 10px 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: 65px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.sticky .brand .logo img {
  height: 50px;
}

/* Improved Hamburger Button */
.nav-toggle {
  background: none;
  border: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  z-index: 2000;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--light-blue);
}

.nav-toggle .hamburger {
  width: 24px;
  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: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before { 
  top: -8px; 
  transform-origin: left center;
}

.nav-toggle .hamburger::after { 
  top: 8px; 
  transform-origin: left center;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: -2px;
  left: 4px;
  width: 26px;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 2px;
  left: 4px;
  width: 26px;
}

/* Improved Mobile Navigation */
.main-nav { 
  display: flex; 
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  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: 10px 25px;
  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: 60px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer h4 {
  color: white;
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}
.site-footer a {
  color: #DCEEEF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer a:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form button {
  padding: 12px 25px;
  border-radius: 6px;
  border: 0;
  background: var(--accent);
  color: #0B1324;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #E3B020;
  transform: translateY(-2px);
}
.social-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-row a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.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: 12px;
  position: relative;
  padding-left: 15px;
}
.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: 20px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Full Screen Hero Section */
.hero_section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  margin-top: 20px; /* Added margin-top as requested */
}

.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: var(--overlay);
  z-index: 2;
}

.slide_caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  z-index: 3;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 20px;
}

.hero_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero_text {
  max-width: 650px;
  text-align: left;
}

.hero_title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}

.hero_subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero_buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero_stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat_item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat_item h3 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 700;
}

.stat_item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.1rem;
}

.hero_badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero_badge i {
  color: var(--accent);
  font-size: 1.4rem;
}

.hero_badge span {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

.gallery_dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  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(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  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: 30px;
}

.gallery_arrow.next {
  right: 30px;
}

.gallery_arrow i {
  font-size: 1.4rem;
}

.scroll_indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  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(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Button Styles */
.btn_primary, .btn_secondary, .btn_outline, .btn_light, .btn_consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.btn_primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.2);
}

.btn_primary:hover {
  background: #028E8E;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.3);
}

.btn_secondary {
  background: var(--accent);
  color: var(--dark-navy);
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
}

.btn_secondary:hover {
  background: #E3B020;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px 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(-3px);
}

.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(-3px);
}

.btn_consult {
  background: var(--accent);
  color: var(--dark-navy);
  padding: 10px 25px;
  font-size: 0.9rem;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(244, 196, 48, 0.2);
}

.btn_consult:hover {
  background: #E3B020;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
}

/* About Section */
.about_section {
  padding: 100px 0;
  background: var(--bg);
}

.section_header {
  text-align: center;
  margin-bottom: 4rem;
}

.section_label {
  display: inline-block;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding: 5px 15px;
  background: var(--light-teal);
  border-radius: 20px;
}

.section_title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
  position: relative;
  display: inline-block;
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--teal);
}

.section_subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.8;
}

.about_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.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: 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.experience_badge span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience_badge p {
  margin: 5px 0 0;
  font-weight: 500;
  font-size: 0.9rem;
}

.about_text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-navy);
}

.about_features {
  margin: 30px 0;
}

.feature_item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.feature_icon {
  width: 60px;
  height: 60px;
  background: var(--light-teal);
  border-radius: 12px;
  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(-5px);
}

.feature_item:hover .feature_icon i {
  color: white;
}

.feature_icon i {
  font-size: 1.5rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.feature_text h4 {
  margin-bottom: 8px;
  color: var(--dark-navy);
  font-size: 1.2rem;
}

.feature_text p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Diseases & Conditions Section */
.diseases_section {
  padding: 100px 0;
  background: var(--light-blue);
}

.diseases_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.disease_card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  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: 4px;
  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(-10px);
  box-shadow: 0 20px 40px rgba(0, 88, 122, 0.15);
  background: var(--bg);
}

.disease_icon {
  width: 70px;
  height: 70px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  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.8rem;
  color: var(--teal);
  transition: all 0.4s ease;
}

.disease_card:hover .disease_icon i {
  color: white;
}

.disease_content h4 {
  margin-bottom: 15px;
  color: var(--dark-navy);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.disease_card:hover .disease_content h4 {
  color: var(--teal);
}

.disease_content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.disease_symptoms {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.disease_symptoms li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.95rem;
}

.disease_symptoms i {
  color: var(--teal);
  font-size: 0.8rem;
}

/* Products Section */
.products_section {
  padding: 100px 0;
  background: var(--bg);
}

.product_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.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(-10px);
  box-shadow: 0 20px 40px rgba(0, 88, 122, 0.15);
}

.product_image {
  position: relative;
  height: 250px;
  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: 20px;
  left: 20px;
  background: var(--teal);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.product_content {
  padding: 30px;
}

.product_content h4 {
  margin-bottom: 15px;
  color: var(--dark-navy);
  font-size: 1.3rem;
}

.product_content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product_features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.95rem;
}

.product_features i {
  color: var(--teal);
}

.section_cta {
  text-align: center;
}

/* Services We Offer Section (8 cards) */
.services_offer_section {
  padding: 100px 0;
  background: var(--light-blue);
}

.services_offer_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service_offer_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;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
}

.service_offer_card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px 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: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), #028E8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service_offer_card:hover .service_offer_icon {
  transform: rotateY(180deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent), #E3B020);
}

.service_offer_icon i {
  font-size: 2rem;
  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: 15px;
  color: var(--dark-navy);
  font-size: 1.2rem;
  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.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service_offer_features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  width: 100%;
}

.service_offer_features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 5px 0;
}

.service_offer_features i {
  color: var(--accent);
  flex-shrink: 0;
}

/* Why Choose Us */
.why_section {
  padding: 80px 0;
  background: var(--bg);
}

.why_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why_card {
  background: white;
  padding: 30px 20px;
  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(-5px);
  box-shadow: 0 15px 30px rgba(0, 88, 122, 0.15);
}

.why_icon {
  width: 60px;
  height: 60px;
  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);
}

.why_icon i {
  font-size: 1.5rem;
  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.1rem;
  font-weight: 600;
}

.why_card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* CTA Banner */
.cta_banner {
  padding: 100px 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.8rem;
  margin-bottom: 1.5rem;
}

.cta_content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials_section {
  padding: 100px 0;
  background: var(--light-blue);
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial_card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.testimonial_card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 15px 30px rgba(0, 166, 166, 0.1);
}

.testimonial_content p {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
  line-height: 1.8;
}

.testimonial_content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial_author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.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.5rem;
  color: var(--teal);
}

.author_info h5 {
  margin-bottom: 5px;
  color: var(--dark-navy);
  font-size: 1.1rem;
}

.author_info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Contact Section */
.contact_section {
  padding: 100px 0;
  background: var(--bg);
}

.contact_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact_details {
  margin-top: 40px;
}

.contact_item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact_icon {
  width: 60px;
  height: 60px;
  background: var(--light-teal);
  border-radius: 12px;
  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.5rem;
  color: var(--teal);
  transition: all 0.3s ease;
}

.contact_text h4 {
  margin-bottom: 8px;
  color: var(--dark-navy);
  font-size: 1.1rem;
}

.contact_text p, .contact_text a {
  color: var(--muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.6;
}

.contact_text a:hover {
  color: var(--teal);
}

.contact_form_wrapper {
  background: white;
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form_group {
  margin-bottom: 25px;
}

.form_group input, .form_group select, .form_group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  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: 3rem;
  }
  
  .diseases_grid,
  .services_offer_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .product_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero_title {
    font-size: 2.5rem;
  }
  
  .hero_subtitle {
    font-size: 1.1rem;
  }
  
  .diseases_grid,
  .services_offer_grid,
  .why_grid,
  .testimonials_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact_content {
    gap: 40px;
  }
}

@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: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 100px 40px 40px;
    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: 15px 0;
    font-size: 18px;
    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: 20px;
    text-align: center;
    padding: 15px;
    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: 600px;
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero_title {
    font-size: 2.2rem;
  }
  
  .hero_subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero_buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .hero_stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
  }
  
  .gallery_slide {
    flex: 0 0 100%;
  }
  
  .gallery_track {
    width: 800%;
  }
  
  .gallery_arrow {
    width: 40px;
    height: 40px;
  }
  
  .gallery_arrow.prev {
    left: 15px;
  }
  
  .gallery_arrow.next {
    right: 15px;
  }
  
  .hero_badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    align-self: flex-start;
  }
  
  /* General Mobile Styles */
  .section_title {
    font-size: 2rem;
  }
  
  .about_content,
  .contact_content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .diseases_grid,
  .services_offer_grid,
  .product_grid,
  .why_grid,
  .testimonials_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .disease_card,
  .service_offer_card {
    padding: 25px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact_form_wrapper {
    padding: 30px 20px;
  }
  
  .cta_content h3 {
    font-size: 2rem;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero_title {
    font-size: 1.8rem;
  }
  
  .hero_subtitle {
    font-size: 0.95rem;
  }
  
  .gallery_arrow {
    width: 35px;
    height: 35px;
  }
  
  .slide_caption {
    font-size: 0.9rem;
    bottom: 20px;
  }
  
  .hero_badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section_title {
    font-size: 1.8rem;
  }
  
  .stat_item h3 {
    font-size: 2.2rem;
  }
  
  .experience_badge {
    padding: 20px;
    right: 10px;
    bottom: -15px;
  }
  
  .experience_badge span {
    font-size: 1.8rem;
  }
  
  .disease_icon,
  .service_offer_icon {
    width: 60px;
    height: 60px;
  }
  
  .disease_icon i,
  .service_offer_icon i {
    font-size: 1.5rem;
  }
}

/* Animation for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  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.6s 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: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}