﻿:root {
  --primary-color: #009a4a; /*light green*/
  --primary-dark: #007a3a; /*dark green*/
  --danger-color: #ff6b6b; /*reddish pink*/
  --light-bg: #f8f9fa; /*whitish*/
  --accent-color: #f39c12;
  --card-color: #1e3a5f;
  --accent-gold: #d4af37;
  --hematology-color: #d32f2f;
  --neurology-color: #7b1fa2;
  --endocrine-color: #f39c12;
  --nephrology-color: #3498db;
  --gynecology-color: #e91e63;
  --pathology-color: #e67e22;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}

.pointer {
  cursor: pointer;
}

/*Top Bar*/
#topNav {
  /*.navbar {
      margin-top: 45px;
  }*/
}
#topNav .top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1099;
  transition: transform 0.3s ease;
  transform: translateY(0);
}
#topNav .top-bar.hidden {
  transform: translateY(-100%);
}
#topNav .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
#topNav .top-bar-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
}
#topNav .top-bar-contact a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
#topNav .top-bar-contact a:hover {
  opacity: 0.8;
}
#topNav .top-bar-contact i {
  font-size: 1rem;
}
#topNav .top-bar-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
#topNav .top-bar-icons a {
  color: white;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}
#topNav .top-bar-icons a:hover {
  opacity: 0.8;
}
#topNav .top-bar-icons .dropdown-menu li {
  width: 200px;
}
#topNav .top-bar-icons .dropdown-menu li a {
  color: #333;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}
#topNav .top-bar-icons .dropdown-menu li a:hover {
  color: var(--primary-color);
  opacity: 0.8;
}
@media (max-width: 768px) {
  #topNav .top-bar {
    padding: 0.5rem 0;
  }
  #topNav .top-bar-content {
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
  }
  #topNav .top-bar-contact {
    gap: 1.2rem;
    flex: none;
    width: auto;
  }
  #topNav .top-bar-contact a {
    font-size: 0.85rem;
  }
  #topNav .top-bar-contact span {
    display: none;
  }
  #topNav .top-bar-contact i {
    font-size: 0.9rem;
  }
  #topNav .top-bar-icons {
    gap: 1.2rem;
    justify-content: center;
    width: auto;
  }
  #topNav .top-bar-icons a {
    font-size: 0.9rem;
  }
  #topNav .navbar {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  #topNav .top-bar {
    padding: 0.4rem 0;
  }
  #topNav .top-bar-content {
    gap: 0.8rem;
  }
  #topNav .top-bar-contact {
    gap: 0.8rem;
  }
  #topNav .top-bar-contact a {
    font-size: 0.75rem;
  }
  #topNav .top-bar-contact i {
    font-size: 0.8rem;
  }
  #topNav .top-bar-icons {
    gap: 0.8rem;
  }
  #topNav .top-bar-icons a {
    font-size: 0.85rem;
  }
  #topNav .navbar {
    margin-top: 36px;
  }
}

.navbar {
  margin-top: 45px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: var(--light-bg);
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--light-bg);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color) !important;
}
.navbar-brand i {
  margin-right: 0.5rem;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

.modal-lg .show {
  z-index: 10000;
}

footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 80px;
}
footer h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 0.75rem;
}
footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer ul li a:hover {
  color: var(--primary-color);
}
footer .footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}
footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}
footer .social-links a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Alert Messages */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #f5c6cb;
}

/* Mobile Menu Animation */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
/* Dropdown Menu Styles */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#home {
  /* Hero Section */
  /* Services Section */
  /* Features Section */
  /* CTA Section */
  /* Testimonials Section */
  /* Footer */
  /* Responsive */
  /* Hero Section with Carousel */
  /* Carousel Controls Styling */
  /* Carousel Indicators */
  /* Animations */
}
#home .hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
#home .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#home .hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
#home .hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
#home .hero .btn-primary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid transparent;
}
#home .hero .btn-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
#home .hero .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#home .hero .btn-outline-light {
  color: white;
  border: 2px solid white;
}
#home .hero .btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
#home .services {
  padding: 10px 0;
  background-color: #ffffff;
}
#home .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#home .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#home .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#home .service-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#home .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 154, 74, 0.15);
  border-color: var(--primary-color);
}
#home .service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#home .service-card h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}
#home .service-card p {
  color: #666;
  font-size: 0.95rem;
}
#home .features {
  padding: 80px 0;
  background-color: var(--light-bg);
}
#home .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#home .feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
#home .feature-content h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#home .feature-content p {
  color: #666;
  margin: 0;
}
#home .cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}
#home .cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
#home .cta .btn-outline-light {
  padding: 0.75rem 2rem;
  border-width: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}
#home .cta .btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}
#home .testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}
#home .testimonial-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}
#home .testimonial-card p {
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}
#home .testimonial-author {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
#home .testimonial-role {
  color: var(--primary-color);
  font-size: 0.9rem;
}
#home .stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#home .carousel {
  height: 600px;
}
#home .carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#home .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 154, 74, 0.5);
  z-index: 1;
}
#home .carousel-inner {
  height: 600px;
}
#home .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#home .hero-text {
  animation: fadeInUp 1s ease-out;
  max-width: 800px;
}
#home .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}
#home .hero-text p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
#home .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.3s both;
}
#home .carousel-control-prev {
  width: 60px;
  height: 60px;
  background: rgba(0, 154, 74, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  left: 20px;
}
#home .carousel-control-prev:hover {
  background: rgb(0, 154, 74);
  transform: translateY(-50%) scale(1.1);
}
#home .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 154, 74, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  right: 20px;
}
#home .carousel-control-next:hover {
  background: rgb(0, 154, 74);
  transform: translateY(-50%) scale(1.1);
}
#home .carousel-control-prev-icon {
  filter: brightness(0) invert(1);
  width: 25px;
  height: 25px;
}
#home .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 25px;
  height: 25px;
}
#home .carousel-indicators {
  bottom: 30px;
}
#home .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  margin: 0 8px;
  transition: all 0.3s ease;
}
#home .carousel-indicators .active {
  background-color: white;
  width: 30px;
  border-radius: 10px;
}
#home .animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
#home .dropdown-menu {
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  animation: slideDown 0.3s ease-out;
}
#home .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.125em !important;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
#home .dropdown-item {
  padding: 0.75rem 1.5rem;
  color: #333 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
#home .dropdown-item i {
  margin-right: 0.75rem;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}
#home .dropdown-item:hover {
  background-color: #f0f0f0;
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
  padding-left: 1.8rem;
}
#home .dropdown-item.active {
  background-color: rgba(0, 154, 74, 0.1);
  color: var(--primary-color) !important;
}
#home .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e0e0e0;
}
#home .nav-link.dropdown-toggle::after {
  transition: transform 0.3s ease;
}
#home .nav-link.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
#home .about {
  padding: 80px 0;
  background-color: #ffffff;
}
#home .about-content h2 {
  display: table;
  margin: 0 auto;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}
