* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1d3666;
  background-color: #f0f7ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
  padding: 25px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d3666;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #1d3666;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 0;
}

.case-studies-grid {
  display: grid;
  gap: 60px;
}

.case-study-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(29, 54, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  padding: 40px;
  align-items: start;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(29, 54, 102, 0.15);
}

.case-study-image {
  width: 400px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1d3666;
  margin-bottom: 15px;
}

.hospital-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #1d3666;
  opacity: 0.8;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #ffcfd4 0%, #ffe0e3 100%);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d3666;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #1d3666;
  opacity: 0.7;
  font-weight: 500;
}

.achievements h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1d3666;
  margin-bottom: 15px;
}

.achievements ul {
  list-style: none;
}

.achievements li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #1d3666;
  opacity: 0.8;
}

.achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcfd4;
  font-weight: bold;
  font-size: 1.1rem;
}

/* <CHANGE> Added Read More button styles */
.read-more-container {
  margin-top: 30px;
  text-align: left;
}

.read-more-btn {
  background: linear-gradient(135deg, #1d3666 0%, #2a4a7a 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(29, 54, 102, 0.3);
}

.read-more-btn .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.read-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* <CHANGE> Updated testimonials section with carousel styles */
/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3666;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #1d3666;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials-container {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.testimonial-card {
  background: #f0f7ff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1d3666;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.95rem;
  color: #1d3666;
  opacity: 0.7;
}

.carousel-btn {
  background: linear-gradient(135deg, #1d3666 0%, #2a4a7a 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(29, 54, 102, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1d3666;
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1d3666 0%, #2a4a7a 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-button {
  background: linear-gradient(135deg, #ffcfd4 0%, #ff9faa 100%);
  color: #1d3666;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 207, 212, 0.4);
}

/* <CHANGE> Enhanced mobile responsiveness */
/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .case-study-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .case-study-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .case-study-image {
    width: 250px;
    height: 250px;
  }

  .case-study-card {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  /* <CHANGE> Mobile-specific testimonial carousel styles */
  .testimonials-carousel {
    gap: 10px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .testimonials-track {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .case-study-image {
    width: 200px;
    height: 200px;
  }

  .case-studies-section {
    padding: 60px 0;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .read-more-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}