 .dentalimplement {
    background:url(../images/Service/DentalImplant.jpg);
}
      .bg-color-op-2 {
    background:url(../images/Service/Impaction.jpg);
}

 .bg-color-op-3 {
    background:url(../images/Service/CosmeticDental.jpg);
}
.bg-color-op-ourdoctor{
    background:url(../images/background/ourdoctor.jpg);
}
.bg-color-op-4{background:url(../images/Service/CompletePartialDentures.jpg);}
.bg-color-op-5{background:url(../images/Service/ToothExtraction.jpg);}
.servicepage{background:url(../images/background/toothextraction.jpg);}
.aboutus{background:url(../images/background/aboutus.jpg);}


.testimonialsbanner{background:url(../images/background/testimonials.jpg);}
.blogbanner{background:url(../images/background/blog.jpg);}
.gallery{background:url(../images/background/gallery.jpg);}
.contactus{background:url(../images/background/contactus.jpg);}
.bookingpage{background:url(../images/background/booking.jpg);}
.custombox {
    padding: 20px;
    min-height: 410px;
}
.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-box {
    background: #f3f7fd;
    padding: 25px;
    border-left: 4px solid #004fa8;
    border-radius: 10px;
    font-size: 16px;
}

.content-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1155cc;
    font-weight: bold;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    background: #f9fbff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.step span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ffaa28;
    margin-bottom: 10px;
}

/*PRECTO DESIGN APPOINMENT*/
.date-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.date-btn {
    border: 1px solid #d0d7de;
    background: #f8f9fa;
    padding: 10px 35px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.date-btn small {
    display: block;
    font-weight: 500;
    color: green;
}

.date-btn.active,
.date-btn:hover {
    background: #DADADA;
    color: #fff;
    border-color: #DADADA;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.slot-btn {
    border: 1px solid #004fa8;
    background: #fff;
    padding: 8px 10px;
    font-size:0.8rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.slot-btn:hover,
.slot-btn.active {
    background: #004fa8;
    color: #fff;
}


/* Card hover - shadow + lift */
/* ── Blog Cards Modern Design ── */
.blog-card-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}
.blog-card-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* Fixed image height */
.blog-card-wrap .relative {
    height: 220px;
    overflow: hidden;
}
.blog-card-wrap .relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.blog-card-wrap:hover .relative img {
    transform: scale(1.07);
}

/* Dark gradient overlay on image */
.blog-card-wrap .relative::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,20,50,0.5) 100%);
    transition: opacity 0.3s;
    z-index: 1;
}
.blog-card-wrap:hover .relative::after {
    opacity: 0.8;
}

/* Date badge */
.blog-card-wrap .abs {
    z-index: 2;
    box-shadow: 0 4px 12px rgba(21, 82, 160, 0.35);
}

/* Card body */
.blog-card-wrap .pt-4 {
    padding: 1.1rem 1.2rem 1.3rem !important;
}
.blog-card-wrap h4 {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 12px;
}
.blog-card-wrap h4 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-wrap:hover h4 a {
    color: #1552a0;
}

/* Read More link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #1552a0;
    text-decoration: none;
    border-top: 1px solid #eaeaea;
    padding-top: 10px;
    width: 100%;
    transition: gap 0.2s;
}
.blog-card-wrap:hover .blog-read-more {
    gap: 10px;
}