:root {
  --primary-color: #1a3c34;
  --secondary-color: #d3a625;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link {
  color: #ffffff !important;
  font-size: 1.1rem;
  margin-left: 15px;
  transition: all 0.3s;
}

.navbar .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-brand img {
  height: 50px;
}

/* Header */
.header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1473&q=80') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  padding: 120px 0;
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.header p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Sections */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto;
}

/* About */
.about-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services */
.service-card {
  background-color: white;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Doctors */
.doctor-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.doctor-card:hover {
  transform: translateY(-5px);
}

.doctor-img {
  height: 300px;
  object-fit: cover;
}

/* Testimonials */
.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

/* Contact */
.contact-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 40px 0 20px;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icons {
  font-size: 1.5rem;
  margin: 0 10px;
}

.list-unstyled  li a {
  color: white;
}

/* WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }
  
  .header p {
    font-size: 1.2rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}


.doctor-card img{
margin-left: 50px;
}