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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #fefefe;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background-color: #0f5c63;
  color: white;
  padding: 1.2rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #0f5c63;
    display: none;
    padding: 1rem;
    z-index: 1000;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

.btn {
  background-color: #0f5c63;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background-color: #09464a;
}

.btn.secondary {
  background-color: #e0f2f1;
  color: #0f5c63;
}

.btn.secondary:hover {
  background-color: #cde7e4;
}

.hero {
  background-color: #e6f4f1;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f5c63;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-split {
  background-color: #e6f4f1;
  padding: 80px 0;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: #0f5c63;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

.services-preview {
  padding: 60px 0;
  background-color: #fff;
}

.services-preview h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0f5c63;
}

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

.service-card {
  background-color: #f1f1f1;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.service-card h4 {
  color: #0f5c63;
  margin-bottom: 0.5rem;
}

.services-full {
  padding: 60px 0;
  background-color: #fff;
}

.services-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-image {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.service-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .services-flex {
    flex-direction: column;
  }

  .service-image {
    text-align: center;
    margin-top: 2rem;
  }
}

.services-banner {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-banner {
  background-color: #0f5c63;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.contact-banner h3 {
  margin-bottom: 0.5rem;
}

footer {
  background-color: #0f5c63;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.about-hero {
  background: linear-gradient(rgba(15, 92, 99, 0.7), rgba(15, 92, 99, 0.7)),
    url('https://images.unsplash.com/photo-1588776815071-8d8f2bd8eec0?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.about-section {
  padding: 60px 0;
  background-color: #fff;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-text h3,
.about-text h4 {
  color: #0f5c63;
  margin-bottom: 0.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
}
.gallery-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-section h2 {
  color: #0f5c63;
  margin-bottom: 2rem;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


.doctors-hero {
  background: linear-gradient(rgba(15, 92, 99, 0.7), rgba(15, 92, 99, 0.7)),
    url('https://images.unsplash.com/photo-1580281658719-f6cdbb7d0dce?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.doctors-section {
  padding: 60px 0;
  background-color: #fefefe;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.doctor-card {
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 1.5rem;
}

.doctor-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.doctor-card h4 {
  color: #0f5c63;
  margin-bottom: 0.3rem;
}

.doctor-card p {
  font-size: 0.95rem;
  color: #333;
}

.booking-hero {
  background: linear-gradient(rgba(15, 92, 99, 0.7), rgba(15, 92, 99, 0.7)),
    url('https://images.unsplash.com/photo-1600952732310-c7b3c250a67c?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.booking-form-section {
  padding: 60px 0;
  background-color: #fff;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #0f5c63;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button[type='submit'] {
  margin-top: 1rem;
  width: 100%;
}

.contact-hero {
  background: linear-gradient(rgba(15, 92, 99, 0.7), rgba(15, 92, 99, 0.7)),
    url('https://images.unsplash.com/photo-1588776815071-2eeaa4a7b85e?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.contact-section {
  padding: 60px 0;
  background-color: #fff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonials {
  padding: 60px 0;
  background-color: #e6f4f1;
  text-align: center;
}

.testimonials h3 {
  color: #0f5c63;
  margin-bottom: 2rem;
}

.testimonial-slider {
  max-width: 700px;
  margin: auto;
}

.swiper-slide {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.swiper-slide p {
  font-style: italic;
  margin-bottom: 1rem;
}

.swiper-slide h4 {
  color: #0f5c63;
}
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  padding: 0.6rem 1rem;
  background-color: #0f5c63;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#scroll-top:hover {
  background-color: #09464a;
}

