.dental-widget-container {
      width: 100%;
      max-width: 380px;
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .dental-header-section {
      background: linear-gradient(180deg, #0a4a8a 0%, #083a70 100%);
      padding: 32px 24px 24px;
      text-align: center;
      position: relative;
    }

    .dental-logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
     
      margin-bottom: 16px;
    }

    .dental-logo-box {
   
      padding: 12px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
      width: 25%;
      
    }

    .dental-logo-icon {
      width: 48px;
      height: 48px;
    }

    .dental-phone-icon {
    
      padding: 12px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
    }

    .dental-main-title {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    .dental-subtitle-text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 400;
    }

    .dental-form-wrapper {
      padding: 28px 24px 24px;
      background: #f8f9fb;
    }

    .dental-input-group {
      margin-bottom: 16px;
    }

    .dental-text-input,
    .dental-message-area {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #e1e8ed;
      border-radius: 24px;
      font-size: 15px;
      background: #ffffff;
      transition: all 0.3s ease;
      outline: none;
    }

    .dental-text-input:focus,
    .dental-message-area:focus {
      border-color: #0a4a8a;
      box-shadow: 0 0 0 3px rgba(10, 74, 138, 0.1);
    }

    .dental-text-input::placeholder,
    .dental-message-area::placeholder {
      color: #94a3b8;
    }

    .dental-message-area {
      resize: vertical;
      min-height: 60px;
      border-radius: 16px;
    }

    .dental-consent-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
    }

    .dental-checkbox-input {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      cursor: pointer;
      accent-color: #0a4a8a;
      border-radius: 4px;
      border: 2px solid #0a4a8a;
    }

    .dental-consent-label {
      font-size: 14px;
      color: #64748b;
      line-height: 1.5;
      cursor: pointer;
    }

    .dental-submit-btn {
       width: 100%;
       padding: 16px;
       background: var(--accent-color);
       color: #ffffff;
       border: none;
       border-radius: 30px;
       font-size: 15px;
       font-weight: 700;
       letter-spacing: 1px;
       cursor: pointer;
       transition: all 0.3s ease;
       box-shadow: 0 8px 20px rgba(18, 186, 178, 0.3);
    }

    .dental-submit-btn:hover {
       background: var(--primary-color);
       transform: translateY(-2px);
       box-shadow: 0 12px 28px rgba(8, 48, 111, 0.4);
    }

    .dental-submit-btn:active {
      transform: translateY(0);
    }

    .dental-features-row {
      display: flex;
      justify-content: space-between;
      padding: 20px 16px;
      background: #ffffff;
      gap: 12px;
    }

    .dental-feature-card {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }

    .dental-icon-circle {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #0a4a8a 0%, #083a70 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
    }

    .dental-feature-text {
      font-size: 11px;
      color: #0a4a8a;
      font-weight: 600;
      line-height: 1.4;
    }

    @media (max-width: 480px) {
      .dental-widget-container {
        max-width: 100%;
        border-radius: 12px;
      }

      .dental-header-section {
        padding: 24px 20px 20px;
      }

      .dental-main-title {
        font-size: 22px;
      }

      .dental-form-wrapper {
        padding: 24px 20px 20px;
      }

      .dental-features-row {
        padding: 16px 12px;
        gap: 8px;
      }

      .dental-feature-text {
        font-size: 10px;
      }
    }
.dental-implants-section {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.dental-implants-section h2 {
    text-align: left;
    margin-bottom: 15px;
}

.dental-implants-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.dental-images-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.dental-image-item {
    flex: 1;
    text-align: center;
}

.dental-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dental-image-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .dental-images-row {
        flex-direction: column;
    }
}





