/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #0077cc;
  padding: 1rem 0;
  color: #fff;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
}
.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  color: #fff;
 text-align: center;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.btn {
  background-color: #ff6b00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* Services Section */
.services {
  padding: 3rem 1rem;
  text-align: center;
}
.services h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}
.service-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.service-box h4 {
  color: #0077cc;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  background-color: #0077cc;
  color: #fff;
  padding: 1rem;
  margin-top: 2rem;
}
/* Surgeons Section */
.surgeons {
  padding: 3rem 1rem;
  text-align: center;
}
.surgeons h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.surgeon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.surgeon-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.surgeon-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.surgeon-card h3 {
  color: #0077cc;
  margin-bottom: 0.2rem;
}
.specialty {
  font-weight: bold;
  color: #555;
  margin-bottom: 0.5rem;
}
.surgeon-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
/* Booking Page */
.booking {
  padding: 3rem 1rem;
  max-width: 600px;
  margin: auto;
}
.booking h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.booking .subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}
.booking-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #0077cc;
}
.booking-form .btn {
  width: 100%;
  text-align: center;
}
/* Success Page */
.success-page {
  padding: 4rem 1rem;
  text-align: center;
}
.success-box {
  background-color: white;
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.success-box h2 {
  color: #28a745;
  margin-bottom: 1rem;
}
.success-box p {
  color: #444;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.success-box .btn {
  background-color: #0077cc;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
/* Why Choose Us */
.why-us, .how-it-works, .testimonials, .contact-cta {
  padding: 3rem 1rem;
  background-color: #f4f9ff;
  text-align: center;
}
.why-us h3, .how-it-works h3, .testimonials h3, .contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.reasons, .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}
.reason, .step {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Testimonials */
.testimonial-box {
  background-color: #fff;
  max-width: 700px;
  margin: 1rem auto;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.testimonial-box h5 {
  margin-top: 1rem;
  font-style: italic;
  color: #0077cc;
}

/* Contact CTA */
.contact-cta a {
  display: inline-block;
  margin-top: 1rem;
}
.contact-cta p a {
  color: #0077cc;
}
/* Testimonials Slider */
.testimonials-slider {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #f0f9ff;
}
.slider {
  position: relative;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}
.slide {
  display: none;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.slide.active {
  display: block;
  animation: fade 0.5s;
}
@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
.slider-controls {
  margin-top: 1rem;
}
.slider-controls button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  margin: 0 0.3rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-controls button:hover {
  background-color: #005fa3;
}
/* Gallery Section */
.gallery, .patients {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #fff;
}
.gallery h3, .patients h3, .featured-surgeon h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: auto;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* Patients Image Strip */
.patient-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  max-width: 100%;
  margin: auto;
}
.patient-strip img {
  height: 140px;
  border-radius: 8px;
  flex: 0 0 auto;
}

/* Featured Surgeon */
.featured-surgeon {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}
.surgeon-feature-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 900px;
  margin: auto;
  gap: 2rem;
  text-align: left;
}
.surgeon-feature-box img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}
.surgeon-feature-box h4 {
  color: #0077cc;
  font-size: 1.5rem;
}
/* About Page */
.about-section {
  padding: 3rem 1rem;
  background-color: #fff;
  max-width: 900px;
  margin: auto;
}
.about-content h2 {
  font-size: 2.2rem;
  color: #0077cc;
  margin-bottom: 1rem;
}
.about-content h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #333;
}
.about-content p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.6;
}
.about-content ul {
  list-style: none;
  padding-left: 0;
}
.about-content ul li {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}
section:nth-of-type(even) {
  background-color: #f9f9f9;
}
section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #222;
}
section {
  padding: 4rem 1rem;
}
.service-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.about-contact {
  background-color: #f4f9ff;
  padding: 3rem 1rem;
  text-align: center;
}
.about-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0077cc;
}
.about-contact p {
  margin: 0.5rem 0;
  color: #444;
}
.about-contact a {
  color: #0077cc;
  text-decoration: none;
}
.map-container {
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}