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

:root {
  --primary-color: rgba(171, 12, 14, 1);
  --primary-dark: rgba(140, 10, 12, 1);
  --primary-light: rgba(200, 50, 50, 1);
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.logo-icon {
  font-size: 100px;
}

.logo-text {
  font-weight: 700;
}

.logo-image {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-item-dropdown > a::after {
  content: "▼";
  margin-left: 5px;
  font-size: 10px;
  transition: all 0.3s ease;
}

.nav-item-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 999;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  border-left: 3px solid var(--primary-color);
  padding-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.cta-btn {
  background: var(--primary-color) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: var(--primary-dark) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  min-height: 600px;
  position: relative;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  padding: 60px 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-features {
  list-style: none;
  margin-bottom: 30px;
  font-size: 16px;
}

.hero-features li {
  color: var(--text-dark);
  padding: 8px 0;
  font-weight: 500;
}

.highlight {
  color: var(--primary-color);
}

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

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(171, 12, 14, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 15px 40px;
  font-size: 16px;
}

.hero-image {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-card .icon {
  font-size: 32px;
}

.floating-card p {
  font-weight: 600;
  font-size: 14px;
}

.card-1 {
  top: 0;
  left: 0;
}

.card-2 {
  top: 100px;
  right: 50px;
}

.card-3 {
  bottom: 20px;
  left: 50px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-description {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 13px;
  color: var(--text-light);
  margin: 10px 0 0;
}

/* Services Section */
.services-preview {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.service-link:hover {
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.author-avatar {
  font-size: 40px;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Content Section */
.content-section {
  padding: 60px 0;
}

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

.content-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.image-placeholder {
  font-size: 80px;
  text-align: center;
  padding: 60px 0;
  background: var(--bg-light);
  border-radius: 10px;
}

/* Mission & Vision */
.mission-vision {
  padding: 60px 0;
  background: var(--bg-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mission-vision-grid .card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon-large {
  font-size: 48px;
  margin-bottom: 15px;
}

.mission-vision-grid .card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.mission-vision-grid .card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Team Section */
.team-section {
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.team-image {
  font-size: 60px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-card .role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* Services Section - Detailed */
.services-section {
  padding: 60px 0;
}

.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.detailed-service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.detailed-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-icon-large {
  font-size: 40px;
}

.service-header h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 0;
}

.detailed-service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-list {
  list-style: none;
  margin-bottom: 20px;
}

.service-list li {
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.service-btn:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
}

/* Products Section */
.products-section {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.product-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.product-features span {
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dark);
}

/* Industries Section */
.industries-section {
  padding: 60px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.industry-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
  border-top: 3px solid var(--primary-color);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.industry-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.info-card:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  margin: 5px 0;
}

.info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group button {
  width: 100%;
}

/* Footer */
/* Logo Box Premium */
.logo-box-premium {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(171, 12, 14, 0.2);
}

.logo-box-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(171, 12, 14, 0.3);
}

.hospital-badge {
  font-size: 42px;
  font-weight: 700;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.client-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--primary-color);
  background: rgba(171, 12, 14, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
  font-weight: 600;
}

.footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: white;
  padding: 60px 0 0;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 30px;
}

.footer-logo {
  height: 250px;
  width: auto;
  margin-bottom: 15px;
  opacity: 0.9;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: white;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section p {
  color: #bbb;
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 14px;
}

.contact-item {
  margin-bottom: 12px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item .label {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 8px;
  min-width: 60px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-section ul li:hover {
  padding-left: 5px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(171, 12, 14, 0.2);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(171, 12, 14, 0.3);
}

.social-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(171, 12, 14, 0.3), transparent);
}

.footer-bottom {
  padding: 25px 20px;
  background: #0f0f0f;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  color: #999;
}

.footer-certifications {
  display: flex;
  gap: 15px;
}

.cert-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(252, 0, 0);
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Features Section */
.features-section {
  padding: 60px 0;
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-top: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
  border-top: 3px solid var(--primary-color);
}

.feature-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(171, 12, 14, 0.1) 0%, rgba(171, 12, 14, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 14px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
  border-left: 4px solid var(--primary-color);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.2);
}

.product-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(171, 12, 14, 0.1) 0%, rgba(171, 12, 14, 0.05) 100%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.product-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.industry-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(171, 12, 14, 0.15);
  border-bottom: 3px solid var(--primary-color);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(171, 12, 14, 0.05) 0%, rgba(171, 12, 14, 0.02) 100%);
  border-radius: 12px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.industry-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 14px;
}

/* Responsive Design */
/* Clients Section */
.clients-section {
  padding: 80px 0;
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.client-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(171, 12, 14, 0.15);
  border: 2px solid var(--primary-color);
}

.client-logo {
  font-size: 48px;
  margin-bottom: 15px;
}

.client-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.client-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.stars {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffc107;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 13px;
  color: var(--text-light);
}

/* Quick Contact Section */
.contact-quick-section {
  padding: 80px 0;
  background: white;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.quick-contact-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(171, 12, 14, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.3);
}

.quick-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.quick-contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.quick-contact-card p {
  font-size: 14px;
  opacity: 0.95;
}

/* Choose Section */
.choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.scroll-container {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.scroll-content {
  display: flex;
  gap: 25px;
  animation: horizontal-scroll 40s linear infinite;
  padding: 20px 0;
}

.scroll-content:hover {
  animation-play-state: paused;
}

.reason-card {
  flex: 0 0 300px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.reason-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.reason-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.reason-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Team Scroll Section */
.team-scroll-section {
  padding: 80px 0;
  background: white;
}

.team-scroll-card {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 3px solid var(--primary-color);
}

.team-scroll-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
}

.team-avatar {
  font-size: 56px;
  margin-bottom: 15px;
  display: block;
}

.team-scroll-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.team-bio {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.7;
}

@keyframes horizontal-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero Dots Navigation */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: var(--primary-color);
}

/* Clients Logo Scroll Section */
.clients-logo-scroll-section {
  padding: 60px 0;
  background: white;
  overflow: hidden;
}

.container-full {
  width: 100%;
  padding: 0 20px;
}

.clients-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.clients-scroll {
  display: flex;
  gap: 30px;
  animation: scroll-left 30s linear infinite;
  padding: 20px 0;
}

.clients-scroll:hover {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 180px;
}

.logo-box {
  background: linear-gradient(135deg, rgba(171, 12, 14, 0.05) 0%, rgba(171, 12, 14, 0.02) 100%);
  border: 2px solid rgba(171, 12, 14, 0.1);
  border-radius: 12px;
  padding: 25px;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo-item:hover .logo-box {
  background: linear-gradient(135deg, rgba(171, 12, 14, 0.15) 0%, rgba(171, 12, 14, 0.1) 100%);
  border: 2px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(171, 12, 14, 0.15);
}

.client-logo-item p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  bottom: 35px;
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* Team Member Cards */
.team-member {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 3px solid transparent;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(171, 12, 14, 0.15);
  border-top: 3px solid var(--primary-color);
}

.member-image {
  font-size: 60px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.member-bio {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* Founder Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.founder-image {
  text-align: center;
}

.founder-photo {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-info h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.founder-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.founder-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid,
  .products-grid,
  .industries-grid,
  .clients-grid,
  .testimonials-grid,
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .industry-card,
  .client-card,
  .testimonial-card,
  .quick-contact-card,
  .team-member {
    padding: 25px;
  }

  .service-icon,
  .product-icon,
  .industry-icon,
  .quick-icon {
    font-size: 40px;
  }

  .services-section,
  .products-section,
  .industries-section,
  .clients-section,
  .testimonials-section,
  .contact-quick-section {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-grid,
  .content-grid,
  .founder-grid,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .whatsapp-button:hover {
    bottom: 25px;
  }

  .hero-slides {
    height: auto;
  }

  .hero-slide {
    position: static;
    opacity: 1 !important;
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-dots {
    position: static;
    transform: none;
    margin-top: 20px;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .clients-scroll {
    animation: scroll-left 20s linear infinite;
  }

  .client-logo-item {
    min-width: 150px;
  }

  .logo-box {
    height: 80px;
    padding: 20px;
    font-size: 36px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    margin-top: 0;
    padding-left: 20px;
    display: none;
  }

  .nav-item-dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 0;
    border-left: none;
    font-size: 14px;
  }

  .dropdown-menu a:hover {
    border-left: none;
    padding-left: 0;
    color: var(--primary-color);
  }

  .reason-card,
  .team-scroll-card {
    flex: 0 0 250px;
    padding: 20px;
  }

  .scroll-content {
    animation: horizontal-scroll 30s linear infinite;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px;
  }

  .footer-brand {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-certifications {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-box-premium {
    height: 80px;
    padding: 15px;
  }

  .hospital-badge {
    font-size: 32px;
    width: 60px;
    height: 60px;
  }

  .contact-item {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Founder Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.founder-image {
  text-align: center;
}

.founder-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-info h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.founder-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.founder-info p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 100%;
  }
}
