
/* Basic styling for the navigation menu */
nav ul {
  list-style: none;
  display: flex;
  justify-content: start;
  background-color: #56bb8a;
  padding: 10px;
  gap: 20px;
}
nav li {
  margin-right: 20px;
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
}
nav li img{
  padding-left: 20px;
  height: 40px;
  width: 40px;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #b9c0bc;
}

/* Styling for the jumbotron section */
.jumbotron {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
}
.jumbotron h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.jumbotron .lead {
  font-size: 18px;
  color: #333;
}
.jumbotron .btn-primary {
  background-color: #56bb8a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.jumbotron .btn-primary:hover {
  background-color: #56bb8a;
}

/* Styling for the three columns */
.row {
  display: flex;
  justify-content: center; /* Added to center the columns */
  margin-top: 20px;
}
.col-md-4 {
  flex-basis: 30%;
  padding: 10px;
  text-align: center;
  margin: 0 10px; /* Added some margin between columns */
}
.col-md-4 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.col-md-4 h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.col-md-4 p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.col-md-4 .btn-default {
  background-color: #f8f9fa;
  color: #56bb8a;
  border: 1px solid #56bb8a;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.col-md-4 .btn-default:hover {
  background-color: #56bb8a;
  color: #fff;
}
/* Styling for the appointment form */
/* Footer Styles */
footer {
  background-color: #5a5757;
  color: #fff;
  padding: 20px 0;
}

footer main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.contact-container {
  display: flex;
  width: 90%;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}

.contact-section,
.contact-details {
  flex: 1 1 45%; /* Each section will take up 45% of the container width */
  margin: 10px;
}

.contact-section {
  max-width: 600px;
}

.contact-details {
  max-width: 350px;
}

/* Form Styles */
form {
  background-color: #444;
  padding: 20px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: none;
  margin-top: 5px;
}

.form-group textarea {
  resize: vertical;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #008cba;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background-color: #007ba7;
}

/* Contact Details and Social Links */
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  justify-content: center;
  padding: 0;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #555;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #666;
}

.social-icon i {
  color: white;
  font-size: 20px;
  line-height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  footer main {
      flex-direction: column;
      align-items: center;
  }

  .contact-section,
  .contact-details {
      flex-basis: 100%;
      max-width: 100%;
      margin-right: 20px;
  }

  .social-links {
      justify-content: space-around;
      width: 100%;
  }
}
