 /* Topbar */
    .topbar {
      background-color: #0d6efd;
      color: #fff;
      font-size: 0.9rem;
      padding: 8px 0;
    }
    .topbar a {
      color: #fff;
      text-decoration: none;
      margin-left: 10px;
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .navbar-brand {
      font-weight: 700;
      color: #0d6efd;
    }
    .navbar-nav .nav-link {
      font-weight: 500;
      margin-right: 15px;
      color: #333;
    }
    .navbar-nav .nav-link:hover {
      color: #0d6efd;
    }

    /* Hero Section */
    .hero {
      background: url('https://static.vecteezy.com/system/resources/thumbnails/036/594/488/small_2x/ai-generated-dental-clinic-advertisment-background-with-copy-space-free-photo.jpg') no-repeat center center/cover;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
    }

    .hero-overlay {
      background-color: rgba(0, 64, 128, 0.6);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.25rem;
    }

    .btn-appointment {
      background-color: #00c9a7;
      color: white;
      padding: 12px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      transition: background-color 0.3s ease;
    }

    .btn-appointment:hover {
      background-color: #009e80;
    }

    /* Trust Badges */
    .trust-badges {
      background-color: #f8f9fa;
      padding: 40px 0;
      text-align: center;
    }

    .trust-icon {
      font-size: 2rem;
      color: #00c9a7;
    }

    .trust-title {
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .navbar-nav {
        text-align: center;
      }
    }
     .section-title {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .about-img {
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .bio-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      height: 100%;
    }

    .bio-card img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .why-us-box {
      text-align: center;
      padding: 30px;
      background: #f8f9fa;
      border-radius: 10px;
      height: 100%;
      transition: all 0.3s ease;
    }

    .why-us-box:hover {
      background: #e9f7ff;
      transform: translateY(-5px);
    }

    .why-us-box i {
      font-size: 2rem;
      color: #00c9a7;
      margin-bottom: 10px;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 1.8rem;
      }
    }
     body {
      background-color: #f8f9fa;
      
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .service-card {
      background-color: #ffffff;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
      transform: translateY(-5px);
      background-color: #e9f7ff;
    }

    .service-icon {
      font-size: 3rem;
      color: #00c9a7;
      margin-bottom: 20px;
    }

    .service-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .service-link {
      text-decoration: none;
      font-size: 0.95rem;
      color: #0d6efd;
      transition: color 0.2s ease;
    }

    .service-link:hover {
      color: #0056b3;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 1.8rem;
      }
    }
     body {
      background-color: #f8f9fa;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    /* Gallery Styling */
    .gallery-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .gallery-card:hover {
      transform: translateY(-5px);
    }

    .gallery-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .gallery-card .card-body {
      text-align: center;
      padding: 15px;
    }

    .before-after-labels {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-top: 10px;
      color: #00c9a7;
    }

    /* Testimonials Styling */
    .testimonial-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      height: 100%;
    }

    .testimonial-card img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 15px;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .testimonial-header h6 {
      margin: 0;
      font-weight: 600;
    }

    .stars {
      color: #f1c40f;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 1.8rem;
      }
    }
     body {
      background-color: #f8f9fa;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .contact-box {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      padding: 30px;
      margin-bottom: 20px;
    }

    .contact-box i {
      font-size: 1.3rem;
      color: #00c9a7;
      margin-right: 10px;
    }

    .contact-info h6 {
      font-weight: 600;
    }

    .map-responsive {
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      height: 0;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .map-responsive iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute;
      border: 0;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 1.8rem;
      }
    }