<style>
/* Add Google Fonts for branding */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');

.certification-services {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f4f4; /* Light gray background */
}

.section-title {
  font-size: 2.5rem; /* Large font size for a strong heading */
  margin-bottom: 40px;
  font-weight: 700;
  color: #1A2B44; /* Dark Blue (matching gumsandbraces.com branding) */
  font-family: 'Roboto', Arial, sans-serif; /* Branding font family */
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-card {
  width: 18%;
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2C3E50; /* Dark Blue for headings */
  font-family: 'Open Sans', sans-serif; /* Branding font family */
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #7f8c8d; /* Light gray for text */
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .service-card {
    width: 45%; /* Change width to 45% for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }

  .service-container {
    justify-content: center; /* Center align the cards */
  }

  .section-title {
    font-size: 2rem; /* Make the section title smaller on mobile */
  }

  .service-card h3 {
    font-size: 1.2rem; /* Smaller font size for headings on mobile */
  }

  .service-card p {
    font-size: 0.95rem; /* Slightly smaller paragraph text on mobile */
  }
}

/* Extra small screens (mobile phones in portrait mode) */
@media (max-width: 480px) {
  .service-card {
    width: 90%; /* Make cards almost full-width on very small screens */
  }

  .section-title {
    font-size: 1.75rem; /* Smaller font size for very small screens */
  }

  .service-card h3 {
    font-size: 1.1rem; /* Adjust heading size for smaller devices */
  }

  .service-card p {
    font-size: 0.9rem; /* Adjust paragraph size for small screens */
  }
}

/* 1111111111111111111 */
/* Add styling for the process section */
.process-section {
    padding: 50px 20px;
    background-color: #fff; /* Set background color to white */
    max-width: 1200px; /* Restrict the width of the section */
    margin: 0 auto; /* Center the section */
  }
  
  .process-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1A2B44;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
  }
  
  .process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .process-card {
    width: 30%;
    background-color: #f9f9f9; /* Keep individual card background light gray */
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .process-step {
    display: inline-block;
    background-color: #29BFCF;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .step-number {
    font-weight: bold;
  }
  
  .process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2C3E50;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
  }
  
  .process-card p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .process-card {
      width: 45%; /* Adjust to 45% for tablet screens */
      margin: 10px;
    }
  
    .process-container {
      justify-content: center;
    }
  
    .process-title {
      font-size: 2rem; /* Adjust title size for tablets */
    }
  
    .process-card h3 {
      font-size: 1.1rem;
    }
  
    .process-card p {
      font-size: 0.95rem;
    }
  }
  
  /* Extra small screens (mobile phones) */
  @media (max-width: 480px) {
    .process-card {
      width: 90%; /* Full width for small screens */
    }
  
    .process-title {
      font-size: 1.75rem;
    }
  
    .process-card h3 {
      font-size: 1rem;
    }
  
    .process-card p {
      font-size: 0.9rem;
    }
  }
  .process-section {
    padding: 50px 20px;
    
    max-width: 1200px; /* Set the max-width for the boxed layout */
    margin: 0 auto; /* Center the section */
  }
    


/*      why choose us section */

.why-choose-us-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose-us-heading {
  font-size: 2em;
  margin-bottom: 40px;
}
.why-choose-us-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  scroll-padding: 20px;
}
.why-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #29BFCF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  scroll-snap-align: start;
  min-width: 300px;
  color: #fff;
}
.icon-wrapper {
  margin-bottom: 15px;
}
.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5em;
}
.card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #fff;
}
.card-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1024px) {
  .why-card {
    flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  .why-card {
    flex: 0 0 80%;
  }
}
@media (max-width: 480px) {
  .why-card {
    flex: 0 0 95%;
  }
}

<!-- Updated Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-aSFEAoQjoZfBz8Wgph5Ul9ODcCM7M0t5Oyz1mjAsr2SMYkT9Ub8d2rQ0t0YdLsGMJqPRRZ2K9SncUo4avU3grA==" crossorigin="anonymous" referrerpolicy="no-referrer" />


/*  Common Orthodontic Problems We Treat */


.ortho-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Helvetica Neue', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.ortho-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 80px;
}

.ortho-left {
  flex: 1 1 50%;
}

.ortho-left h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #333;
}

.ortho-feature {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.icon-circle {
  background-color: #e0f7fa;
  color: #006064;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 12px;
}

.ortho-feature h4 {
  margin: 0;
  font-size: 18px;
  color: #444;
}

.ortho-note {
  margin-top: 24px;
  font-size: 16px;
  color: #666;
}

.ortho-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ortho-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

  .ortho-right {
    order: -1;
  }
}


/*Before and After Cases*/
.cta-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 38px;
  color: #333;
  
  margin-bottom: 20px;
}

.cta-section p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: linear-gradient(to top, #29BFCF, #29BFCF);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}




/*FAQs*/
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
}

.faq-contact-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.faq-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-column, .form-column {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1;
  min-width: 300px;
}

.faq-column {
  flex-basis: 60%;
}

.form-column {
  flex-basis: 40%;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.accordion-header {
  font-weight: 600;
  font-size: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  color: #333;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.accordion-header .icon {
  color: #29BFCF;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #666;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  margin-top: 10px;
}

.accordion-item.active .accordion-header {
  color: #29BFCF;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #29BFCF;
  box-shadow: 0 0 0 2px rgba(41, 191, 207, 0.2);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #29BFCF;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #21a7b4;
}

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

  .faq-column,
  .form-column {
    flex-basis: 100%;
  }
}


body {
  margin: 0;
  font-family: sans-serif;
  background: #f8f8f8;
}

.carousel-section {
  background: white;
  padding: 2rem;
  text-align: center;
  padding-bottom: 88px;

}

.carousel-section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
}

.carousel-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 1;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

@media (min-width: 600px) {
  .carousel-card {
    min-width: 50%;
  }
}

@media (min-width: 900px) {
  .carousel-card {
    min-width: 33.3333%;
  }
}

</style>
