.hero-section {
  background-color: #d71a1a; /* Bright red background */
  padding: 80px 0;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
}

.hero-image {
  max-width: 90%;
  border-radius: 1rem;
}

.btnshedule:hover,
.btnshedule:focus,
.btnshedule:active,
.btnshedule:visited  {
    color:#fff;
}

.trust-section {
  background-color: #fff;
}

.trust-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-card a {
  color: #000;
  transition: color 0.3s ease;
}

.trust-card a:hover {
  color: #d71a1a; /* subtle red hover to match your brand */
}

.placeholder-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-section {
  background-color: #c4161c; /* deep dental red */
}

.service-card {
  background-color: #d71a1a; /* lighter red shade */
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card a {
  color: #fff;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: #ffd700; /* gentle golden accent */
}

.placeholder-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

 /* Section base */
   section.how-it-works {
      padding: 80px 0;
    }

    .subtitle {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 13px;
      color: #777;
    }

    h2 {
      font-size: 38px;
      font-weight: 700;
      margin-top: 10px;
    }

    .lead {
      color: #555;
      font-size: 16px;
      margin-bottom: 50px;
    }

    .process-container {
      display: flex;
      border: 1px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
    }

    /* Column 1 (Active step) */
    .process-step.main {
      flex: 3;
      padding: 40px;
      position: relative;
    }

    .process-step.main .step-number {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .process-step.main .step-title {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .process-step.main .step-desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 25px;
    }

    .process-step.main .vertical-label {
        position: absolute;
        left: 15px;
        bottom: 0%;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: left center;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        background: #fff;
        padding: 0 10px;
    }

    /* Small columns (02, 03, 04) */
    .process-step.side {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      border-left: 1px solid #ddd;
      padding: 20px 0;
      position: relative;
    }

    .process-step.side .step-number {
      font-size: 18px;
      font-weight: 700;
    }

    .process-step.side .vertical-label {
      position: absolute;
      bottom: 58px;
      left: 50%;
      transform: translateX(-50%) rotate(-90deg);
      transform-origin: center;
      font-weight: 600;
      font-size: 13px;
      text-transform: capitalize;
      white-space: nowrap;
    }
    
    .testimonial-section {
      padding: 80px 0;
      text-align: center;
    }
    .testimonial-logo img {
      height: 30px;
      margin-bottom: 25px;
    }
    .testimonial-text {
      font-size: 1.2rem;
      font-style: italic;
      color: #333;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .testimonial-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 15px;
    }
    .testimonial-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testimonial-name {
      font-weight: 600;
      margin-bottom: 5px;
      color: #000;
    }
    .testimonial-role {
      color: #777;
      font-size: 0.9rem;
    }

    /* Carousel controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #000;
      border-radius: 50%;
      padding: 10px;
    }
    
    .quote-section {
      padding: 100px 20px;
      text-align: center;
    }

    .quote-section h2 {
      font-size: 2.5rem;
      font-weight: 600;
      color: #d70f0f;
      margin-bottom: 15px;
    }

    .quote-section p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 30px;
    }

    .quote-form {
      display: flex;
      justify-content: center;
      max-width: 500px;
      margin: 0 auto 15px;
    }

    .quote-form input {
      border: 1px solid #ddd;
      border-radius: 50px 0 0 50px;
      padding: 12px 20px;
      width: 70%;
      font-size: 1rem;
      outline: none;
    }

    .quote-form button {
      border: none;
      background-color: #e63946;
      color: #fff;
      border-radius: 0 50px 50px 0;
      padding: 12px 20px;
      font-weight: 500;
      font-size: 1rem;
      transition: 0.3s;
    }

    .quote-form button:hover {
      background-color: #d62828;
    }

    .quote-section small {
      display: block;
      margin-top: 10px;
      color: #888;
      font-size: 0.8rem;
    }
    
    .offer-section {
      text-align: center;
      padding: 100px 20px;
    }

    .offer-section small {
      text-transform: uppercase;
      font-weight: 600;
      color: #555;
      display: block;
      margin-bottom: 10px;
    }

    .offer-section h2 {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .offer-section p {
      color: #555;
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1rem;
    }

    .partner-logos img {
      height: 30px;
      margin: 0 15px;
      opacity: 0.9;
      transition: 0.3s;
    }

    .partner-logos img:hover {
      opacity: 1;
    }

    .btn-group-custom {
      margin: 25px 0 40px;
    }

    .btn-custom {
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 30px;
      padding: 8px 20px;
      font-size: 0.9rem;
      margin: 0 8px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background-color: #000;
      color: #fff;
      border-color: #000;
    }

    .image-placeholder {
      background-color: #f3f3f3;
      border-radius: 10px;
      padding: 100px 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .image-placeholder i {
      font-size: 40px;
      color: #bbb;
    }
    
    .faq-section {
      padding: 80px 0;
      text-align: center;
    }

    .faq-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      margin-bottom: 10px;
    }

    .faq-section p.subtitle {
      font-weight: 600;
      margin-bottom: 40px;
    }

    .accordion-item {
      background-color: #d93b4a;
      border: none;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .accordion-button {
      background-color: #d93b4a;
      color: #fff;
      font-weight: 700;
      border: none;
      box-shadow: none;
      border-radius: 10px;
      position: relative;
    }

    /* Remove default Bootstrap arrow */
    .accordion-button::after {
      display: none !important;
    }
    
    .accordion-button:not(.collapsed) {
        color: #434447;
        background-color: #ffe7f1;
        box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    }

    /* Add custom + and - sign */
    .accordion-button::before {
      content: "+";
      font-size: 1.8rem;
      color: #fff;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease, content 0.3s ease;
    }

    .accordion-button:not(.collapsed)::before {
      content: "–";
      transform: translateY(-50%) rotate(180deg);
    }

    .accordion-body {
      background-color: #c8102e;
      color: #fff;
      font-size: 15px;
      border-radius: 0 0 10px 10px;
      text-align: left;
    }

    .info-section {
      margin-top: 60px;
    }

    .info-section h4 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .info-section p {
      font-weight: 600;
    }
    
        .cta-section {
      padding: 80px 0;
      text-align: center;
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      margin-bottom: 15px;
    }

    .cta-section p {
      font-weight: 600;
      color: #333;
      margin-bottom: 30px;
    }

    .cta-buttons .btn {
      border-radius: 30px;
      padding: 8px 25px;
      font-weight: 600;
      margin: 5px;
    }

    .btn-quote {
      background-color: #e63946;
      color: #fff;
      border: none;
    }

    .btn-quote:hover {
      background-color: #d62828;
      color: #fff;
    }

    .btn-connect {
      background-color: #f1f1f1;
      color: #333;
      border: none;
    }

    .btn-connect:hover {
      background-color: #ddd;
      color: #000;
    }

    .brand-logos {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .brand-logos img {
      height: 40px;
      object-fit: contain;
      opacity: 0.9;
      transition: 0.3s;
    }

    .brand-logos img:hover {
      opacity: 1;
      transform: scale(1.05);
    }
    
    .footer-section {
  background-color: #d91d1d; /* Bright red background */
  font-size: 14px;
}

.footer-logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
}

.footer-section p {
  margin-bottom: 0.3rem;
}

.footer-section hr {
  opacity: 0.3;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

.footer-section a:hover {
  text-decoration: underline;
}

    .section {
      background-color: #f0f0f0;
      border-left: 4px solid #e60000;
      padding: 20px;
      margin-bottom: 25px;
      border-radius: 5px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
    }
    .sub_sub_heading {
    font-size: 30px;
    padding-top: 2%;
     padding-bottom: 2%;
    color: #333;
}
.benefit-cardh4 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 22px;
    color: #e31a34 !important;
}
  .font18{
      font-size:18px;
      margin-bottom: 15px;
  }
      .highlight {
      color: #e31a34;
      font-weight: bold;
    }
    
      table {
    width: 100%;
    border-collapse: collapse;
  }

  th {
    text-align: left;
    padding: 10px;
    font-weight: bold;
  }

  td {
    padding: 10px;
    vertical-align: top;
  }

  th, td {
    border-bottom: 1px solid #ddd;
  }

  th:first-child, td:first-child {
    color: #d71a1a; /* Red text */
    font-weight: bold;
  }

  a {
    color: #d71a1a;
    text-decoration: underline;
  }

.img-logo {
    max-width: 35%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-image {
    margin-top: 30px;
  }
.process-container {
        flex-direction: column;
      }
      .process-step.side {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid #ddd;
        justify-content: center;
        align-items: center;
        padding: 15px;
      }
      .process-step.side .vertical-label {
        position: static;
        transform: none;
      }
      .process-step.main .vertical-label {
        display: none;
      }
}

@media (max-width: 768px) {
  .trust-section h2 {
    font-size: 1.8rem;
  }
.services-section h2 {
    font-size: 1.8rem;
  }
.testimonial-quote {
        font-size: 18px;
        padding: 0 15px;
      }
    .cta-section h2 {
        font-size: 30px;
    }
    .brand-logos img {
        height: 30px;
    }
}

@media (max-width: 576px) {
      .quote-form {
        flex-direction: column;
        gap: 10px;
      }

      .quote-form input, .quote-form button {
        width: 100%;
        border-radius: 50px;
      }
    }