#home .about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#home .about-content .btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#home .about-content .btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 154, 74, 0.3);
}
#home .about-content .btn i {
  margin-right: 0.5rem;
}
#home .about-intro {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
#home .about-features {
  margin-bottom: 2rem;
}
#home .about-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}
#home .about-feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
#home .about-feature-item h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
#home .about-feature-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}
#home .about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#home .about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#home .about-image:hover img {
  transform: scale(1.05);
}
#home .about-image:hover .about-image-overlay {
  transform: translateY(0);
}
#home .about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 154, 74, 0.9) 100%);
  padding: 2rem;
  color: white;
  text-align: center;
  transform: translateY(100px);
  transition: transform 0.3s ease;
}
#home .about-image-overlay .overlay-text {
  font-size: 1.2rem;
}
#home .about-image-overlay p {
  margin: 0;
}
#home .rounded-lg {
  border-radius: 12px;
}
#home .packages {
  padding: 10px 0;
  background-color: #ffffff;
}
#home .package-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#home .package-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#home .package-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.2);
  transform: scale(1.02);
}
#home .package-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}
#home .package-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 154, 74, 0.3);
}
#home .package-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 2px solid #e0e0e0;
}
#home .package-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#home .package-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
#home .package-price .currency {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}
#home .package-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
#home .package-features {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}
#home .package-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#home .package-features li {
  padding: 0.75rem 0;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
#home .package-features li:last-child {
  border-bottom: none;
}
#home .package-features i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#home .btn-package {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  margin: 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#home .btn-package:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.05);
}
#home .btn-primary-pkg {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
#home .btn-primary-pkg:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}
@media (max-width: 991.98px) {
  #home .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.4s ease-out forwards;
  }
  #home .navbar-collapse:not(.show) {
    display: none;
  }
  #home .navbar-collapse.collapsing {
    animation: slideOutRight 0.4s ease-in forwards;
  }
}
@media (max-width: 768px) {
  #home .hero h1 {
    font-size: 2rem;
  }
  #home .hero p {
    font-size: 1.1rem;
  }
  #home .hero .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }
  #home .section-title h2 {
    font-size: 2rem;
  }
  #home .cta h2 {
    font-size: 1.8rem;
  }
  #home .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #home .hero-text h1 {
    font-size: 1.8rem;
  }
  #home .hero-text p {
    font-size: 1rem;
  }
  #home .carousel-control-prev {
    width: 45px;
    height: 45px;
  }
  #home .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  #home .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  #home .about-content h2 {
    font-size: 2rem;
  }
  #home .about-image img {
    height: 300px;
  }
  #home .about {
    padding: 60px 0;
  }
  #home .package-card.featured {
    transform: scale(1);
  }
  #home .package-card.featured:hover {
    transform: translateY(-8px) scale(1);
  }
  #home .package-badge {
    top: 10px;
    right: -30px;
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
  }
  #home .package-price .amount {
    font-size: 2rem;
  }
  #home .package-features {
    padding: 1.5rem;
  }
  #home .btn-package {
    margin: 1rem;
  }
}
@media (max-width: 991px) {
  #home .dropdown-menu {
    background-color: var(--light-bg);
    border: 1px solid #e0e0e0;
  }
  #home .dropdown-item {
    padding: 0.6rem 1.5rem;
  }
  #home .dropdown-item:hover {
    background-color: white;
  }
}

#about .about-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #333;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#about .about-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#about .about-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
  color: #ffffff;
}
#about .about-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  color: #ffffff;
}
#about .about-content {
  padding: 80px 0;
}
#about .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#about .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#about .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#about .section-title p {
  font-size: 1.1rem;
  color: #ffffff;
}
#about .about-section {
  margin-bottom: 4rem;
}
#about .about-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#about .about-section img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#about .about-section img:hover {
  transform: scale(1.05);
}
#about .about-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
#about .about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#about .mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#about .mvv-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#about .mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 154, 74, 0.15);
}
#about .mvv-card i {
  font-size: 3rem;
  color: #666;
  margin-bottom: 1rem;
}
#about .mvv-card h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#about .mvv-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#about .mvv-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}
#about .mvv-card ul li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}
#about .mvv-card ul li:last-child {
  border-bottom: none;
}
#about .certificates-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin-top: 80px;
}
#about .certificates-section p {
  color: #333;
}
#about .certificate-carousel-wrapper {
  position: relative;
  padding: 30px 0;
}
#about .carousel {
  position: relative;
}
#about .carousel-inner {
  border-radius: 12px;
  background: white;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#about .carousel-item {
  display: none;
  padding: 20px 0;
}
#about .carousel-item.active {
  display: block;
}
#about .certificate-card {
  animation: fadeIn 0.5s ease-in-out;
}
#about .certificate-image-wrapper {
  text-align: center;
}
#about .certificate-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 154, 74, 0.2);
  transition: transform 0.3s ease;
}
#about .certificate-image-wrapper img:hover {
  transform: scale(1.05);
}
#about .certificate-content {
  padding-left: 30px;
}
#about .certificate-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
#about .certificate-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
#about .certificate-description {
  font-size: 0.95rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#about .certificate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about .certificate-list li {
  padding: 0.6rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#about .certificate-list i {
  color: #666;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#about .carousel-indicators {
  position: static;
  margin-top: 20px;
  justify-content: center;
}
#about .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-bg);
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#about .carousel-indicators .active {
  background-color: var(--primary-color);
  width: 12px;
}
#about .carousel-control-prev {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
#about .carousel-control-prev:hover {
  background-color: var(--primary-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
#about .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
#about .carousel-control-next:hover {
  background-color: var(--primary-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
#about .carousel-control-prev-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}
#about .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}
#about .achievements {
  padding: 80px 0;
}
#about .achievement-item {
  text-align: center;
  padding: 2rem;
}
#about .achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: #666;
  display: block;
  margin-bottom: 0.5rem;
}
#about .achievement-label {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}
#about .why-choose {
  background-color: var(--light-bg);
  padding: 80px 0;
}
#about .feature-list {
  list-style: none;
}
#about .feature-list li {
  padding: 1rem 0;
  font-size: 1.05rem;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}
