
:root {
  --primary: #f58634;
  --secondary: #332f6a;
}
body {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  font-weight: 700; /* Gives a bit more boldness to headings */
}

.navbar-brand,
.btn,
.nav-link {
  font-family: "Lato", sans-serif; /* Consistent font for navigational and call-to-action elements */
}
.bg-primary-custom {
  background-color: var(--primary);
}

.bg-secondary-custom {
  background-color: var(--secondary);
}

.text-primary-custom {
  color: var(--primary);
}

.text-secondary-custom {
  color: var(--secondary);
  font-weight: 600;
}

.btn-primary-custom {
  background-color: var(--primary);
  color: white;
  border: none;
  transition: all 0.3s;
}

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

.btn-secondary-custom {
  background-color: var(--secondary);
  color: white;
  border: none;
  transition: all 0.3s;
}

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

.hero-section {
  background: url("./assets/heroSectionImg.jpg") center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.service-card {
  border: none;
  border-radius: 10px;
  transition: all 0.3s;
}
.accordion-button {
  background-color: var(--primary) !important;
  color: #ffff !important;
}

.accordion-button.collapsed {
  background-color: white;
  color: var(--primary);
}

.accordion-item {
  border-bottom: 1px solid var(--secondary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qualification-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.qualification-list li:last-child {
  border-bottom: none;
}
i {
  color: var(--primary);
}
