/* Reset default margin and padding */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

/* General Styles */
body {
  font-family: 'Muli', sans-serif; /* Set a default font */
}

/* Container Styles */
/* .container {
  width: 90%;
  margin: 0 auto;
} */

/* Header Styles */
header {
  background-color: #ffffff;
  color: #fff;
  padding: 10px 0;
}

/* Center the logo */
.logo {
  display: block;
  width: 220px; /* Adjust the width as needed */
  height: auto;
}

/* Center the navigation links */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right; /* Center align the text */
}

nav ul li {
  display: inline;
}
nav ul li {
  padding: 36px 21px;
}
nav ul li a {
  color: #0e5d9f;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s linear;
}

nav ul li a:hover {
  background-color: #fff;
  text-decoration: none;
}
.blue-brd-btn {
  color: #ff1d1c;
  padding: 10px 25px;
  border: 2px solid #ff1d1c;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  transition: 0.2s linear;
}
.blue-brd-btn:hover {
  background: #ff1d1c;
  color: #fff;
  text-decoration: none;
}

/* Highlighted text style */
.highlight {
  color: #007bff; /* Blue color */
  font-weight: bold; /* Bold font */
}

/* Moving text container */
.moving-text-container {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

/* Moving text animation */
.moving-text {
  white-space: nowrap; /* Prevent text from wrapping */
  color: #0e5d9f; /* Blue color */
  font-weight: bold; /* Bold font */
  font-size: 24px; /* Adjust font size as needed */
  animation: moveText 15s linear infinite; /* Adjust animation duration as needed */
}
.contact-form h2 {
  color: #007bff; /* Blue color */
  font-size: 28px;
}

@keyframes moveText {
  0% {
    transform: translateX(100%); /* Move text to the right */
  }
  100% {
    transform: translateX(-100%); /* Move text to the left */
  }
}

.contact-us-sec {
  position: relative;
  width: 100%;
  padding: 3rem 0;
}
.contact-us-sec .contact-form {
  padding: 0 2rem;
}

/* Button Styles */
.call-button, .video-chat-button {
  text-align: center;
  margin-bottom: 20px;
}

.call-button a, .video-chat-button a {
  background-color: #007bff; /* Default button color */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.call-button a:hover, .video-chat-button a:hover {
  background-color: #0056b3; /* Darker color on hover */
}

/* Specific Button Styles */
.button-section {
  position: relative;
  width: 100%;
}
.call-button a {
  display: inline-block;
  width: 250px;
  background-color: #28a745; /* Green color for call button */
  margin: 2rem 0;
}


.video-chat-button a {
  display: inline-block;
  width: 250px;
  background-color: #007bff; /* Blue color for video chat button */
  margin: 2rem 0;
}

/* Banner Styles */
.banner {
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure the image covers the entire banner */
}

/* Spacer Styles */
.spacer {
  height: 50px; /* Add space between sections */
}

/* Main Content Styles */
main {
  margin-top: 20px;
}

#appointmentForm {
  margin-bottom: 20px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Awareness Videos, Inclusive Dentists, and Map Locations Section Styles */
.awareness-videos {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}
.inclusive-dentists {
  padding: 4rem 0;
  background-color: #f1f1f1;
}
.map-locations {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}
.map-locations .text-block {
  padding: 0 3rem;
  text-align: left;
}
.awareness-videos, 
.inclusive-dentists, 
.map-locations {
  text-align: center; /* Center align the content */
  margin-bottom: 20px; /* Add some space at the bottom */
}

/* Title Styles for Awareness Videos, Inclusive Dentists, and Map Locations */
.awareness-videos h3, 
.inclusive-dentists h3, 
.map-locations h2 {
  color: #007bff; /* Blue color for the title */
  font-size: 28px; /* Adjust font size */
  margin-bottom: 10px; /* Add some space below the title */
}

/* Text Styles for Awareness Videos, Inclusive Dentists, and Map Locations */
.awareness-videos p, 
.inclusive-dentists p, 
.map-locations p {
  font-size: 16px; /* Adjust font size */
  margin-bottom: 20px; /* Add some space below the text */
}

/* Center align the embedded map */
.map-locations iframe {
  display: block;
  margin: 0 auto;
}

/* Our Partners Section Styles */
.partners {
  text-align: center; /* Center align the content */
  margin-bottom: 20px; /* Add some space at the bottom */
  padding: 4rem 0;
  background-color: #f1f1f1;
}

/* Title Styles */
.partners h2 {
  color: #007bff; /* Blue color for the title */
  font-size: 28px; /* Adjust font size */
  margin-bottom: 2rem; /* Add some space below the title */
}

/* Text Styles */
.partners p {
  font-size: 16px; /* Adjust font size */
  margin-bottom: 20px; /* Add some space below the text */
}


.video-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.video-wrapper iframe {
  width: 30%; /* Adjust as needed */
}

.spacer {
  height: 50px; /* Add space between sections */
}

/* Dropdown Styling */
#dentistDropdown {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

#dentistDropdown:hover {
  background-color: #e0e0e0;
}