#about .feature-list li:last-child {
  border-bottom: none;
}
#about .feature-list i {
  color: #666;
  margin-right: 1rem;
  font-size: 1.3rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #about .carousel-inner {
    padding: 20px;
  }
  #about .certificate-content {
    padding-left: 0;
    margin-top: 20px;
  }
  #about .certificate-content h3 {
    font-size: 1.4rem;
  }
  #about .certificate-subtitle {
    font-size: 0.9rem;
  }
  #about .certificate-description {
    font-size: 0.85rem;
  }
  #about .certificate-list li {
    font-size: 0.8rem;
  }
  #about .carousel-control-prev {
    width: 40px;
    height: 40px;
  }
  #about .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  #about .certificate-carousel .carousel-item {
    min-height: auto;
    padding: 2rem 0;
  }
  #about .certificate-carousel .carousel-control-prev {
    width: 40px;
    height: 40px;
  }
  #about .certificate-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  #about .certificate-info {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  #about .certificate-info h3 {
    font-size: 1.5rem;
  }
  #about .certificate-image {
    max-height: 300px;
  }
}

#contact .contact-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact .contact-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#contact .contact-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
#contact .contact-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#contact .contact-banner p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#contact .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}
#contact .section-title p {
  font-size: 1.1rem;
  color: white;
}
#contact .contact-info-section {
  padding: 80px 0;
}
#contact .contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#contact .contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#contact .contact-info-card i {
  font-size: 3rem;
  color: #666;
  margin-bottom: 1.5rem;
}
#contact .contact-info-card h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#contact .contact-info-card p {
  color: white;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
#contact .contact-info-card a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
#contact .contact-info-card a:hover {
  color: #ffffff;
}
#contact .contact-form-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
  color: #333;
  /* Section Title */
}
#contact .contact-form-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact .contact-form-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact .contact-form-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#contact .contact-form-section .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#contact .form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#contact .form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}
#contact .form-wrapper .submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.9rem 3rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}
#contact .form-group {
  margin-bottom: 1.5rem;
}
#contact .form-group label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}
#contact .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 154, 74, 0.15);
}
#contact .form-control::placeholder {
  color: #ccc;
}
#contact .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#contact .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 154, 74, 0.15);
}
#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
#contact .submit-btn {
  background-color: #ffffff;
  color: #333;
  border: none;
  padding: 0.9rem 3rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}
#contact .submit-btn:hover {
  background-color: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 154, 74, 0.3);
}
#contact .submit-btn:active {
  transform: translateY(0);
}
#contact .map-section {
  padding: 80px 0;
  color: #333;
  /* Section Title */
}
#contact .map-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact .map-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact .map-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#contact .map-section .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#contact .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 500px;
}
#contact .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#contact .office-hours-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #333;
  padding: 80px 0;
  margin: 80px 0;
}
#contact .hours-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  color: white;
}
#contact .hours-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#contact .hours-card h4 i {
  font-size: 1.5rem;
}
#contact .hours-list {
  list-style: none;
  padding: 0;
}
#contact .hours-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#contact .hours-list li:last-child {
  border-bottom: none;
}
#contact .hours-list span {
  font-weight: 600;
}
#contact .services-quick-section {
  padding: 80px 0;
  /* Section Title */
}
#contact .services-quick-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact .services-quick-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact .services-quick-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#contact .services-quick-section .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#contact .service-quick-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#contact .service-quick-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#contact .service-quick-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#contact .service-quick-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
#contact .service-quick-card p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}
#contact .faq-section {
  padding: 80px 0;
  /* Section Title */
}
#contact .faq-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact .faq-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact .faq-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#contact .faq-section .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#contact .accordion-button {
  background-color: var(--light-bg);
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#contact .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: #333;
  box-shadow: none;
}
#contact .accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

#privilegeCard {
  /* Banner Section */
  /* Section Title */
  /* Main Content */
  /* Card Display Section */
  /* Tab Section */
  /* Login Form */
  /* Application Form */
  /* Benefits Section */
  /* Features Grid */
  /* CTA Section */
}
#privilegeCard .privilege-banner {
  background: linear-gradient(135deg, var(--card-color) 0%, #2c5aa0 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#privilegeCard .privilege-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}
#privilegeCard .privilege-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
}
#privilegeCard .privilege-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#privilegeCard .privilege-banner p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#privilegeCard .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#privilegeCard .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#privilegeCard .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#privilegeCard .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#privilegeCard .service-content {
  padding: 80px 0;
}
#privilegeCard .card-display-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}
#privilegeCard .privilege-card-display {
  perspective: 1000px;
  margin-bottom: 3rem;
}
#privilegeCard .card-3d {
  width: 100%;
  max-width: 400px;
  height: 280px;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  cursor: pointer;
}
#privilegeCard .card-3d:hover {
  transform: rotateY(180deg);
}
#privilegeCard .card-front, #privilegeCard .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
#privilegeCard .card-front {
  background: linear-gradient(135deg, var(--card-color) 0%, #2c5aa0 100%);
  color: white;
  position: relative;
}
#privilegeCard .card-front::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}
#privilegeCard .card-front::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
}
#privilegeCard .card-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
#privilegeCard .card-logo i {
  font-size: 2rem;
  color: var(--accent-gold);
}
#privilegeCard .card-logo h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
#privilegeCard .card-member-info {
  position: relative;
  z-index: 1;
}
#privilegeCard .card-member-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#privilegeCard .card-member-id {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}
#privilegeCard .card-chip {
  display: inline-block;
  width: 50px;
  height: 40px;
  background-color: var(--accent-gold);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
#privilegeCard .card-back {
  background: linear-gradient(135deg, #1a2a4a 0%, #2c3e50 100%);
  color: white;
  transform: rotateY(180deg);
  justify-content: flex-end;
}
#privilegeCard .card-cvv {
  text-align: right;
}
#privilegeCard .card-cvv-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
#privilegeCard .card-cvv-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#privilegeCard .tab-section {
  padding: 80px 0;
}
#privilegeCard .nav-tabs {
  border-bottom: 3px solid #e0e0e0;
  margin-bottom: 3rem;
}
#privilegeCard .nav-tabs .nav-link {
  color: #333;
  font-weight: 600;
  border: none;
  padding: 1rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}
#privilegeCard .nav-tabs .nav-link:hover {
  color: var(--primary-color);
}
#privilegeCard .nav-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: transparent;
  border-bottom: 3px solid var(--primary-color);
}
#privilegeCard .login-form-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}
#privilegeCard .form-group {
  margin-bottom: 1.5rem;
}
#privilegeCard .form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}
#privilegeCard .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#privilegeCard .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 154, 74, 0.25);
}
#privilegeCard .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
#privilegeCard .form-checkbox input[type=checkbox] {
  cursor: pointer;
}
#privilegeCard .form-checkbox label {
  margin: 0;
  cursor: pointer;
}
#privilegeCard .btn-login {
  width: 100%;
  padding: 0.85rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
