/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
    
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}



.doctor-card {
    background: var(--light);
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
}


.doctor-card {
    background: var(--light);
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.doctor-card h5 {
    font-size: 22px;   /* aap 24px bhi kar sakte ho */
    font-weight: 700;
}



.why-card {
    background: #ffffff;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    font-size: 14px;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.why-card h6 {
    font-weight: 600;
}

.why-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.why-card ul li {
    margin-bottom: 4px;
}




.treatment-card {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 22px;
    transition: 0.3s;
}

.treatment-card h6 {
    font-weight: 600;
    font-size: 14px;
}

.hover-image {
    position: absolute;
    bottom: -120%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    opacity: 0;
    transition: 0.4s ease;
}

.hover-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.treatment-card:hover .hover-image {
    bottom: 20px;
    opacity: 1;
}

.treatment-card:hover .icon-box {
    background: var(--primary);
}

.treatment-card:hover .icon-box i {
    color: #fff !important;
}


/* 5 Columns Layout for Desktop */
@media (min-width: 992px) {
    .col-lg-custom {
        width: 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}


.why-section {
    padding-bottom: 80px;
}

.treatment-section {
    padding-top: 80px;
}



.figure-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.figure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.figure-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
}

.figure-number span {
    color: var(--primary);
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 5px;
}



.plan-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-weight: 700;
    margin: 10px 0 20px;
    color: var(--dark);
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #777;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.plan-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 14px;
}

.premium-plan {
    background: var(--primary);
    transform: scale(1.05);
}

.premium-plan .plan-list li::before {
    color: #fff;
}

.premium-plan .price span {
    color: #fff;
}



.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    padding: 15px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--dark);
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background: #ffffff;
    color: #555;
    font-size: 14px;
}

.accordion-button:focus {
    box-shadow: none;
}

.section-space {
    margin-top: 80px;
}



/* Header Green Band */
.why-header {
    background: var(--primary);
}

/* Advantage Cards */
.adv-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.adv-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.adv-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.adv-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}


/* Fix Why Choose Images */
.adv-card img {
    width: 100%;
    height: 220px;        /* Same height for all */
    object-fit: cover;    /* Proper crop */
}




/* Header */
.sterilization-header {
    background: var(--primary);
}

/* Wrapper */
.process-wrapper {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Step Layout */
.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.process-step.left {
    flex-direction: row;
}

.process-step.right {
    flex-direction: row-reverse;
}

.process-step img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-content {
    width: 55%;
}

.process-content h6 {
    font-weight: 600;
    color: var(--primary);
    font-size: 40px;
}

/* Arrow */
.arrow-down {
    text-align: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .process-content {
        width: 100%;
        margin-top: 15px;
    }
}




/* Safety Header */
.safety-header {
    background: var(--primary);
    padding: 70px 0;
}

/* Wrapper */
.equipment-wrapper {
    max-width: 1000px;
    margin: auto;
}

/* Item Layout */
.equipment-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.equipment-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Bigger Images */
.equipment-item img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}

/* Bigger Heading */
.equipment-item h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Bigger Description */
.equipment-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .equipment-item {
        flex-direction: column;
        text-align: center;
    }

    .equipment-item img {
        width: 180px;
        height: 180px;
    }
}



/* Header */
.equip-header {
    background: var(--primary);
}

/* Card */
.equip-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* Stagger Animation */
.equip-card:nth-child(1) { animation-delay: .1s; }
.equip-card:nth-child(2) { animation-delay: .2s; }
.equip-card:nth-child(3) { animation-delay: .3s; }
.equip-card:nth-child(4) { animation-delay: .4s; }
.equip-card:nth-child(5) { animation-delay: .5s; }
.equip-card:nth-child(6) { animation-delay: .6s; }
.equip-card:nth-child(7) { animation-delay: .7s; }
.equip-card:nth-child(8) { animation-delay: .8s; }

.equip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Image */
.equip-img {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.equip-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s ease;
}

.equip-card:hover img {
    transform: scale(1.1);
}

/* Text */
.equip-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.equip-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.equip-card h5 {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.equip-card p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}



/* Section spacing */
.quality-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Card */
.quality-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* Stagger animation */
.quality-card:nth-child(1) { animation-delay: .1s; }
.quality-card:nth-child(2) { animation-delay: .2s; }
.quality-card:nth-child(3) { animation-delay: .3s; }
.quality-card:nth-child(4) { animation-delay: .4s; }
.quality-card:nth-child(5) { animation-delay: .5s; }
.quality-card:nth-child(6) { animation-delay: .6s; }

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Circular Image */
.quality-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    border: 3px dashed var(--primary);
    animation: rotateBorder 8s linear infinite;
}

