            .services-details-desc ul li:before {
                content: "✔" !important;
            }
            .services-details-desc li:before {
                font-family: Helvetica, sans-serif !important;
                display: inline-block;
                padding-right: 8px;
                vertical-align: middle;
                font-weight: 900;
                color: #fe235b;
                border-radius: 100%;
                border: unset;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                line-height: 16px;
                font-size: 16px;
                margin-right: 10px;
                padding-left: 2px;
            }
            /* smooth hover effect */
.service-card,
.feature-box,
.testimonial-card,
.location-item,
.trust-list-item{
    transition:all .1s ease;
}

.service-card:hover,
.feature-box:hover,
.testimonial-card:hover,
.location-item:hover,
.trust-list-item:hover{
    transform:translateY(-4px);
}
.btn-box{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:22px;
}

.btn-box .btn{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 22px !important;
    border-radius:40px !important;
    line-height:1;
}

.btn-box .btn svg{
    width:18px !important;
    height:18px !important;
    margin-left:0 !important;
    flex-shrink:0;
}

@media(max-width:540px){

    .btn-box{
        gap:10px;
    }

    .btn-box .btn{
        padding:9px 18px !important;
        font-size:14px;
    }

}
  .service-video-section iframe {
            border-radius: 20px;
        }
        @media (max-width: 767px) {
            .service-video-section {
                margin-top: 20px;
            }
            .service-video-section iframe {
                height: 220px;
            }
        }
       /* Section Title - Same as implant-frontend */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h3 {
            font-size: 32px;
            color: #fe235b !important;
            margin-bottom: 15px;
            max-width:980px !important;
            padding-top:10px;
        }

        /* 2 COLUMN GRID - Same as implant-frontend */
        .service-ba-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Card Styling - Same as implant-frontend */
        .service-ba-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .service-ba-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        /* Image Container - FIXED HEIGHT */
        .service-ba-image {
            position: relative;
            overflow: hidden;
            height: 180px;
            background: #f5f5f5;
            flex-shrink: 0;
        }
        .service-ba-image img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.5s ease;
            object-fit: cover;
        }
        .service-ba-card:hover .service-ba-image img {
            transform: scale(1.05);
        }

        /* Before/After Overlay - Same as implant-frontend */
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: end;
            padding: 10px 12px;
            pointer-events: none;
        }
        .before-text, .after-text {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .before-text { color: #fe235b; }
        .after-text { color: #0da1be; }

        /* Shine Effect - Same as implant-frontend */
        .service-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg);
            transition: left 0.6s ease;
        }
        .service-ba-card:hover .service-shine {
            left: 150%;
        }

        /* Content - Same as implant-frontend */
        .service-content {
            padding: 24px;
            flex-grow: 1;
        }
        .service-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fe235b !important;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .service-content p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 15px;
        }

        /* Tablet */
        @media (min-width: 768px) and (max-width: 1024px) {
            .service-ba-grid { gap: 20px; }
            .service-ba-image { height: 123px; }
            .service-content h3 { font-size: 20px; }
            .service-content p { font-size: 14px; }
        }

        /* Mobile - 1 column */
        @media (max-width: 767px) {
            .service-ba-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .service-ba-image { height: 180px; }
            .service-content { padding: 18px; }
            .service-content h3 { font-size: 20px; }
            .service-content p { font-size: 14px; }
            .before-text, .after-text { padding: 6px 16px; font-size: 12px; }
            .section-title h3 { font-size: 24px; }
            .service-beforeafter-section {
                margin: -20px;
                margin-bottom: 10px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .service-ba-image { height: 123px; }
            .service-overlay {
                bottom: -6px;
            }
        }