#privilegeCard .btn-login:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 154, 74, 0.3);
}
#privilegeCard .login-footer {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}
#privilegeCard .login-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
#privilegeCard .login-footer a:hover {
  text-decoration: underline;
}
#privilegeCard .apply-form-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}
#privilegeCard .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
#privilegeCard .form-row.full {
  grid-template-columns: 1fr;
}
#privilegeCard .btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
#privilegeCard .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 154, 74, 0.3);
}
#privilegeCard .benefits-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}
#privilegeCard .benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#privilegeCard .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#privilegeCard .benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
#privilegeCard .benefit-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
#privilegeCard .benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
#privilegeCard .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#privilegeCard .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
#privilegeCard .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#privilegeCard .feature-content h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#privilegeCard .feature-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}
#privilegeCard .privilege-cta {
  background: linear-gradient(135deg, var(--card-color) 0%, #2c5aa0 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#privilegeCard .privilege-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#privilegeCard .privilege-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#privilegeCard .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#privilegeCard .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid white;
}
#privilegeCard .btn-cta-primary {
  background-color: white;
  color: var(--card-color);
}
#privilegeCard .btn-cta-primary:hover {
  background-color: transparent;
  color: white;
}
#privilegeCard .btn-cta-secondary {
  background-color: transparent;
  color: white;
}
#privilegeCard .btn-cta-secondary:hover {
  background-color: white;
  color: var(--card-color);
}
@media (max-width: 768px) {
  #privilegeCard .privilege-banner h1 {
    font-size: 2rem;
  }
  #privilegeCard .privilege-banner p {
    font-size: 1rem;
  }
  #privilegeCard .section-title h2 {
    font-size: 2rem;
  }
  #privilegeCard .card-3d {
    max-width: 100%;
    height: 240px;
  }
  #privilegeCard .form-row {
    grid-template-columns: 1fr;
  }
  #privilegeCard .cta-buttons {
    flex-direction: column;
  }
  #privilegeCard .btn-cta {
    width: 100%;
  }
  #privilegeCard .features-grid {
    grid-template-columns: 1fr;
  }
  #privilegeCard .nav-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  #privilegeCard .card-front {
    padding: 1.5rem;
  }
  #privilegeCard .card-back {
    padding: 1.5rem;
  }
}

/*Services - Oncology*/
#oncology {
  /* Responsive */
}
#oncology .oncology-banner {
  background: #009a4a;
  color: #333;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#oncology .oncology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#oncology .oncology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
  color: white;
}
#oncology .oncology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  color: white;
}
#oncology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#oncology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#oncology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}
#oncology .section-title p {
  font-size: 1.1rem;
  color: #333;
}
#oncology .service-content {
  padding: 80px 0;
}
#oncology .overview-section {
  margin-bottom: 80px;
}
#oncology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#oncology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
#oncology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#oncology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#oncology .overview-image img:hover {
  transform: scale(1.05);
}
#oncology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#oncology .info-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#oncology .info-card i {
  font-size: 3rem;
  color: #666;
  margin-bottom: 1rem;
}
#oncology .info-card h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#oncology .info-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#oncology .cancer-types-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#oncology .cancer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#oncology .cancer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#oncology .cancer-card-header {
  background: linear-gradient(135deg, var(--danger-color) 0%, #e85555 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#oncology .cancer-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#oncology .cancer-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#oncology .cancer-card-body {
  padding: 2rem;
}
#oncology .cancer-card-body p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#oncology .cancer-tests {
  list-style: none;
  padding: 0;
}
#oncology .cancer-tests li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#oncology .cancer-tests i {
  color: #666;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#oncology .screening-tests-section {
  padding: 80px 0;
}
#oncology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#oncology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#oncology .test-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#oncology .test-card i {
  font-size: 2.5rem;
  color: #666;
  margin-bottom: 1rem;
}
#oncology .test-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#oncology .test-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#oncology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: #666;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#oncology .advantages-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#oncology .advantage-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#oncology .advantage-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--danger-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5rem;
}
#oncology .advantage-content h4 {
  font-weight: 700;
  color: var(---danger-color);
  margin-bottom: 0.5rem;
}
#oncology .advantage-content p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#oncology .oncology-cta {
  background: #009a4a;
  color: #333;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#oncology .oncology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}
#oncology .oncology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}
#oncology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#oncology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#oncology .btn-cta-primary {
  background-color: var(--light-bg);
  color: var(---danger-color);
  border: 2px solid white;
}
#oncology .btn-cta-primary:hover {
  background-color: white;
  color: #333;
}
#oncology .btn-cta-secondary {
  background-color: white;
  color: #333;
  border: 2px solid white;
}
#oncology .btn-cta-secondary:hover {
  background-color: var(--light-bg);
  color: #ccc;
}
#oncology .faq-section {
  padding: 80px 0;
}
#oncology .accordion-button {
  background-color: var(--light-bg);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#oncology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: #666;
  box-shadow: none;
}
#oncology .accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #oncology body {
    padding-top: 70px;
  }
  #oncology .oncology-banner h1 {
    font-size: 2rem;
  }
  #oncology .oncology-banner p {
    font-size: 1.1rem;
  }
  #oncology .section-title h2 {
    font-size: 2rem;
  }
  #oncology .overview-text h3 {
    font-size: 1.5rem;
  }
  #oncology .oncology-cta h3 {
    font-size: 1.6rem;
  }
  #oncology .cta-buttons {
    flex-direction: column;
  }
  #oncology .btn-cta {
    width: 100%;
  }
  #oncology .test-grid {
    grid-template-columns: 1fr;
  }
  #oncology .advantage-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