.quality-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Title */
.quality-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Paragraph */
.quality-card p {
    font-size: 14px;
    color: #555;
    text-align: justify;
    line-height: 1.7;
    margin: 0;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.justify-text {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}



/* Section */
.braces-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Image */
.braces-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.braces-img:hover img {
    transform: scale(1.03);
}

/* Content */
.braces-content {
    animation: fadeUp 0.8s ease forwards;
}

/* Title */
.braces-title {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.braces-title::after {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary), #b9e4f7);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
}

/* Paragraph */
.braces-content p {
    text-align: justify;
    line-height: 1.8;
    color: #555;
}

/* List */
.braces-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.braces-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.braces-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section */
.uses-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Title */
.uses-title {
    font-weight: 700;
    display: inline-block;
    padding: 10px 40px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.uses-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Cards */
.uses-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    overflow: hidden;
    animation: fadeUp 0.8s ease forwards;
}

.uses-card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s ease;
}

.uses-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
}

.uses-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.uses-card:hover img {
    transform: scale(1.05);
}

/* List */
.uses-list {
    list-style: none;
    padding-left: 0;
}

.uses-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.uses-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section */
.types-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Title */
.types-title {
    font-weight: 700;
    display: inline-block;
    padding: 10px 50px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.types-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.types-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
}

.types-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Image */
.types-img {
    position: relative;
}

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

/* Label */
.types-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.primary-label {
    background: var(--primary);
}

.secondary-label {
    background: #4a3fa3;
}

/* Content */
.types-content {
    padding: 40px 25px 30px;
    text-align: justify;
}

.types-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.types-content p {
    color: #555;
    line-height: 1.7;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Section */
.adv-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Title */
.adv-title {
    font-weight: 700;
    display: inline-block;
    padding: 10px 50px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.adv-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.adv-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Headings */
.adv-heading {
    font-weight: 600;
    margin-bottom: 25px;
}

/* List */
.adv-list {
    list-style: none;
    padding-left: 0;
}

.adv-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.adv-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Disadvantage Red Icon */
.disadvantage li::before {
    content: "✖";
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .adv-card {
        padding: 30px 20px;
    }
}



/* Section spacing */
.before-after-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-heading {
    display: inline-block;
    font-weight: 700;
    padding: 10px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-heading::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.ba-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Image */
.ba-img {
    overflow: hidden;
    border-radius: 15px;
}

.ba-img img {
    width: 100%;
    transition: 0.5s ease;
}

.ba-card:hover .ba-img img {
    transform: scale(1.08);
}

/* Caption */
.ba-caption {
    margin-top: 15px;
    font-weight: 500;
    color: #555;
}


/* FAQ Section Spacing */
.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.faq-title {
    display: inline-block;
    font-weight: 700;
    padding: 10px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.faq-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Accordion Styling */
.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.custom-faq .accordion-button {
    background: #ffffff;
    font-weight: 600;
    color: var(--dark);
    padding: 18px 20px;
    transition: 0.3s;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary);
    box-shadow: none;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    background: #ffffff;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Hover Effect */
.custom-faq .accordion-item:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}



/* Section Spacing */
.why-choose-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.why-title {
    display: inline-block;
    font-weight: 700;
    padding: 10px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.why-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.why-card-premium {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    height: 100%;
}

.why-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Icon Circle */
.why-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    transition: 0.3s ease;
}

.why-card-premium:hover .why-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Text */
.why-card-premium h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card-premium p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #3b4cca);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Heading */
.cta-heading {
    font-weight: 700;
    font-size: 32px;
}

/* Button */
.cta-btn {
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 22px;
    }
}



/* Section spacing */
.implant-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Title Gradient */
.implant-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 40px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.implant-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image styling */
.implant-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.implant-img img {
    width: 100%;
    transition: 0.5s ease;
}

.implant-img:hover img {
    transform: scale(1.05);
}

/* List styling */
.implant-list {
    list-style: none;
    padding-left: 0;
}

.implant-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.implant-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .implant-title {
        font-size: 22px;
        padding: 6px 25px;
    }
}



/* Section spacing */
.implant-uses-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.uses-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 50px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.uses-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.uses-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.uses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.1);
}

/* List */
.uses-list {
    list-style: none;
    padding-left: 0;
}

.uses-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.uses-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}


/* Section spacing */
.implant-types-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.types-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.types-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.implant-type-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    height: 100%;
}