/* Displayed Dentist Information Styling */
#dentists-list {
  margin-top: 20px;
  font-family: 'Muli', sans-serif;
  font-size: 14px;
  color: #333;
}

#dentists-list p {
  margin-bottom: 5px;
}

/* Animation */
.moving-text {
  transition: color 0.3s ease;
}

.moving-text:hover {
  color: #ff6347; /* Change color on hover */
}

/* Contact Us Section Styles */
.contact-us {
  text-align: center; /* Center align the content */
  padding: 3rem 0;
  background-color: #eeeeee;
}

/* Title Styles */
.contact-us h2 {
  color: #007bff; /* Blue color for the title */
  font-size: 28px; /* Adjust font size */
  margin-bottom: 2rem; /* Add some space below the title */
}

/* Text Styles */
.contact-us p {
  font-size: 16px; /* Adjust font size */
  margin-bottom: 20px; /* Add some space below the text */
}

/* Hyperlink Styles */
.contact-us a {
  color: #007bff; /* Blue color for the links */
  text-decoration: none; /* Remove underline */
}

.contact-us a:hover {
  text-decoration: underline; /* Add underline on hover */
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

/* Social Media Links */
.social-media-links {
  margin-top: 10px; /* Adjust spacing */
  text-align: center;
}

.social-icon {
  width: 30px; /* Adjust size as needed */
  height: auto;
  margin: 0 5px; /* Adjust spacing between icons */
}



/* Add this CSS at the end of your existing CSS file */
.form-group {
  margin-bottom: 10px; /* Adjust the margin to reduce space between form groups */
}

label {
  display: block;
  margin-bottom: 5px; /* Adjust the margin to reduce space between labels and inputs */
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%; /* Make form inputs expand to fill the entire width */
  padding: 8px; /* Add padding for better spacing */
  margin-bottom: 5px; /* Adjust margin between inputs */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

button {
  margin-top: 20px;
}

.custom-form .form-group label.error {
  font-size: 12px;
  color: #ff1d1c!important;
  margin-top: 0.5rem;
}

#dentists-list .card {
  width: 100%;
  margin: 1rem 0;
}
#dentists-list .card .card-body table td {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}
#dentists-list .card .card-body table tr td:first-child {
  font-weight: 700!important;
}
#dentists-list .card .card-body p {
  text-align: left!important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form h2 {
    margin-top: 4rem;
  }
  .map-locations iframe {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .logo {
    width: 180px;
  }
  nav ul {
    text-align: center;
    margin-bottom: 1rem;
  }
  nav ul li {
    padding: 12px 8px;
  }
  .moving-text {
    font-size: 16px;
  }
  .call-button a, .video-chat-button a {
    margin: 0;
  }
  .contact-form h2 {
    margin-top: 2rem;
  }
  .map-locations .text-block {
    padding: 0 1rem;
  }
  .map-locations iframe {
    margin-top: 3rem;
  }
}