#cardiology .cardiology-banner {
  background: linear-gradient(135deg, var(--danger-color) 0%, #c0392b 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cardiology .cardiology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#cardiology .cardiology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#cardiology .cardiology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#cardiology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#cardiology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#cardiology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #2c2c2c;
  border-radius: 2px;
}
#cardiology .section-title p {
  font-size: 1.1rem;
  color: white;
}
#cardiology .service-content {
  padding: 80px 0;
}
#cardiology .overview-section {
  margin-bottom: 80px;
}
#cardiology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#cardiology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#cardiology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#cardiology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#cardiology .overview-image img:hover {
  transform: scale(1.05);
}
#cardiology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#cardiology .info-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#cardiology .info-card i {
  font-size: 3rem;
  color: var(--danger-color);
  margin-bottom: 1rem;
}
#cardiology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#cardiology .info-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#cardiology .cardiac-conditions-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#cardiology .condition-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#cardiology .condition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#cardiology .condition-card-header {
  background: linear-gradient(135deg, var(--danger-color) 0%, #c0392b 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#cardiology .condition-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#cardiology .condition-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#cardiology .condition-card-body {
  padding: 2rem;
}
#cardiology .condition-card-body p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#cardiology .condition-tests {
  list-style: none;
  padding: 0;
}
#cardiology .condition-tests li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#cardiology .condition-tests i {
  color: #666;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#cardiology .diagnostic-tests-section {
  padding: 80px 0;
}
#cardiology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#cardiology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#cardiology .test-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
  transform: translateY(-8px);
}
#cardiology .test-card i {
  font-size: 2.5rem;
  color: var(---danger-color);
  margin-bottom: 1rem;
}
#cardiology .test-card h5 {
  font-weight: 700;
  color: var(---danger-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#cardiology .test-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#cardiology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(---danger-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#cardiology .risk-factors-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#cardiology .risk-factors-section .section-title p {
  color: #333;
}
#cardiology .risk-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#cardiology .risk-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--danger-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#cardiology .risk-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#cardiology .risk-content p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#cardiology .cardiology-cta {
  background: linear-gradient(135deg, var(--danger-color) 0%, #c0392b 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#cardiology .cardiology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#cardiology .cardiology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#cardiology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#cardiology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#cardiology .btn-cta-primary {
  background-color: white;
  color: #666;
  border: 2px solid white;
}
#cardiology .btn-cta-primary:hover {
  background-color: #2c2c2c;
  color: #333;
}
#cardiology .btn-cta-secondary {
  background-color: #2c2c2c;
  color: #333;
  border: 2px solid white;
}
#cardiology .btn-cta-secondary:hover {
  background-color: white;
  color: #666;
}
#cardiology .prevention-section {
  padding: 80px 0;
}
#cardiology .prevention-section .section-title p {
  color: #333;
}
#cardiology .prevention-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#cardiology .prevention-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#cardiology .prevention-card i {
  font-size: 2.5rem;
  color: var(---danger-color);
  margin-bottom: 1rem;
}
#cardiology .prevention-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#cardiology .prevention-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
#cardiology .faq-section {
  padding: 80px 0;
}
#cardiology .accordion .accordion-header {
  background-color: var(--light-bg) !important;
}
#cardiology .accordion .accordion-header .accordion-button {
  background-color: var(--light-bg);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#cardiology .accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #666;
  box-shadow: none;
}
#cardiology .accordion .accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

#hematology .hematology-banner {
  background: linear-gradient(135deg, var(--hematology-color) 0%, #b71c1c 100%);
  color: #333;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hematology .hematology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#hematology .hematology-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
#hematology .hematology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
  color: white;
}
#hematology .hematology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  color: white;
}
#hematology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#hematology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#hematology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #2c2c2c;
  border-radius: 2px;
}
#hematology .section-title p {
  font-size: 1.1rem;
  color: #333;
}
#hematology .service-content {
  padding: 80px 0;
}
#hematology .overview-section {
  margin-bottom: 80px;
}
#hematology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#hematology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#hematology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#hematology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#hematology .overview-image img:hover {
  transform: scale(1.05);
}
#hematology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#hematology .info-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
  transform: translateY(-8px);
}
#hematology .info-card i {
  font-size: 3rem;
  color: #666;
  margin-bottom: 1rem;
}
#hematology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#hematology .info-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#hematology .blood-disorders-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#hematology .disorder-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#hematology .disorder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#hematology .disorder-card-header {
  background: linear-gradient(135deg, var(--hematology-color) 0%, #b71c1c 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#hematology .disorder-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#hematology .disorder-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#hematology .disorder-card-body {
  padding: 2rem;
}
#hematology .disorder-card-body p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#hematology .disorder-tests {
  list-style: none;
  padding: 0;
}
#hematology .disorder-tests li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#hematology .disorder-tests i {
  color: #666;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#hematology .blood-tests-section {
  padding: 80px 0;
}
#hematology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#hematology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#hematology .test-card:hover {
  border-color: var(--hematology-color);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
  transform: translateY(-8px);
}
#hematology .test-card i {
  font-size: 2.5rem;
  color: var(--hematology-color);
  margin-bottom: 1rem;
}
#hematology .test-card h5 {
  font-weight: 700;
  color: var(--hematology-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#hematology .test-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#hematology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--hematology-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#hematology .symptoms-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#hematology .symptom-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#hematology .symptom-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5rem;
}
#hematology .symptom-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#hematology .symptom-content p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#hematology .blood-health-section {
  padding: 80px 0;
}
#hematology .health-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#hematology .health-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#hematology .health-card i {
  font-size: 2.5rem;
  color: var(--hematology-color);
  margin-bottom: 1rem;
}
#hematology .health-card h4 {
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
#hematology .health-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
#hematology .cbc-section {
  background: linear-gradient(135deg, var(--hematology-color) 0%, #b71c1c 100%);
  color: white;
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 12px;
}
#hematology .cbc-section h2 {
  color: white;
}
#hematology .cbc-section .section-title h2::after {
  background-color: white;
}
#hematology .cbc-section .section-title p {
  color: white;
}
#hematology .cbc-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  text-align: center;
}
#hematology .cbc-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#hematology .cbc-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#hematology .cbc-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
#hematology .hematology-cta {
  background: linear-gradient(135deg, var(--hematology-color) 0%, #b71c1c 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#hematology .hematology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#hematology .hematology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#hematology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#hematology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#hematology .btn-cta-primary {
  background-color: white;
  color: #666;
  border: 2px solid white;
}
#hematology .btn-cta-primary:hover {
  background-color: #2c2c2c;
  color: #333;
}
#hematology .btn-cta-secondary {
  background-color: white;
  color: #333;
  border: 2px solid white;
}
#hematology .btn-cta-secondary:hover {
  background-color: #2c2c2c;
  color: #666;
}
#hematology .faq-section {
  padding: 80px 0;
}
#hematology .accordion-button {
  background-color: var(--light-bg);
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#hematology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: #666;
  box-shadow: none;
}
#hematology .accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