.implant-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Highlight second card slightly */
.highlight-card {
    border-top: 4px solid var(--primary);
}
.implant-type-card{
    border-top: 4px solid var(--primary);
}

/* List */
.implant-type-list {
    list-style: none;
    padding-left: 0;
}

.implant-type-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.implant-type-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.implant-adv-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.implant-adv-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.implant-adv-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.implant-adv-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    height: 100%;
}

.implant-adv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* List */
.implant-adv-list {
    list-style: none;
    padding-left: 0;
}

.implant-adv-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.implant-adv-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Disadvantage Icon */
.disadvantage-list li::before {
    content: "✖";
    color: #dc3545;
}

/* Optional border highlight */
.disadvantage-card {
    border-top: 4px solid #dc3545;
}

/* Section spacing */
.implant-before-after {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.implant-ba-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 60px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.implant-ba-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.implant-ba-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.implant-ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Image container */
.implant-ba-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.implant-ba-img img {
    width: 100%;
    transition: 0.5s ease;
}

.implant-ba-card:hover .implant-ba-img img {
    transform: scale(1.08);
}

/* Badge */
.ba-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.after-badge {
    background: var(--primary);
}

.before-badge {
    background: #6c757d;
}



/* Section spacing */
.clear-aligner-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Heading */
.section-gradient-title {
    display: inline-block;
    padding: 8px 50px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image box */
.aligner-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.aligner-img-box img {
    width: 100%;
    transition: 0.5s ease;
}

.aligner-img-box:hover img {
    transform: scale(1.07);
}

/* List Styling */
.aligner-list {
    list-style: none;
    padding-left: 0;
}

.aligner-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.aligner-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.invisalign-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title (same style used before) */
.section-gradient-title {
    display: inline-block;
    padding: 8px 50px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image box */
.invisalign-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.invisalign-img-box img {
    width: 100%;
    transition: 0.5s ease;
}

.invisalign-img-box:hover img {
    transform: scale(1.07);
}

/* Bullet List */
.invisalign-list {
    list-style: none;
    padding-left: 0;
}

.invisalign-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.invisalign-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.itero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Heading (reuse if already added) */
.section-gradient-title {
    display: inline-block;
    padding: 8px 50px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image Box */
.itero-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.itero-img-box img {
    width: 100%;
    transition: 0.5s ease;
}

.itero-img-box:hover img {
    transform: scale(1.07);
}

/* Bullet List */
.itero-list {
    list-style: none;
    padding-left: 0;
}

.itero-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.itero-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.aligner-uses-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Heading */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Style */
.aligner-use-card {
    transition: 0.4s ease;
}

.aligner-use-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.aligner-use-card:hover img {
    transform: scale(1.05);
}

/* Bullet List */
.aligner-benefits {
    list-style: none;
    padding-left: 0;
}

.aligner-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.aligner-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.clear-types-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Styling */
.aligner-type-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 100%;
}

.aligner-type-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.aligner-type-card p {
    margin-bottom: 0;
    color: #666;
}

.aligner-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}



/* Section spacing */
.aligner-adv-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Style */
.adv-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 100%;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* List Style */
.adv-list,
.disadv-list {
    list-style: none;
    padding-left: 0;
}

.adv-list li,
.disadv-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Green check for advantages */
.adv-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Red cross for disadvantages */
.disadv-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}


/* Section spacing */
.before-after-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Style */
.before-after-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

/* Hover Effect */
.before-after-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Equal Height Structure */
.same-size-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Fixed Image Size */
.fixed-img {
    width: 100%;
    height: 320px; /* Change if needed */
    overflow: hidden;
    border-radius: 12px;
}

.fixed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Image Zoom on Hover */
.before-after-card:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.before-text {
    font-weight: 600;
    color: #666;
}

.after-text {
    font-weight: 600;
    color: var(--primary);
}



/* Section spacing */
.dentures-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image Card */
.dentures-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.dentures-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.dentures-image-card:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.dentures-section p {
    color: #666;
    font-weight: 500;
    line-height: 1.7;
}

/* Bullet List */
.dentures-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.dentures-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.dentures-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}



/* Section spacing */
.dentures-uses-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Style */
.dentures-uses-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.dentures-uses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
}

/* List Styling */
.dentures-uses-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.dentures-uses-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
    line-height: 1.7;
}

.dentures-uses-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}



/* Section spacing */
.dentures-types-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Styling */
.dentures-type-card {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 100%;
}

.dentures-type-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.dentures-type-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

.dentures-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
}