.dental-page-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            
            display: flex;
            align-items: center;
           
           
        }

        .dental-form-container {
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 900px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
        }

        .dental-left-section {
            padding: 50px 40px;
            background: linear-gradient(135deg, #fef5f7 0%, #fdeef2 100%);
            position: relative;
        }

        .dental-form-title {
            color: #003366;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .dental-input-group {
            margin-bottom: 20px;
        }

        .dental-input-field {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: white;
        }

        .dental-input-field:focus {
            outline: none;
            border-color: #003366;
        }

        .dental-input-field::placeholder {
            color: #999;
        }

        .dental-checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            margin: 20px 0;
        }

        .dental-checkbox-input {
            margin-right: 10px;
            margin-top: 4px;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .dental-checkbox-label {
            font-size: 13px;
            color: #555;
            line-height: 1.4;
        }

        .dental-submit-button {
            width: 100%;
            padding: 16px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dental-submit-button:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(8, 48, 111, 0.3);
        }

        .dental-right-section {
            background: linear-gradient(135deg, #003366 0%, #004488 100%);
            padding: 50px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .dental-wave-decoration {
            position: absolute;
            left: -50px;
            top: 0;
            bottom: 0;
            width: 90px;
            background: linear-gradient(90deg, transparent 0%, #ff9eb5 50%, #ff6b8a 100%);
            border-radius: 0 100% 100% 0;
            opacity: 0.8;
        }

        .dental-tooth-icon {
            position: absolute;
            left: 30px;
            top: 35%;
            transform: translateY(-50%);
            font-size: 80px;
            opacity: 0.9;
        }

        .dental-logo-section {
            text-align: right;
            margin-bottom: 30px;
        }

        .dental-logo-text {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .dental-heading-text {
            text-align: right;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .dental-contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .dental-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .dental-info-icon {
            font-size: 20px;
            margin-top: 3px;
            min-width: 20px;
        }

        .dental-info-content {
            font-size: 15px;
            line-height: 1.6;
        }

        .dental-phone-number {
            font-weight: 600;
            font-size: 16px;
        }

        .dental-email-link {
            color: white;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .dental-form-container {
                grid-template-columns: 1fr;
            }

            .dental-right-section {
                padding: 40px 30px;
            }

            .dental-heading-text {
                font-size: 24px;
            }

            .dental-tooth-icon {
                display: none;
            }
        }

      
         .dental-types-section {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            background-color: white;
        }

        .dental-types-section h2 {
            color: #0056b3;
            text-align: left;
            margin-bottom: 15px;
            font-size: 24px;
            font-weight: 600;
        }

        .dental-types-section h3 {
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .dental-types-section p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
            font-size: 15px;
        }

        /* Duplicate Section with Unique CSS */
        .implant-info-container {
            outline: 1px solid #dddddd;
            border-radius: 10px;
            padding: 1.25rem;
            margin-bottom: 1.25rem;
            background-color: #ffffff;
        }

        .implant-info-container .main-heading {
            color: #0056b3;
            text-align: left;
            margin-bottom: 0.9375rem;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .implant-info-container .sub-heading {
            margin-top: 1.25rem;
            margin-bottom: 0.625rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: #333333;
        }

        .implant-info-container .text-content {
            margin-bottom: 0.9375rem;
            line-height: 1.6;
            color: #555555;
            font-size: 0.9375rem;
        }


        .benefits-wrapper {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 1.25rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .benefits-title {
            color: #0056b3;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: left;
        }

        .benefits-intro {
            color: #333;
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .benefits-list {
            list-style-type: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .benefit-item {
            color: #555;
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .benefit-label {
            color: #000;
            font-weight: 600;
        }

        .benefits-description {
            color: #555;
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .benefits-location {
            color: #555;
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .benefits-link {
            color: #c62828;
            text-decoration: none;
        }

        .benefits-link:hover {
            text-decoration: underline;
        }

        .appointment-btn {
            background-color: var(--accent-color);
            color: #ffffff;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
        }

        .appointment-btn:hover {
            background-color: var(--primary-color);
        }





.testimonial__wrapper {
            font-family: 'Georgia', serif;
           
            min-height: 100vh;
            padding: 60px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial__container {
            max-width: 900px;
            width: 100%;
            background: #f4e8e9;
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: none;
        }

        .testimonial__header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonial__title {
            font-size: 2.5rem;
            color: #003366;
            font-weight: 600;
            line-height: 1.3;
        }

        .testimonial__slider {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .testimonial__slides {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .testimonial__slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial__content {
            text-align: center;
        }

        .testimonial__text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #a8a8a8;
            font-style: italic;
            margin-bottom: 30px;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial__author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .testimonial__avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .testimonial__name {
            font-size: 1.2rem;
            color: #333;
            font-weight: 600;
            font-style: normal;
        }

        .testimonial__rating {
            color: #0066cc;
            font-size: 0.95rem;
            font-style: normal;
        }

        .testimonial__dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
        }

        .testimonial__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4d4d4;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial__dot--active {
            background: #333;
            width: 30px;
            border-radius: 5px;
        }

        .testimonial__platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }

        .testimonial__platform {
            text-align: center;
        }

        .testimonial__platform__logo {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial__google {
            color: #4285f4;
        }

        .testimonial__practo {
            color: #4a90e2;
        }

        .testimonial__justdial {
            color: #ff6b35;
        }

        .testimonial__facebook {
            color: #1877f2;
        }

        .testimonial__platform__rating {
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .testimonial__platform__count {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
        }

        .testimonial__platform__link {
            color: #d32f2f;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .testimonial__platform__link:hover {
            color: #b71c1c;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .testimonial__container {
                padding: 40px 25px;
            }

            .testimonial__title {
                font-size: 1.8rem;
            }

            .testimonial__text {
                font-size: 1rem;
                min-height: 250px;
            }

            .testimonial__platforms {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }



.dentalContainerWrap_k7m2 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Web (West European)', 'Helvetica Neue', sans-serif;
            
            min-height: 100vh;
            padding: 40px 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .dentalContentBox_p9n4 {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            
            width: 100%;
            padding: 44px 48px;
            border: 1px solid #e5e7eb;
        }

        .dentalMainHeading_t3r8 {
            font-size: 28px;
            font-weight: 600;
            color: #0066cc;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .dentalIntroText_w6j1 {
            font-size: 15px;
            line-height: 1.6;
            color: #1f2937;
            margin-bottom: 28px;
        }

        .stepSectionBlock_h8v5 {
            margin-bottom: 28px;
        }

        .stepTitleText_m2z9 {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 14px;
        }

        .procedureListWrap_b4n7 {
            list-style: none;
            margin-left: 0;
        }

        .procedureListItem_c5k3 {
            margin-bottom: 16px;
            padding-left: 0;
        }

        .procedureItemLabel_d8f6 {
            font-weight: 600;
            color: #1f2937;
            font-size: 15px;
        }

        .procedureItemDesc_a1q4 {
            color: #4b5563;
            line-height: 1.6;
            margin-top: 2px;
            font-size: 15px;
        }

        .doctorInfoBlock_r7y2 {
            margin-top: 28px;
            font-size: 15px;
            line-height: 1.6;
            color: #1f2937;
        }

        .doctorLinkText_s9u6 {
            color: #dc2626;
            text-decoration: none;
            font-weight: 400;
        }

        .doctorLinkText_s9u6:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .dentalContentBox_p9n4 {
                padding: 32px 24px;
            }

            .dentalMainHeading_t3r8 {
                font-size: 24px;
            }
        }















   .dental-services-container-main {
            width: 100%;
            margin: 0;
            background-color: #ffffff;
        
            border-radius: 0;
        }

        .dental-services-title-heading {
            text-align: center;
            color: #003d5c;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .dental-services-title-divider {
            width: 550px;
            height: 2px;
            background: linear-gradient(to right, transparent, #17a2b8, transparent);
            margin: 0 auto 60px;
        }

        .dental-services-grid-layout {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .dental-service-item-card {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dental-service-icon-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dental-service-icon-wrapper svg {
            width: 60px;
            height: 60px;
        }

        .dental-service-item-card p {
            color: #003d5c;
            font-size: 0.95em;
            line-height: 1.4;
        }

        @media (max-width: 1024px) {
            .dental-services-grid-layout {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .dental-services-container-main {
                padding: 40px 15px;
            }

            .dental-services-grid-layout {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .dental-services-title-heading {
                font-size: 2em;
            }

            .dental-services-title-divider {
                width: 80%;
            }
        }

        @media (max-width: 480px) {
            .dental-services-container-main {
                padding: 30px 10px;
            }

            .dental-services-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }


.ytp__main__wrapper {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 500px;
}

.ytp__playlist__sidebar {
    width: 402px;
    background-color: #f9f9f9;
    border-right: 1px solid #e5e5e5;
    flex-shrink: 0;
    min-height: 500px;
}

        .ytp__playlist__header {
            padding: 12px 24px;
            background-color: #fff;
            border-bottom: 1px solid #e5e5e5;
        }

        .ytp__playlist__title__text {
            font-size: 14px;
            font-weight: 400;
            color: #0f0f0f;
            margin-bottom: 4px;
        }

        .ytp__playlist__stats {
            font-size: 12px;
            color: #606060;
        }

        .ytp__playlist__items__container {
            max-height: calc(80vh - 60px);
            overflow-y: auto;
            background-color: #f9f9f9;
        }

        .ytp__playlist__items__container::-webkit-scrollbar {
            width: 8px;
        }

        .ytp__playlist__items__container::-webkit-scrollbar-track {
            background: transparent;
        }

        .ytp__playlist__items__container::-webkit-scrollbar-thumb {
            background: #909090;
            border-radius: 4px;
        }

        .ytp__playlist__items__container::-webkit-scrollbar-thumb:hover {
            background: #606060;
        }

        .ytp__playlist__item__wrapper {
            display: flex;
            padding: 8px 0;
            cursor: pointer;
            transition: background-color 0.15s;
            background-color: #f9f9f9;
        }

        .ytp__playlist__item__wrapper:hover {
            background-color: #f2f2f2;
        }

        .ytp__playlist__item__wrapper.ytp__active__video {
            background-color: #e5e5e5;
        }

        .ytp__playlist__item__wrapper.ytp__active__video .ytp__video__title__text {
            color: #065fd4;
        }

        .ytp__thumbnail__container {
            position: relative;
            width: 120px;
            height: 68px;
            margin: 0 16px;
            flex-shrink: 0;
            background-color: #000;
        }

        .ytp__thumbnail__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ytp__play__icon__overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .ytp__playlist__item__wrapper:hover .ytp__play__icon__overlay {
            opacity: 1;
        }

        .ytp__play__icon__svg {
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        .ytp__video__info__section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            padding-right: 16px;
        }

        .ytp__video__title__text {
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: #0f0f0f;
            margin-bottom: 2px;
        }

        .ytp__video__duration__text {
            font-size: 12px;
            color: #606060;
        }

        .ytp__main__video__section {
            flex: 1;
            min-width: 0;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ytp__video__player__wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
        }

        .ytp__video__player__wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .ytp__video__metadata__section {
            padding: 20px 24px;
            background-color: #fff;
        }

        .ytp__current__video__title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 8px;
            color: #0f0f0f;
            line-height: 1.4;
        }

        .ytp__current__video__desc {
            font-size: 14px;
            color: #606060;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .ytp__main__wrapper {
                flex-direction: column-reverse;
            }

            .ytp__playlist__sidebar {
                width: 100%;
                border-right: none;
                border-top: 1px solid #e5e5e5;
            }

            .ytp__playlist__items__container {
                max-height: 400px;
            }
        }



/* Main container */
.dentalDSD-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  box-sizing: border-box;
}

/* ----- Section 1: Profile ----- */
.dentalDSD-profile-figure{
  margin: 0;
  text-align: center;
}

.dentalDSD-profile-image{
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: block;
}

.dentalDSD-profile-title{
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #0b2f4a;
}

.dentalDSD-muted{
  font-weight: 500;
  font-size: .95rem;
  color:#2a5870;
}

.dentalDSD-profile-content p{
  color:#394b57;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

/* ----- Section 2: Certificates ----- */
.dentalDSD-certs-section{
  margin-top: 44px;
  padding: 60px 0;
}

.dentalDSD-cert-card{
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11,35,52,0.08);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(11,35,52,0.05);
}
.dentalDSD-cert-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(11,35,52,0.12);
}

.dentalDSD-cert-image{
  width: 100%;
  height: 350px;
  object-fit: contain;
  display:block;
  margin-bottom: 15px;
  border-radius: 8px;
}

.dentalDSD-cert-caption{
  font-size: 0.95rem;
  color:#25394a;
  margin: 0;
  font-weight: 600;
}

/* ----- Responsive styles ----- */
@media (max-width: 900px){
  .dentalDSD-profile-image{
    max-height: 360px;
  }
}

@media (max-width: 520px){
  .dentalDSD-profile-image{
    max-height: 260px;
  }
  .dentalDSD-certs-section .container{
    padding-left: 14px;
    padding-right: 14px;
  }
  .dentalDSD-profile-title{
    font-size: 1.25rem;
  }
}


.dentalcare__wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .dentalcare__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .dentalcare__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .dentalcare__content__block {
            padding-right: 20px;
        }

        .dentalcare__heading {
            color: #003366;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .dentalcare__text {
            color: #555;
            font-size: 16px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .dentalcare__services__list {
            color: #003366;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.8;
        }

        .dentalcare__timeline {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
        }

        .dentalcare__year__block {
            margin-bottom: 30px;
        }

        .dentalcare__year__title {
            color: #003366;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #003366;
        }

        .dentalcare__achievement__item {
            color: #555;
            font-size: 15px;
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }

        .dentalcare__achievement__item:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #003366;
            font-weight: bold;
        }

        .dentalcare__stats__section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding: 60px 0;
            border-top: 2px solid #e0e0e0;
        }

        .dentalcare__stat__card {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .dentalcare__stat__card:hover {
            transform: translateY(-5px);
        }

        .dentalcare__icon__container {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dentalcare__trophy__icon {
            width: 60px;
            height: 60px;
            fill: none;
            stroke: #FFD700;
            stroke-width: 2;
        }

        .dentalcare__tooth__icon {
            width: 60px;
            height: 60px;
            fill: none;
            stroke: #4A90E2;
            stroke-width: 2;
        }

        .dentalcare__smile__icon {
            width: 60px;
            height: 60px;
            fill: none;
            stroke: #50C878;
            stroke-width: 2;
        }

        .dentalcare__stat__title {
            color: #003366;
            font-size: 18px;
            font-weight: 700;
            margin-top: 10px;
        }

        @media (max-width: 968px) {
            .dentalcare__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dentalcare__content__block {
                padding-right: 0;
            }

            .dentalcare__stats__section {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .dentalcare__heading {
                font-size: 28px;
            }
        }

        @media (max-width: 640px) {
            .dentalcare__container {
                padding: 40px 15px;
            }

            .dentalcare__heading {
                font-size: 24px;
            }

            .dentalcare__text {
                font-size: 15px;
            }

            .dentalcare__timeline {
                padding: 20px;
            }

            .dentalcare__year__title {
                font-size: 20px;
            }

            .dentalcare__icon__container {
                width: 70px;
                height: 70px;
            }

            .dentalcare__trophy__icon,
            .dentalcare__tooth__icon,
            .dentalcare__smile__icon {
                width: 50px;
                height: 50px;
            }
        }



.dental__gallery__container {
    font-family: 'Georgia', serif;
    
    min-height: 100vh;
    padding: 40px 15px;
    max-width: 1400px;
    margin: 0 auto;
}

        .dental__gallery__header {
            text-align: center;
            margin-bottom: 40px;
        }

        .dental__gallery__title {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .dental__gallery__underline {
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #3182ce, transparent);
            margin: 0 auto;
        }

        .dental__gallery__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .dental__gallery__item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 1;
        }

        .dental__gallery__item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .dental__gallery__item__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Lightbox Styles */
        .dental__lightbox__overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dental__lightbox__overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .dental__lightbox__content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dental__lightbox__img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        }

        .dental__lightbox__close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .dental__lightbox__close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .dental__lightbox__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .dental__lightbox__nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .dental__lightbox__prev {
            left: 30px;
        }

        .dental__lightbox__next {
            right: 30px;
        }

        @media (max-width: 768px) {
            .dental__gallery__title {
                font-size: 1.8rem;
            }

            .dental__gallery__grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }

            .dental__lightbox__nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .dental__lightbox__prev {
                left: 10px;
            }

            .dental__lightbox__next {
                right: 10px;
            }

            .dental__lightbox__close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 24px;
            }

            .dental-consent-wrapper {
                flex-direction: row;
                align-items: flex-start;
                gap: 10px;
            }

            .dental-checkbox-input {
                margin-top: 2px;
                flex-shrink: 0;
            }

            .dental-checkbox-label {
                font-size: 13px;
                line-height: 1.4;
            }

            .breadcrumb {
                background: rgba(255, 255, 255, 0.1);
                padding: 8px 12px;
                border-radius: 5px;
                margin-top: 10px;
            }

            .breadcrumb-item a {
                color: #fff;
                text-decoration: none;
            }

            .breadcrumb-item a:hover {
                color: #17a2b8;
            }

            .breadcrumb-item.active {
                color: #17a2b8;
            }

            .breadcrumb-item + .breadcrumb-item::before {
                content: ">";
                color: #fff;
            }

        }

        .testimonial-video-section {
    padding-top: 150px;
    padding-bottom: 50px;
}


.hotel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}
.hotel-container h1{
      font-size: 2.5rem;
        color: #003366;
            text-align: center;
            margin-bottom: 30px;
        
}

.hotel-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.hotel-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

.hotel-highlight {
    font-weight: bold;
    color: #003366;
}

.hotel-cta-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.hotel-cta-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.hotel-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hotel-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    aspect-ratio: 4/3;
}

.hotel-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-image-box:hover img {
    transform: scale(1.05);
}

/* Tablet styles */
@media (max-width: 768px) {
    .hotel-container {
        padding: 30px 15px;
    }

    .hotel-content {
        padding: 20px;
    }

    .hotel-content p {
        font-size: 0.95rem;
    }

    .hotel-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .hotel-container {
       padding: 50px 0px 150px;
    }

    .hotel-content {
        padding: 15px;
    }

    .hotel-content p {
        font-size: 0.9rem;
        text-align: left;
    }

    .hotel-image-grid {
        gap: 10px;
    }
}


/* CBCT Page Header Styles */
.cbct-bg {
    position: relative;
    overflow: hidden;
}

.cbct-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  
}

.cbct-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cbct-bg .page-header-box,
.cbct-bg .cbct-description {
    position: relative;
    z-index: 2;
    color: white;
}

.cbct-bg .page-header-box h2 {
    color: white;
    text-align: right;
    margin-bottom: 2rem;
}

.cbct-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: right;
}


.cbct-description .appointment-button {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.cbct-description .appointment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.cbct-description .appointment-button {
    display: block;
    width: fit-content;
    margin-left: auto;
}

@media (max-width: 768px) {
    .cbct-bg .row {
        text-align: center;
    }

    .cbct-description p {
        font-size: 1rem;
    }
}

/* CBCT Section Styles */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
}

.text-content h1 {
    color: #003d82;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}

.text-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.book-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
}

.book-btn:hover {
    background-color: var(--primary-color);
}

.cbct__gallery__wrapper {
    position: relative;
}

.cbct__carousel__frame {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.cbct__carousel__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.cbct__carousel__item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cbct__image__display {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbct__image__display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cbct__nav__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.cbct__nav__button:hover {
    background: white;
}

.cbct__nav__button--prev {
    left: 10px;
}

.cbct__nav__button--next {
    right: 10px;
}

.cbct__pagination__dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.cbct__pagination__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.cbct__pagination__indicator--active {
    background: white;
}

.cbct__demo__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .cbct__gallery__wrapper {
        min-height: 400px;
    }
    .videoonhome{
        padding-bottom: 20px;
    }
}

/* CBCT Additional Content Styles */
.cbct-process-section {
    margin-top: 60px;
    padding: 40px 0;
}

.cbct-process-section h2 {
    color: #003d82;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.cbct-process-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 40px;
}

.cbct-process-list li {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.cbct-process-list li strong {
    color: #003d82;
    font-weight: 600;
}

.cbct-advantages-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.cbct-advantages-section h3 {
    color: #003d82;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.cbct-advantages-list {
    list-style-type: disc;
    padding-left: 20px;
}

.cbct-advantages-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.cbct-advantages-list li strong {
    color: #003d82;
    font-weight: 600;
}

.cbct-why-choose-section {
    margin-bottom: 40px;
}

.cbct-why-choose-section h3 {
    color: #003d82;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cbct-why-choose-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.cbct-visit-section {
    background-color: #e8f4fd;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.cbct-visit-section h3 {
    color: #003d82;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cbct-visit-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cbct-visit-section .book-btn {
    margin: 30px auto;
    display: inline-block;
}