#neurology .neurology-banner {
  background: linear-gradient(135deg, var(--neurology-color) 0%, #512da8 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#neurology .neurology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#neurology .neurology-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
#neurology .neurology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#neurology .neurology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#neurology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#neurology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#neurology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}
#neurology .section-title p {
  font-size: 1.1rem;
  color: #333;
}
#neurology .service-content {
  padding: 80px 0;
}
#neurology .overview-section {
  margin-bottom: 80px;
}
#neurology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#neurology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#neurology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#neurology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#neurology .overview-image img:hover {
  transform: scale(1.05);
}
#neurology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#neurology .info-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 10px 30px rgba(123, 31, 162, 0.15);
  transform: translateY(-8px);
}
#neurology .info-card i {
  font-size: 3rem;
  color: #666;
  margin-bottom: 1rem;
}
#neurology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#neurology .info-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#neurology .neurological-conditions-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#neurology .condition-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#neurology .condition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#neurology .condition-card-header {
  background: linear-gradient(135deg, var(--neurology-color) 0%, #512da8 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#neurology .condition-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#neurology .condition-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#neurology .condition-card-body {
  padding: 2rem;
}
#neurology .condition-card-body p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#neurology .condition-tests {
  list-style: none;
  padding: 0;
}
#neurology .condition-tests li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#neurology .condition-tests i {
  color: #333;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#neurology .diagnostic-tests-section {
  padding: 80px 0;
}
#neurology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#neurology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#neurology .test-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(123, 31, 162, 0.15);
  transform: translateY(-8px);
}
#neurology .test-card i {
  font-size: 2.5rem;
  color: #666;
  margin-bottom: 1rem;
}
#neurology .test-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#neurology .test-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#neurology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: #666;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#neurology .brain-spine-section {
  background: linear-gradient(135deg, var(--neurology-color) 0%, #512da8 100%);
  color: white;
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 12px;
}
#neurology .brain-spine-section h2 {
  color: white;
}
#neurology .brain-spine-section .section-title h2::after {
  background-color: var(--light-bg);
}
#neurology .brain-spine-section .section-title p {
  color: #ccc;
}
#neurology .disorder-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  text-align: center;
}
#neurology .disorder-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#neurology .disorder-item h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#neurology .disorder-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
#neurology .symptoms-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#neurology .symptom-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#neurology .symptom-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--neurology-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#neurology .symptom-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#neurology .symptom-content p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#neurology .brain-health-section {
  padding: 80px 0;
}
#neurology .health-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#neurology .health-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#neurology .health-card i {
  font-size: 2.5rem;
  color: var(--neurology-color);
  margin-bottom: 1rem;
}
#neurology .health-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#neurology .health-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
#neurology .neurology-cta {
  background: linear-gradient(135deg, var(--neurology-color) 0%, #512da8 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#neurology .neurology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#neurology .neurology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#neurology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#neurology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#neurology .btn-cta-primary {
  background-color: var(--light-bg);
  color: #666;
  border: 2px solid white;
}
#neurology .btn-cta-primary:hover {
  background-color: #2c2c2c;
  color: #333;
}
#neurology .btn-cta-secondary {
  background-color: #2c2c2c;
  color: #333;
  border: 2px solid white;
}
#neurology .btn-cta-secondary:hover {
  background-color: var(--light-bg);
  color: #666;
}
#neurology .faq-section {
  padding: 80px 0;
}
#neurology .accordion-button {
  background-color: var(--light-bg);
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#neurology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: #666;
  box-shadow: none;
}
#neurology .accordion-body {
  color: var(--neurology-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

#endocrinology .endocrinology-banner {
  background: linear-gradient(135deg, var(--endocrine-color) 0%, #e67e22 100%);
  color: #333;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#endocrinology .endocrinology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#endocrinology .endocrinology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#endocrinology .endocrinology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#endocrinology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#endocrinology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#endocrinology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}
#endocrinology .section-title p {
  font-size: 1.1rem;
  color: #333;
}
#endocrinology .service-content {
  padding: 80px 0;
}
#endocrinology .overview-section {
  margin-bottom: 80px;
}
#endocrinology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#endocrinology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#endocrinology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
#endocrinology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#endocrinology .overview-image img:hover {
  transform: scale(1.05);
}
#endocrinology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#endocrinology .info-card:hover {
  border-color: var(--endocrine-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.15);
  transform: translateY(-8px);
}
#endocrinology .info-card i {
  font-size: 3rem;
  color: var(--endocrine-color);
  margin-bottom: 1rem;
}
#endocrinology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#endocrinology .info-card p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#endocrinology .endocrine-disorders-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#endocrinology .disorder-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#endocrinology .disorder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#endocrinology .disorder-card-header {
  background: linear-gradient(135deg, var(--endocrine-color) 0%, #e67e22 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#endocrinology .disorder-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: white !important;
}
#endocrinology .disorder-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white !important;
}
#endocrinology .disorder-card-body {
  padding: 2rem;
}
#endocrinology .disorder-card-body p {
  color: white;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#endocrinology .disorder-tests {
  list-style: none;
  padding: 0;
}
#endocrinology .disorder-tests li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#endocrinology .disorder-tests i {
  color: #666;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#endocrinology .hormone-tests-section {
  padding: 80px 0;
}
#endocrinology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#endocrinology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#endocrinology .test-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.15);
  transform: translateY(-8px);
}
#endocrinology .test-card i {
  font-size: 2.5rem;
  color: var(--endocrine-color);
  margin-bottom: 1rem;
}
#endocrinology .test-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#endocrinology .test-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#endocrinology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--endocrine-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#endocrinology .symptoms-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#endocrinology .symptom-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#endocrinology .symptom-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--endocrine-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#endocrinology .symptom-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#endocrinology .symptom-content p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#endocrinology .management-section {
  padding: 80px 0;
}
#endocrinology .management-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#endocrinology .management-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#endocrinology .management-card i {
  font-size: 2.5rem;
  color: var(--endocrine-color);
  margin-bottom: 1rem;
}
#endocrinology .management-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#endocrinology .management-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
#endocrinology .endocrinology-cta {
  background: linear-gradient(135deg, var(--endocrine-color) 0%, #e67e22 100%);
  color: #333;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#endocrinology .endocrinology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#endocrinology .endocrinology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#endocrinology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#endocrinology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#endocrinology .btn-cta-primary {
  background-color: white;
  color: #666;
  border: 2px solid white;
}
#endocrinology .btn-cta-primary:hover {
  background-color: #2c2c2c;
  color: #333;
}
#endocrinology .btn-cta-secondary {
  background-color: #2c2c2c;
  color: #333;
  border: 2px solid white;
}
#endocrinology .btn-cta-secondary:hover {
  background-color: white;
  color: #666;
}
#endocrinology .faq-section {
  padding: 80px 0;
}
#endocrinology .accordion-button {
  background-color: var(--light-bg);
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#endocrinology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: #333;
  box-shadow: none;
}
#endocrinology .accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