/* Section spacing */
.dentures-adv-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Style */
.adv-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 100%;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
}

/* Titles */
.adv-title {
    color: #198754;
    font-weight: 600;
    margin-bottom: 20px;
}

.disadv-title {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Lists */
.adv-list,
.disadv-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.adv-list li,
.disadv-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #555;
}

/* Green check */
.adv-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

/* Red cross */
.disadv-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}



/* Section spacing */
.dentures-before-after {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card */
.before-after-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.before-after-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

/* Fixed Equal Image Size */
.fixed-img {
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 12px;
}

.fixed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Zoom effect */
.before-after-card:hover img {
    transform: scale(1.05);
}

/* Text */
.before-text {
    font-weight: 600;
    color: #666;
}

.after-text {
    font-weight: 600;
    color: var(--primary);
}



/* Section spacing */
.rct-uses-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Card Styling */
.rct-uses-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.rct-uses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
}

/* List Styling */
.rct-uses-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.rct-uses-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.7;
}

.rct-uses-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.kids-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image Card */
.kids-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.kids-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.kids-image-card:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.kids-section p {
    color: #666;
    font-weight: 500;
    line-height: 1.7;
}

/* Bullet List */
.kids-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.kids-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.kids-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}



/* Section spacing */
.crown-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image Card */
.crown-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.crown-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.crown-image-card:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.crown-section p {
    color: #666;
    font-weight: 500;
    line-height: 1.7;
}

/* Bullet List */
.crown-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.crown-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.crown-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}



/* Section spacing */
.crown-types-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Crown Card */
.crown-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.crown-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s ease;
}

.crown-card:hover img {
    transform: scale(1.05);
}

/* Label Styling */
.crown-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.crown-label.green {
    background: #0d8c44;
}

.crown-label.purple {
    background: #3d2a8c;
}

/* Description Styling */
.crown-types-section h5 {
    font-weight: 600;
    color: #333;
}

.crown-types-section p {
    color: #666;
    line-height: 1.7;
}


/* Section spacing */
.fillings-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Gradient Title */
.section-gradient-title {
    display: inline-block;
    padding: 8px 60px;
    font-weight: 700;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.section-gradient-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Image Card */
.fillings-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.fillings-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.fillings-image-card:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.fillings-section p {
    color: #666;
    font-weight: 500;
    line-height: 1.7;
}

/* Bullet List */
.fillings-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.fillings-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.fillings-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}



/* Section */
.health-plan-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Left Thumbnails */
.benefit-thumb {
    text-align: center;
    margin-bottom: 25px;
}

.benefit-thumb img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.benefit-thumb p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

/* Center Banner */
.plan-banner {
    background: linear-gradient(135deg, #bde8d6, #9ed9c0);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-banner h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.plan-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3d2a8c;
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 14px;
}

/* Right Side */
.plan-title {
    font-size: 48px;
    font-weight: 800;
    color: #0d8c44;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #3d2a8c;
    margin-top: 20px;
}

/* Inclusion Box */
.plan-inclusion-box {
    border: 2px dashed #0d8c44;
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.inclusion-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #0d8c44;
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 600;
}

.plan-inclusion-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.plan-inclusion-box li {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}


.thumb-img {
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.thumb-img:hover {
    transform: scale(1.05);
}

.active-thumb {
    border: 2px solid #0d8c44;
}


.thumb-img {
    width: 80px;      /* size yaha control kare */
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.thumb-img:hover {
    transform: scale(1.05);
}

.active-thumb {
    border: 2px solid #0d8c44;
}



.terms-box {
    background: #f4f6f8;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.terms-list {
    list-style: circle;
    padding-left: 20px;
    color: #555;
}

.terms-list li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
}



.plan-card {
    background: #f4f6f8;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.plan-list {
    padding-left: 20px;
    color: #555;
}

.plan-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}



/* Membership Cards Fix */
.membership-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.membership-highlight {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.membership-highlight .price span {
    color: #fff;
}

.membership-highlight .plan-list li::before {
    color: #fff;
}



/* Single Before After Card */
.single-ba-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.single-ba-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Image Wrapper */
.ba-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.ba-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.4s ease;
    padding: 25px;
}

.single-ba-card:hover img {
    transform: scale(1.05);
}

/* Labels */
.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
}

.before-label {
    left: 20px;
    background: #3d2a8c;
}

.after-label {
    right: 20px;
    background: #0d8c44;
}



/* Section spacing */
.wisdom-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Image Card */
.wisdom-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.wisdom-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.wisdom-img-card:hover img {
    transform: scale(1.05);
}

