:root {
    --primary-color: #2B7A78;
    --secondary-color: #E85A70;
    --tertiary-color: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

/* =================================== */
body,
p,
a,
li,
span {
    font-family: "poppins", sans-serif;
}

/* ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
}

.head-title h2 {
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 40px;
}

.head-title span {
    color: var(--secondary-color);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .head-title h2 {
        font-size: 30px;
    }
}

/* ============================================ */
.painless-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.painless-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e63946;
    text-transform: capitalize;
    line-height: 1.2;
}



/* Call Button */
.btn-call {
    background: #e63946;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.btn-call:hover {
    background: #c92333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Image Animation */
.painless-img {
    border-radius: 50px 10px 50px 10px;
    /* max-width: 90%; */
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: floatImage 5s ease-in-out infinite;
    border: 5px solid var(--secondary-color);
}

.painless-img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .painless-title {
        font-size: 2rem;
        text-align: center;
    }

    .painless-text {
        text-align: center;
        margin: 0 auto;
    }

    .btn-call {
        display: block;
        text-align: center;
        margin: 20px auto 0;
    }
}

/* ===================================== */


.form-label {
    color: var(--tertiary-color);
}

.form-control {
    font-family: "Playfair Display", serif;
    border-radius: 0px;
    border: 1px solid #ccc;
}

/* ========================================== */


/* ========================================= */

.why-laser {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/background/1.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-laser .laser-card {
    padding: 20px;
    background: var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.laser-card img {
    height: 200px;
    border-radius: 20px;
    width: 100%;
    transition: transform 0.4s ease;
}

.laser-card:hover img {
    transform: scale(1.08);
}

.laser-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--tertiary-color);
}

.laser-card p {
    font-size: 0.95rem;
    color: var(--tertiary-color);
}

.laser-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 767px) {
    .why-laser .head-title h3 {
        font-size: 1.7rem;
    }
}

/* ========================================= */

.service-card {
    border-radius: 12px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px 50px 10px 50px;
}

/* ============================================ */
.why-choose {
    background: #f8f9fa;
}

.why-img img {
    transition: transform 0.4s ease-in-out;
}

.why-img:hover img {
    transform: scale(1.05);
}

.why-choose ul li {
    font-size: 16px;
    color: #333;
}

/* ============================================= */
.tutor .card {
    border-left-color: 20px solid var(--primary-color) !important;
    border-radius: 20px;
    border: 0px;
}

.tutor .card img {
    border-radius: 20px 20px 0 0;
}

/* ==================================================================== */

.breadcrumb {
    display: flex;
    margin-top: 80px !important;
    flex-wrap: wrap;
    padding: 12px 20px;
    margin: 0;
    list-style: none;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--tertiary-color);
    padding: 0 8px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--tertiary-color);
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--tertiary-color);
    font-weight: 600;
}

/* ==================================================================== */
.text-justify {
    text-align: justify;
}

/* ================================================================ */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* =============================================================== */

/* =============================================================== */

.title {
    color: #043610;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ================================================================ */
.why-choose-us {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/background/1.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.choose-card {
    background: var(--tertiary-color);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* ================================================ */
.about-images {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-images .main-img {
    width: 100%;
    border-radius: 15px;
}

.about-images .overlay-img {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 70%;
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .about-images .overlay-img {
        width: 70%;
        bottom: -30px;
        right: 10px;
    }
}

.about-images:hover .overlay-img {
    transform: scale(1.05);
}

/* ========================================= */
.team {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.team .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    margin-bottom: 30px;
}

.team .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team .card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.team .card:hover .card-img-top {
    transform: scale(1.05);
}

.team .card-body {
    padding: 25px;
}

@media (max-width: 767px) {
    .team .card-img-top {
        height: 250px;
    }
}

/* =-=============================================================== */

.about-us {
    background-color: #eee;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-us .images img {
    border-radius: 20% 10% 20% 10%/20% 10% 20% 10%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    margin-bottom: 30px;
    border: 5px solid var(--tertiary-color);
}

/* ============================================ */
.contact-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/background/1.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-form,
.contact-info {
    background: var(--tertiary-color);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
    color: black;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--tertiary-color);
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    transition: border 0.3s ease;
}

.contact-form .form-control:focus {
    color: black;
    border-color: #e63946;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.2);
}

.map-container iframe {
    border-radius: 10px;
}

.contact-section .list-group-item {
    background: var(--primary-color);
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    margin-bottom: 15px;
    color: var(--tertiary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-section .contact-info i {
    color: var(--tertiary-color);
    font-size: 20px;
    margin-right: 10px;
}

/* ========================================================= */
.services {
    background: var(--tertiary-color);
    padding: 60px 0;
}

.service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #eeee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease-in-out;
}

.service-card:hover img {
    /* transform: scale(1.1); */
    transition: transform 0.6s ease-in-out;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* ==================================================== */
.custom-btn {
    display: inline-block;
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-5 {
    display: inline-block;
    padding: 0 25px;
    /* dynamic spacing */
    height: 42px;
    line-height: 42px;
    background: linear-gradient(0deg, var(--primary-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
    white-space: nowrap;
    /* text break na ho */
}

.btn-5 span {
    position: relative;
    z-index: 1;
}

.btn-5:hover {
    color: #f0094a;
    background: transparent;
    box-shadow: none;
}

.btn-5:before,
.btn-5:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #f0094a;
    box-shadow:
        -1px -1px 5px 0px #fff,
        7px 7px 20px 0px #0003,
        4px 4px 5px 0px #0002;
    transition: 400ms ease all;
}

.btn-5:before {
    top: 0;
    left: 0;
}

.btn-5:after {
    bottom: 0;
    right: 0;
}

.btn-5:hover:before,
.btn-5:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

/* ==================================================== */


/* =================================== */
.our-team {
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}



.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.doctor-image img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: var(--primary-color);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-content {
    padding: 25px;
    text-align: left;
}

.doctor-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}


.doctor-content ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
    position: relative;
}

.doctor-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .doctor-card {
        margin-bottom: 30px;
    }

    .doctor-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .doctor-content h4 {
        font-size: 20px;
    }

    .doctor-content p,
    .doctor-content ul li {
        font-size: 14px;
    }
}

/* ====================================== */
.our-team .list-group-item {
    background: var(--primary-color);
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    margin-bottom: 15px;
    color: var(--tertiary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================ */

/* Header Call Button */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    padding: 8px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: blinkPulse 2s infinite;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 57, 53, 0.45);
}

.call-btn .call-icon {
    font-size: 18px;
}

.call-btn .call-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* 🔁 Blink / Pulse Animation */
@keyframes blinkPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
        transform: scale(1.04);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .call-btn {
        margin-top: 0px !important;
        display: block;
        text-align: center;
    }
}
/* ================================================ */