#nephrology {
  /* Banner Section */
  /* Section Title */
  /* Main Content */
  /* Overview Section */
  /* Info Cards */
  /* Kidney Disorders Section */
  /* Kidney Function Tests Section */
  /* Symptoms Section */
  /* Kidney Health Tips Section */
  /* CTA Section */
  /* FAQ Section */
}
#nephrology .nephrology-banner {
  background: linear-gradient(135deg, var(--nephrology-color) 0%, #2980b9 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#nephrology .nephrology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#nephrology .nephrology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#nephrology .nephrology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#nephrology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#nephrology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#nephrology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#nephrology .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#nephrology .service-content {
  padding: 80px 0;
}
#nephrology .overview-section {
  margin-bottom: 80px;
}
#nephrology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#nephrology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#nephrology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}
#nephrology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#nephrology .overview-image img:hover {
  transform: scale(1.05);
}
#nephrology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#nephrology .info-card:hover {
  border-color: var(--nephrology-color);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-8px);
}
#nephrology .info-card i {
  font-size: 3rem;
  color: var(--nephrology-color);
  margin-bottom: 1rem;
}
#nephrology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#nephrology .info-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#nephrology .kidney-disorders-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#nephrology .disorder-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#nephrology .disorder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#nephrology .disorder-card-header {
  background: linear-gradient(135deg, var(--nephrology-color) 0%, #2980b9 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#nephrology .disorder-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#nephrology .disorder-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#nephrology .disorder-card-body {
  padding: 2rem;
}
#nephrology .disorder-card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#nephrology .disorder-tests {
  list-style: none;
  padding: 0;
}
#nephrology .disorder-tests li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#nephrology .disorder-tests i {
  color: var(--nephrology-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#nephrology .kidney-tests-section {
  padding: 80px 0;
}
#nephrology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#nephrology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#nephrology .test-card:hover {
  border-color: var(--nephrology-color);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-8px);
}
#nephrology .test-card i {
  font-size: 2.5rem;
  color: var(--nephrology-color);
  margin-bottom: 1rem;
}
#nephrology .test-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#nephrology .test-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#nephrology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--nephrology-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#nephrology .symptoms-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#nephrology .symptom-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#nephrology .symptom-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--nephrology-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#nephrology .symptom-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#nephrology .symptom-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#nephrology .kidney-health-section {
  padding: 80px 0;
}
#nephrology .health-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#nephrology .health-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#nephrology .health-card i {
  font-size: 2.5rem;
  color: var(--nephrology-color);
  margin-bottom: 1rem;
}
#nephrology .health-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#nephrology .health-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
#nephrology .nephrology-cta {
  background: linear-gradient(135deg, var(--nephrology-color) 0%, #2980b9 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#nephrology .nephrology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#nephrology .nephrology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#nephrology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#nephrology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#nephrology .btn-cta-primary {
  background-color: white;
  color: var(--nephrology-color);
  border: 2px solid white;
}
#nephrology .btn-cta-primary:hover {
  background-color: transparent;
  color: white;
}
#nephrology .btn-cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
#nephrology .btn-cta-secondary:hover {
  background-color: white;
  color: var(--nephrology-color);
}
#nephrology .faq-section {
  padding: 80px 0;
}
#nephrology .accordion-button {
  background-color: white;
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#nephrology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--nephrology-color);
  box-shadow: none;
}
#nephrology .accordion-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

#gynecology {
  /* Banner Section */
  /* Section Title */
  /* Main Content */
  /* Overview Section */
  /* Info Cards */
  /* Women's Health Services */
  /* Gynecological Conditions Section */
  /* Symptoms Section */
  /* Women's Health Tips Section */
  /* Pregnancy Care Section */
  /* CTA Section */
  /* FAQ Section */
}
#gynecology .gynecology-banner {
  background: linear-gradient(135deg, var(--gynecology-color) 0%, #c2185b 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#gynecology .gynecology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#gynecology .gynecology-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
#gynecology .gynecology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#gynecology .gynecology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#gynecology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#gynecology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#gynecology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#gynecology .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#gynecology .service-content {
  padding: 80px 0;
}
#gynecology .overview-section {
  margin-bottom: 80px;
}
#gynecology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#gynecology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#gynecology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}
#gynecology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#gynecology .overview-image img:hover {
  transform: scale(1.05);
}
#gynecology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#gynecology .info-card:hover {
  border-color: var(--gynecology-color);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
  transform: translateY(-8px);
}
#gynecology .info-card i {
  font-size: 3rem;
  color: var(--gynecology-color);
  margin-bottom: 1rem;
}
#gynecology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#gynecology .info-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#gynecology .womens-health-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#gynecology .health-service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#gynecology .health-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#gynecology .health-service-header {
  background: linear-gradient(135deg, var(--gynecology-color) 0%, #c2185b 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#gynecology .health-service-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#gynecology .health-service-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#gynecology .health-service-body {
  padding: 2rem;
}
#gynecology .health-service-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#gynecology .service-tests {
  list-style: none;
  padding: 0;
}
#gynecology .service-tests li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#gynecology .service-tests i {
  color: var(--gynecology-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#gynecology .conditions-section {
  padding: 80px 0;
}
#gynecology .condition-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#gynecology .condition-card:hover {
  border-color: var(--gynecology-color);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
  transform: translateY(-8px);
}
#gynecology .condition-card i {
  font-size: 2.5rem;
  color: var(--gynecology-color);
  margin-bottom: 1rem;
}
#gynecology .condition-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#gynecology .condition-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#gynecology .condition-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--gynecology-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#gynecology .symptoms-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#gynecology .symptom-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#gynecology .symptom-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--gynecology-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#gynecology .symptom-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#gynecology .symptom-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#gynecology .womens-health-tips-section {
  padding: 80px 0;
}
#gynecology .tip-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#gynecology .tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#gynecology .tip-card i {
  font-size: 2.5rem;
  color: var(--gynecology-color);
  margin-bottom: 1rem;
}
#gynecology .tip-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#gynecology .tip-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
#gynecology .pregnancy-care-section {
  background: linear-gradient(135deg, var(--gynecology-color) 0%, #c2185b 100%);
  color: white;
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 12px;
}
#gynecology .pregnancy-care-section h2 {
  color: white;
}
#gynecology .pregnancy-care-section .section-title h2::after {
  background-color: white;
}
#gynecology .pregnancy-care-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
}
#gynecology .pregnancy-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  text-align: center;
}
#gynecology .pregnancy-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#gynecology .pregnancy-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#gynecology .pregnancy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
#gynecology .gynecology-cta {
  background: linear-gradient(135deg, var(--gynecology-color) 0%, #c2185b 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#gynecology .gynecology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#gynecology .gynecology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#gynecology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#gynecology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#gynecology .btn-cta-primary {
  background-color: white;
  color: var(--gynecology-color);
  border: 2px solid white;
}
#gynecology .btn-cta-primary:hover {
  background-color: transparent;
  color: white;
}
#gynecology .btn-cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
#gynecology .btn-cta-secondary:hover {
  background-color: white;
  color: var(--gynecology-color);
}
#gynecology .faq-section {
  padding: 80px 0;
}
#gynecology .accordion-button {
  background-color: white;
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#gynecology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--gynecology-color);
  box-shadow: none;
}
#gynecology .accordion-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