/* Gradient Title */
.wisdom-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 40px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.wisdom-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Paragraph Styling */
.wisdom-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Bullet List */
.wisdom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.wisdom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.wisdom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section spacing */
.gum-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Image Card */
.gum-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.gum-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gum-img-card:hover img {
    transform: scale(1.05);
}

/* Gradient Title */
.gum-title {
    display: inline-block;
    font-weight: 700;
    padding: 8px 40px;
    background: linear-gradient(to right, #d7f1fb, #a7dbf3);
    border-radius: 6px;
    position: relative;
}

.gum-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -8px;
    left: 20%;
    border-radius: 10px;
}

/* Paragraph Styling */
.gum-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Bullet List */
.gum-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.gum-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.gum-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* =========================
   TABLET RESPONSIVE (≤ 991px)
========================= */

@media (max-width: 991px) {

    /* Reduce section spacing */
    section,
    .section-space,
    .why-section,
    .treatment-section,
    .implant-section,
    .clear-aligner-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Reduce headings */
    h1 { font-size: 32px !important; }
    h2 { font-size: 28px !important; }
    h3 { font-size: 22px !important; }

    /* Cards padding smaller */
    .adv-card,
    .plan-card,
    .implant-type-card,
    .quality-card,
    .dentures-type-card {
        padding: 25px !important;
    }

    /* Process Steps Stack */
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .process-content {
        width: 100% !important;
        margin-top: 15px;
    }

    /* Equipment stack */
    .equipment-item {
        flex-direction: column;
        text-align: center;
    }

    /* Image height reduce */
    .fixed-img,
    .dentures-image-card img,
    .kids-image-card img,
    .crown-image-card img,
    .gum-img-card img,
    .wisdom-img-card img {
        height: 300px !important;
    }

    /* Plan banner font reduce */
    .plan-banner h2,
    .plan-title {
        font-size: 36px !important;
    }

}



/* =========================
   MOBILE RESPONSIVE (≤ 767px)
========================= */

@media (max-width: 767px) {

    /* Reduce overall spacing */
    section,
    .why-section,
    .implant-section,
    .clear-aligner-section,
    .dentures-section,
    .kids-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Headings smaller */
    h1 { font-size: 26px !important; }
    h2 { font-size: 22px !important; }
    h3 { font-size: 18px !important; }

    /* Gradient titles adjust */
    .section-gradient-title,
    .implant-title,
    .uses-title,
    .types-title,
    .adv-title {
        padding: 6px 20px !important;
        font-size: 18px !important;
    }

    /* Cards padding smaller */
    .adv-card,
    .implant-type-card,
    .dentures-type-card,
    .quality-card,
    .uses-card,
    .plan-card {
        padding: 20px !important;
    }

    /* Image height reduce more */
    .fixed-img,
    .dentures-image-card img,
    .kids-image-card img,
    .crown-image-card img,
    .gum-img-card img,
    .wisdom-img-card img {
        height: 220px !important;
    }

    /* Before After image smaller */
    .ba-img-wrapper img {
        height: 250px !important;
        padding: 10px !important;
    }

    /* Equipment images resize */
    .equipment-item img {
        width: 120px !important;
        height: 120px !important;
    }

    /* Plan banner adjust */
    .plan-banner {
        padding: 40px 20px !important;
    }

    .plan-banner h2,
    .plan-title {
        font-size: 28px !important;
    }

    .plan-price {
        font-size: 24px !important;
    }

    /* Navbar spacing */
    .navbar-light .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 16px !important;
    }

}


/* ===== MOBILE NAVBAR FIX ===== */

@media (max-width: 991px) {

    .navbar {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Logo size reduce for mobile */
    .navbar-brand img {
        height: 65px !important;
    }

    /* Make logo + toggler stay together */
    .navbar {
        display: flex;
        align-items: center;
    }

    /* Remove full right push */
    .navbar-toggler {
        margin-left: 10px;
    }

}



/* ===== Mobile Thumbnail Clean Layout ===== */

@media (max-width: 991px) {

    /* Thumbnail container */
    .col-lg-2.col-12 {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }

    /* Hide scrollbar (optional clean look) */
    .col-lg-2.col-12::-webkit-scrollbar {
        display: none;
    }

    /* Thumbnail size */
    .benefit-thumb {
        flex: 0 0 auto;
        width: 75px;
    }

    .thumb-img {
        width: 100%;
        height: 75px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.3s;
    }

    /* Active thumbnail highlight */
    .thumb-img.active-thumb {
        border: 2px solid #198754;
    }

}