#pathology {
  /* Banner Section */
  /* Section Title */
  /* Main Content */
  /* Overview Section */
  /* Info Cards */
  /* Pathology Types Section */
  /* Laboratory Tests Section */
  /* Specimen Types Section */
  /* Diseases Diagnosed Section */
  /* Quality Standards Section */
  /* CTA Section */
  /* FAQ Section */
}
#pathology .pathology-banner {
  background: linear-gradient(135deg, var(--pathology-color) 0%, #d35400 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#pathology .pathology-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#pathology .pathology-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
#pathology .pathology-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#pathology .pathology-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#pathology .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#pathology .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#pathology .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#pathology .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#pathology .service-content {
  padding: 80px 0;
}
#pathology .overview-section {
  margin-bottom: 80px;
}
#pathology .overview-section .row {
  align-items: center;
  margin-bottom: 3rem;
}
#pathology .overview-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
#pathology .overview-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}
#pathology .overview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#pathology .overview-image img:hover {
  transform: scale(1.05);
}
#pathology .info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#pathology .info-card:hover {
  border-color: var(--pathology-color);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
  transform: translateY(-8px);
}
#pathology .info-card i {
  font-size: 3rem;
  color: var(--pathology-color);
  margin-bottom: 1rem;
}
#pathology .info-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#pathology .info-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#pathology .pathology-types-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#pathology .pathology-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#pathology .pathology-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#pathology .pathology-card-header {
  background: linear-gradient(135deg, var(--pathology-color) 0%, #d35400 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
#pathology .pathology-card-header h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
#pathology .pathology-card-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#pathology .pathology-card-body {
  padding: 2rem;
}
#pathology .pathology-card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#pathology .pathology-tests {
  list-style: none;
  padding: 0;
}
#pathology .pathology-tests li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
#pathology .pathology-tests i {
  color: var(--pathology-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#pathology .laboratory-tests-section {
  padding: 80px 0;
}
#pathology .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#pathology .test-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#pathology .test-card:hover {
  border-color: var(--pathology-color);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
  transform: translateY(-8px);
}
#pathology .test-card i {
  font-size: 2.5rem;
  color: var(--pathology-color);
  margin-bottom: 1rem;
}
#pathology .test-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#pathology .test-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#pathology .test-badge {
  display: inline-block;
  background-color: var(--light-bg);
  color: var(--pathology-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
#pathology .specimen-section {
  background: linear-gradient(135deg, var(--pathology-color) 0%, #d35400 100%);
  color: white;
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 12px;
}
#pathology .specimen-section h2 {
  color: white;
}
#pathology .specimen-section .section-title h2::after {
  background-color: white;
}
#pathology .specimen-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
}
#pathology .specimen-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  text-align: center;
}
#pathology .specimen-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#pathology .specimen-item h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
#pathology .specimen-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
#pathology .diseases-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin: 80px 0;
}
#pathology .disease-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
#pathology .disease-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--pathology-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
#pathology .disease-content h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#pathology .disease-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
#pathology .quality-section {
  padding: 80px 0;
}
#pathology .quality-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
#pathology .quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#pathology .quality-card i {
  font-size: 2.5rem;
  color: var(--pathology-color);
  margin-bottom: 1rem;
}
#pathology .quality-card h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
#pathology .quality-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
#pathology .pathology-cta {
  background: linear-gradient(135deg, var(--pathology-color) 0%, #d35400 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin-top: 80px;
}
#pathology .pathology-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#pathology .pathology-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
#pathology .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
#pathology .btn-cta {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
#pathology .btn-cta-primary {
  background-color: white;
  color: var(--pathology-color);
  border: 2px solid white;
}
#pathology .btn-cta-primary:hover {
  background-color: transparent;
  color: white;
}
#pathology .btn-cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
#pathology .btn-cta-secondary:hover {
  background-color: white;
  color: var(--pathology-color);
}
#pathology .faq-section {
  padding: 80px 0;
}
#pathology .accordion-button {
  background-color: white;
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#pathology .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--pathology-color);
  box-shadow: none;
}
#pathology .accordion-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

#healthPackages {
  /* Banner Section */
  /* Main Content */
  /* Filter Buttons */
  /* Package Card */
  /* Info Box */
  /* FAQ Section */
}
#healthPackages .packages-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#healthPackages .packages-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#healthPackages .packages-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}
#healthPackages .packages-banner p {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#healthPackages .packages-content {
  padding: 80px 0;
}
#healthPackages .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#healthPackages .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#healthPackages .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
#healthPackages .section-title p {
  font-size: 1.1rem;
  color: #666;
}
#healthPackages .filter-buttons {
  text-align: center;
  margin-bottom: 3rem;
}
#healthPackages .filter-btn {
  background-color: white;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
#healthPackages .filter-btn:hover,
#healthPackages .filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
#healthPackages .package-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#healthPackages .package-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 154, 74, 0.15);
  transform: translateY(-8px);
}
#healthPackages .package-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 154, 74, 0.2);
  transform: scale(1.02);
}
#healthPackages .package-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}
#healthPackages .package-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 154, 74, 0.3);
  z-index: 10;
}
#healthPackages .package-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 2px solid #e0e0e0;
}
#healthPackages .package-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#healthPackages .package-category {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#healthPackages .package-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#healthPackages .package-price .currency {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}
#healthPackages .package-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
#healthPackages .package-duration {
  font-size: 0.9rem;
  color: #999;
}
#healthPackages .package-features {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  max-height: 400px;
}
#healthPackages .package-features::-webkit-scrollbar {
  width: 6px;
}
#healthPackages .package-features::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#healthPackages .package-features::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}
#healthPackages .package-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#healthPackages .package-features li {
  padding: 0.75rem 0;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
#healthPackages .package-features li:last-child {
  border-bottom: none;
}
#healthPackages .package-features i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}
#healthPackages .package-footer {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 2px solid #e0e0e0;
  display: flex;
  gap: 1rem;
}
#healthPackages .original-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
#healthPackages .strikethrough {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}
#healthPackages .discount-badge {
  background-color: #ff6b6b;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#healthPackages .btn-book {
  flex: 1;
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
#healthPackages .btn-book:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: scale(1.05);
}
#healthPackages .btn-details {
  flex: 1;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
#healthPackages .btn-details:hover {
  background-color: var(--primary-color);
  color: white;
}
#healthPackages .package-card.featured .btn-book {
  flex: 1;
}
#healthPackages .info-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#healthPackages .info-box i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}
#healthPackages .info-box-content h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#healthPackages .info-box-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}
#healthPackages .faq-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  margin-top: 80px;
}
#healthPackages .accordion-button {
  background-color: white;
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}
#healthPackages .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--primary-color);
  box-shadow: none;
}
#healthPackages .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009a4a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#healthPackages .accordion-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

#test {
  /*Cart Page*/
}
#test #frmSearch {
  position: relative;
}
#test #frmSearch button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 15px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#test .sticky-top {
  position: sticky;
  top: 115px;
  z-index: 1020;
}
#test .sticky-top #shoppingCart {
  background-color: #bcd7ff !important;
  padding: 10px;
}
