/********** 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;

    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(100, 149, 237, 0.55),
            /* Cornflower blue, darker + 55% transparency */
            rgba(100, 149, 237, 0.55)),
        url("../img/poster.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;
}



/* body */
body {
    background: url('../img/bgimg.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    /* transparent white layer */
    z-index: -1;
}


/* navbar */

/* Submenu position (desktop) */
.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
}

/* Show submenu */
.dropdown-submenu.show .dropdown-menu {
    display: block;
}

/* Mobile: full width dropdown */
@media (max-width: 992px) {
    .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-left: 0;
    }
}



/* card */

.contact-card {
    position: relative;
    /* Needed for absolute positioning */
    background: #5a90c7;
    border: 2px solid #ffa9a9;
    padding: 25px 25px 25px 70px;
    /* extra left padding for icon */
    border-radius: 12px;
    color: #fff;
    min-height: 220px;
}

.contact-icon {
    position: absolute;
    top: -15px;
    /* Half above the card */
    left: 5px;
    /* Slightly more inside the card */
    border: 2px solid #ffa9a9;
    padding: 15px;
    /* Icon size */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /* Icon size */
    background: transparent;
    /* Transparent background */
    color: #ffa9a9;
    /* Inner icon color */
}

.contact-icon i {
    color: #ffa9a9;
    /* Ensures the actual <i> icon is pink */
}

strong.h3-size {
    font-size: 28px;
    font-weight: 700;
}

strong.h5-size {
    font-size: 18px;
    font-weight: 600;
}


/* about */


/* ---------- MAIN SECTION ---------- */
.aster-section {
    padding: 50px 0;
    background: rgba(234, 242, 250, 0.6);
    /* light blue + transparency */
    backdrop-filter: blur(4px);
    /* smooth glass effect */
}


.container-aster {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

/* ---------- LEFT CONTENT (SMALLER WIDTH) ---------- */
.aster-left {
    width: 50%;
}

.aster-title {
    font-size: 42px;
    font-weight: 700;
    display: block;
    color: #6699CC;
}

.aster-line {
    width: 150px;
    height: 3px;
    background: #6699CC;
    margin: 10px 0 20px;
}

.aster-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #6699CC;
    display: block;
    margin-bottom: 15px;
}

.aster-left p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.aster-btn {
    display: inline-block;
    margin-top: 20px;
    background: #6699CC;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.aster-btn:hover {
    background: #1b3254;
}

/* ---------- SINGLE IMAGE BOX ---------- */
.aster-images {
    position: relative;
    width: 680px;
    /* ⬆ Increased size slightly */
    height: 490px;
}

.img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;


    /* border: 6px solid #ff6682; */
    border: none;

    border-radius: 12px;
    /* smoother border */
    transform: rotate(-3deg);
    transition: 0.3s ease;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover */
.img-box:hover {
    transform: scale(1.05) rotate(0deg);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .container-aster {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .aster-left {
        width: 100%;
    }

    .aster-images {
        width: 90%;
        max-width: 350px;
        /* bigger image on tablet/mobile */
        height: auto;
        margin: 20px auto;
    }

    .img-box {
        transform: rotate(0deg);
        /* remove rotation for clean mobile view */
        height: auto;
    }

    .img-box img {
        height: auto;
    }
}

@media (max-width: 500px) {
    .aster-images {
        width: 90%;
        max-width: 300px;
        /* adjust for small screens */
    }

    .img-box {
        transform: rotate(0deg);
    }
}



/* card  about section home */
/* =========================================================
   SPECIALIST SECTION (FULL CSS)
   ========================================================= */

/* MAIN SECTION */
.specialist-section {
    padding: 60px 0;
    background: #f7fafc;
}

/* CENTER CONTENT */
.container-specialist {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Title */
.spec-title {
    font-size: 38px;
    font-weight: 700;
    color: #6699CC;
    display: block;
    text-align: center;
}

.spec-line {
    width: 160px;
    height: 3px;
    background: #6699CC;
    margin: 10px auto 40px;
}

/* ================= MAIN WRAPPER ================= */
.specialist-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* ================= LEFT DOCTOR CARDS ================= */
.doctor-cards {
    width: 65%;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.doctor-card {
    width: 48%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* Doctor Image Box */
.doctor-img {
    position: relative;
}

.doctor-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Toggle Button (Top Right) — NOW PINK */
.floating-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4e85;
    color: #fff !important;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.floating-icon:hover {
    background: #c72259;
}

/* Doctor Info */
.doctor-info {
    background: #4c8ed7;
    padding: 18px;
    text-align: center;
}

.doctor-name {
    font-size: 20px;
    color: #fff;
    display: block;
    font-weight: 700;
}

.doctor-details {
    font-size: 13px;
    margin-top: 5px;
    color: #fff;
    line-height: 1.4;
}

/* ---------- INFO BOX (Hidden by default) ---------- */
.info-box {
    display: none;
    background: #ffffff;
    padding: 15px;
    border-top: 3px solid #ff4e85;
    text-align: center;
}

.info-box p {
    font-size: 14px;
    color: #444;
}

/* Social Icons — NOW PINK */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    font-size: 18px;
    margin: 0 5px;
    color: #ff4e85 !important;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #c72259 !important;
}

/* ================= RIGHT FEATURE BOXES ================= */
.specialist-features {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Elegant Wavy Pink Box */
.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: #ffffff;
    border: 2.5px solid #ff7ba7;
    /* soft premium pink */

    /* Elegant wave shape */
    border-top-left-radius: 18px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 55px;

    box-shadow: 0px 4px 15px rgba(255, 121, 158, 0.15);
    transition: 0.3s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 18px rgba(255, 121, 158, 0.25);
}

/* Feature Icons — NOW FULL PINK */
.icon {
    font-size: 26px;
    color: #FB9393 !important;
}

/* Feature Text */
.feature-box strong {
    font-size: 16px;
    color: #444;
    font-weight: 600;
    letter-spacing: .2px;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    .specialist-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .doctor-cards {
        width: 100%;
    }

    .specialist-features {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .doctor-cards {
        flex-direction: column;
        gap: 20px;
    }

    .doctor-card {
        width: 100%;
    }

    .doctor-img img {
        height: 360px;
    }

    .feature-box {
        flex-direction: row;
        justify-content: flex-start;
    }

    .floating-icon {
        padding: 6px 8px;
        font-size: 13px;
    }
}



/* service card- home */

/* MAIN WRAPPER */
.ortho-gyno-section {
    background: #e8f0f7;
    padding: 60px 0;
    text-align: center;
}

/* CONTAINER */
.container-og {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* TITLE */
.og-title {
    font-size: 38px;
    color: #6294C5;
    font-weight: 700;
    display: block;
}

.og-subtitle {
    font-size: 18px;
    margin-top: 8px;
    color: #6294C5;
}

.og-line {
    width: 160px;
    height: 3px;
    background: #5d82b2;
    margin: 20px auto 40px;
}

/* GRID FOR BOXES */
.og-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* INDIVIDUAL CARD */
.og-card {
    background: #ffffff;
    border: 2px solid #5d82b2;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease;
}

.og-card:hover {
    transform: translateY(-5px);
}

/* ICON IMAGE */
.og-icon {
    width: 75%;
    padding: 20px 0;
    display: block;
    margin: auto;
}

/* TEXT PART */
.og-text {
    background: #5d82b2;
    display: block;
    padding: 12px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* PINK VERSION */
.pink-card {
    border-color: #f29aaa !important;
}

.pink-card .og-text {
    background: #f29aaa !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .og-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .og-grid {
        grid-template-columns: 1fr;
    }

    .og-title {
        font-size: 30px;
    }

    .og-text {
        font-size: 16px;
    }
}


.og-text a {
    color: #fff;
    text-decoration: none;
}

.og-text a:hover {
    text-decoration: underline;
}



/* feedback- home */

/* Parent Section */
.testimonial-section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Container */
.testi-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* -------- LEFT SIDE -------- */
.testi-left {
    width: 40%;
}

.testi-title {
    font-size: 42px;
    font-weight: 700;
    color: #8BB1D8;
    line-height: 1.2;
    display: block;
}

.testi-line {
    width: 130px;
    height: 3px;
    background: #8BB1D8;
    margin: 15px 0 25px;
}

.testi-stars {
    font-size: 45px;
    color: #f4c430;
}

/* -------- RIGHT SIDE -------- */
.testi-right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
}

.testi-card {
    width: 100%;
    max-width: 600px;
    background: #8BB1D8;
    padding: 35px;
    border-radius: 4px;
    position: relative;
    color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 38px;
    opacity: 0.7;
}

.testi-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.testi-name {
    font-size: 15px;
    margin-top: 10px;
    display: block;
}


/* Slider wrapper */
.testi-slider {
    position: relative;
    width: 100%;
}

/* Hide all cards initially */
.testi-card {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Visible testimonial */
.testi-card.active {
    opacity: 1;
    position: relative;
}


/* Arrow bottom like screenshot */
.arrow-down {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #8db2d6;
    margin-top: 10px;
    margin-left: 20px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
    .testi-container {
        flex-direction: column;
        text-align: center;
    }

    .testi-left,
    .testi-right {
        width: 100%;
    }

    .testi-right {
        justify-content: center;
    }

    .testi-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .testi-title {
        font-size: 32px;
    }

    .testi-stars {
        font-size: 35px;
    }
}

/* ================= BOOK SECTION BACKGROUND ================= */
.book-section {
    background: #eef4fa;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

/* ================= MAIN WRAPPER ================= */
.book-container {
    width: 90%;
    margin: auto;
}

/* ================= TOP TITLE ================= */
.visit-title {
    font-size: 26px;
    font-weight: 600;
    color: #6699CC;
    display: block;
    margin-bottom: 10px;
}

/* underline */
.visit-line {
    width: 70px;
    height: 2px;
    background: #6699CC;
    margin: 0 auto 25px auto;
}

/* ================= BIG MAIN TITLE ================= */
.book-title {
    font-size: 36px;
    font-weight: 700;
    color: #6699CC;
    display: block;
    margin-bottom: 15px;
}

/* ================= SMALL TEXT ================= */
.book-text {
    font-size: 15px;
    color: #6699CC;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* ================= BUTTON ================= */
.book-btn {
    background: #6699CC;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #6699CC;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .visit-title {
        font-size: 22px;
    }

    .book-title {
        font-size: 30px;
    }

    .book-text {
        font-size: 14px;
    }

    .book-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .visit-title {
        font-size: 20px;
    }

    .book-title {
        font-size: 26px;
    }

    .book-text {
        font-size: 13px;
    }
}

/* footer */

/* ============ FOOTER MAIN ============ */
.aster-footer {
    background: rgba(0, 0, 0, 0.9);
    /* pure black with slight transparency */
    color: #fff;
    padding: 40px 0 0 0;
}

/* ===== FOOTER GRID ===== */
.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

/* ===== LEFT LOGO AREA ===== */
.footer-logo {
    width: 220px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

/* ===== HEADINGS ===== */
.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

/* ===== CONTACT LIST ===== */
.footer-list {
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===== QUICK LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #7bb7ff;
}

/* ===== MAP ===== */
.footer-map iframe {
    width: 100%;
    border-radius: 5px;
}

/* ===== COPYRIGHT BAR ===== */
.footer-bottom {
    background: #6699CC;
    /* pure black, stronger */
    text-align: center;
    padding: 12px 5px;
    color: #fff;
    margin-top: 40px;
    font-size: 14px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-map iframe {
        height: 200px;
    }
}

.icon {
    margin-right: 6px;
    font-size: 16px;
    filter: invert(1);
    /* turns emoji/icons white */
}



/* social icon */


/* ===================================================== */
/* 🌟 LEFT STICKY ICONS */
/* ===================================================== */
.sticky-left-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 999999;
}

.left-icon {
    display: block;
    width: 50px;
    height: 50px;

    margin: 6px 0;
    border-radius: 0 12px 12px 0;
    padding: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.left-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.left-icon:hover {
    transform: translateX(6px);
    background: #f1f1f1;
}


/* ===================================================== */
/* 🌟 BOTTOM-RIGHT STICKY ICONS */
/* ===================================================== */
.sticky-bottom-icons {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 999999 !important;
}

.bottom-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 12px 0;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.bottom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom-icon:hover {
    transform: scale(1.12);
    background: #f1f1f1;
}


/* ===================================================== */
/* 🌟 MOBILE RESPONSIVE */
/* ===================================================== */
@media (max-width: 480px) {

    .left-icon,
    .bottom-icon {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
}


.sticky-bottom-icons,
.sticky-bottom-icons * {
    pointer-events: auto !important;
    cursor: pointer;
}




/* about section  asdter */

/* ======= SECTION WRAPPER ======= */
.about-welcome {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.45);
    /* ⭐ More white (45% opacity) */
    backdrop-filter: blur(3px);
    overflow: hidden;
}

/* ======= BACKGROUND LOGO (FADED) ======= */
.bg-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-logo.png') no-repeat center center/contain;
    opacity: 0.25;
    /* same faded effect */
    z-index: 0;
}

/* ======= CONTENT CONTAINER ======= */
.welcome-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* ======= TYPOGRAPHY (STRONG AS HEADINGS) ======= */
/* ======= TYPOGRAPHY (Amita Font Only) ======= */

.welcome-top {
    font-size: 48px;
    font-weight: 700;
    color: #6a89b3;
    font-family: 'Amita';
    display: block;
}

.welcome-mid {
    font-size: 38px;
    font-weight: 600;
    color: #6a89b3;
    font-family: 'Amita';
    margin-top: -10px;
    display: block;
}

.welcome-title {
    font-size: 54px;
    font-weight: 700;
    color: #6a89b3;
    font-family: 'Amita';
    display: block;
    margin-top: 5px;
}


/* ======= PARAGRAPHS ======= */
.welcome-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin-top: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .welcome-top {
        font-size: 36px;
    }

    .welcome-mid {
        font-size: 28px;
    }

    .welcome-title {
        font-size: 42px;
    }

    .welcome-text {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .welcome-top {
        font-size: 30px;
    }

    .welcome-mid {
        font-size: 22px;
    }

    .welcome-title {
        font-size: 32px;
    }
}





/* ====== SECTION BACKGROUND (SLIGHT DARKER TRANSPARENT) ====== */
.care-section {
    background: rgba(200, 220, 235, 0.7);
    /* darker + more visible */
    padding: 40px 0;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* ====== HEADING STYLE (BLUE BACKGROUND) ====== */
.care-title {
    display: block;
    width: 100%;
    background: #6699CC;
    color: #fff;
    padding: 12px 15px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
}

/* ====== ICON STYLE (CIRCLE BACKGROUND) ====== */
.care-list li i {
    font-size: 14px;
    color: #6a89b3;
    background: #BBD1E8;
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== LIST STYLE ====== */
.care-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.care-list li {
    font-size: 17px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* ====== READ BUTTON ====== */
.read-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #6a89b3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
}

.read-btn:hover {
    background: #4e6c8e;
}

/* ====== DIVIDER ====== */
.divider {
    width: 2px;
    background: #ccc;
    margin: 0 30px;
}

/* ====== CONTAINER ====== */
.care-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .care-container {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        display: none;
    }
}



/* Image size control */
.clinic-photo {
    width: 100%;
    height: 150px;
    /* reduced size */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoom 0.8s ease forwards;
}

/* Staggered animation */
.gallery-grid div:nth-child(1) img {
    animation-delay: 0.1s;
}

.gallery-grid div:nth-child(2) img {
    animation-delay: 0.2s;
}

.gallery-grid div:nth-child(3) img {
    animation-delay: 0.3s;
}

.gallery-grid div:nth-child(4) img {
    animation-delay: 0.4s;
}

.gallery-grid div:nth-child(5) img {
    animation-delay: 0.5s;
}

.gallery-grid div:nth-child(6) img {
    animation-delay: 0.6s;
}

.gallery-grid div:nth-child(7) img {
    animation-delay: 0.7s;
}

.gallery-grid div:nth-child(8) img {
    animation-delay: 0.8s;
}

.gallery-grid div:nth-child(9) img {
    animation-delay: 0.9s;
}

/* Animation Keyframes */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover effect */
.clinic-photo:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

/* Banner Image Styling */
.banner-photo {
    max-height: 650px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* Background like screenshot */
.contact-section {
    background: white;
    padding: 70px 0;
    position: relative;
}

/* Top icon + Contact Us */
.contact-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-icon {
    width: 32px;
    height: auto;
}

/* Small Title */
.contact-small-title {
    font-size: 18px;
    color: #3b7bbf;
    font-weight: 600;
}

/* Main Title */
.contact-main-title {
    font-size: 40px;
    color: #3b7bbf;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

/* Description Text */
.contact-description {
    font-size: 18px;
    max-width: 900px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Right Aligned Button */
.contact-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    background: #4a8ac7;
    padding: 12px 32px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #366ea6;
}

/*********** MOBILE RESPONSIVE ***********/
@media (max-width: 767px) {
    .contact-main-title {
        font-size: 28px;
        text-align: center;
    }

    .contact-description {
        text-align: center;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .contact-btn-wrapper {
        justify-content: center;
    }
}


/* dr abhijit gholap*/
/* ============================
   DOCTOR SECTION - TRANSPARENT BG
===============================*/

/* Main section */
.doctor-section {
    width: 100%;
    padding: 50px 10px;
    background: rgba(255, 255, 255, 0.7) !important;
    /* Slight transparent white */
    backdrop-filter: blur(3px);
    /* smooth glass-like effect */
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
}

/* Container */
.doctor-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* responsive */
    background: transparent !important;
}

/* Doctor Photo */
.doctor-photo img {
    width: 100%;
    max-width: 330px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect */
.doctor-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.20);
}

/* Text Area */
.doctor-info {
    flex: 1;
    min-width: 280px;
    background: transparent !important;
    padding: 0px !important;
}

/* Doctor Name */
.doctor-name {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    display: block;
    margin-bottom: 15px;
}

/* Paragraphs */
.doctor-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Animation on scroll */
.doctor-info,
.doctor-photo img {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease-out forwards;
}

/* Delay for stagger animation */
.doctor-photo img {
    animation-delay: 0.2s;
}

.doctor-info {
    animation-delay: 0.4s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {

    .doctor-container {
        text-align: center;
        justify-content: center;
    }

    .doctor-name {
        font-size: 26px;
    }

    .doctor-info p {
        font-size: 15px;
    }

    .doctor-photo img {
        max-width: 260px;
    }
}

/* ================================
   ATTACHMENTS SECTION (Updated)
===================================*/

.attachment-section {
    width: 100%;
    padding: 50px 267px;
    background: rgba(214, 226, 240, 0.25);
    /* Slightly more transparent */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    position: relative;
}

/* Background Logo */
.attachment-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("img/bg-logo.png") center/60% no-repeat;
    opacity: 0.20;
    pointer-events: none;
}

/* Title */
.attachment-title {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #6699CC;
    display: block;
    margin-bottom: 20px;
    border-bottom: 2px solid #7ea4c8;
    padding-bottom: 6px;
    width: 180px;
}

/* MAIN WRAPPER */
.attachment-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* ========================
   LEFT LIST STYLING
======================== */

.attachment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attachment-list li {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #6699CC;
    font-weight: 500;
}

/* ICON STYLE — circle + center icon */
.attachment-list li i {
    width: 40px;
    height: 40px;
    background: #bcd0e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #6699CC;
    margin-right: 17px;
    flex-shrink: 0;
}

/* ========================
   RIGHT IMAGE GRID
======================== */

.attachment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 500px;
    width: 100%;
}

.attachment-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.attachment-grid img:hover {
    transform: scale(1.04);
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 992px) {
    .attachment-section {
        padding: 40px 40px;
    }

    .attachment-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .attachment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .attachment-grid {
        grid-template-columns: 1fr;
    }

    .attachment-title {
        margin: auto;
        text-align: center;
    }

    .attachment-section {
        padding: 35px 20px;
    }
}

/* EDUCATION TITLE */
.edu-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* LIST STYLE */
.edu-list {
    padding-left: 20px;
    margin: 0;
}

.edu-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

.edu-list a {
    color: #3b6ed4;
    text-decoration: underline;
}



/* asmita gholap sectim */
/* MAIN SECTION */
.skills-section {
    background: rgba(253, 232, 233, 0.88);
    /* transparent */
    border-radius: 10px;
    max-width: 1413px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* TABS */
.skills-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.skills-tabs .tab {
    background: rgba(243, 177, 178, 0.85);
    /* transparent */
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: 0.3s ease;
    color: #222;
}

.skills-tabs .tab i {
    font-size: 20px;
}

.skills-tabs .tab.active {
    background: rgba(231, 111, 111, 0.90);
    /* active slightly darker */
    color: #fff;
}

/* CONTENT WRAPPER */
.skills-wrapper {
    width: 100%;
}

/* INDIVIDUAL BOXES */
.skill-box {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    transition: 0.3s ease;
}

/* Hover */
.skill-box:hover {
    transform: translateX(5px);
    opacity: 0.95;
}

.skill-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(255, 221, 221, 0.90);
    /* transparent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon i {
    font-size: 22px;
    color: #d45a5a;
}

.skill-title {
    font-size: 18px;
    font-weight: 700;
    color: #d45a5a;
}

.skill-text p {
    margin: 0;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* TAB CONTENT ANIMATION */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 2 COLUMN GRID */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

/* Columns */
.skills-left,
.skills-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .skills-tabs {
        flex-direction: column;
    }

    .skills-tabs .tab {
        justify-content: center;
    }

    .skill-box {
        flex-direction: column;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}


/* hip replacement */
/* ================= MAIN SECTION ================= */
.hip-section {
    width: 100%;
    padding: 40px 5%;
    background: #fff;
}

/* ================= FLEX WRAPPER ================= */
.hip-top {
    display: flex;
    justify-content: center;
    /* Center content */
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* ================= LEFT INFO SECTION ================= */
.hip-left {
    flex: 0 0 50%;
    /* Reduce width to 50% */
    max-width: 550px;
    /* Prevent stretching too wide */
    min-width: 300px;
}

/* Title */
.hip-title {
    font-size: 42px;
    font-weight: 800;
    color: #4379B3;
    display: block;
    margin-bottom: 20px;
}

/* Paragraphs */
.hip-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* ================= RIGHT IMAGE SECTION ================= */
.hip-images {
    flex: 0 0 40%;
    /* Reduce width */
    max-width: 450px;
    min-width: 280px;
    text-align: center;
}

/* Grid title */
.grid-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ================= SMALL HEADING ================= */
.small-heading {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #4379B3;
    margin: 40px 0 20px;
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .hip-left,
    .hip-images {
        flex: 0 0 100%;
        max-width: 89%;
        text-align: center;
    }

    .hip-left p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hip-title {
        font-size: 30px;
    }

    .small-heading {
        font-size: 22px;
    }
}

/* MAIN FLEX CONTAINER */
.hip-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;

    /* ▼ NEW — reduce width */
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* LEFT SIDE */
.hip-left {
    flex: 1 1 48%;
    max-width: 520px;
    /* ▼ reduced width */
}

/* BOXES */
.hip-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.hip-box:hover {
    background: #eaffea;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Small icons */
.hip-icon {
    width: 55px;
    height: auto;
}

/* Box title */
.hip-box-title {
    font-size: 20px;
    font-weight: 600;
}

/* RIGHT SIDE IMAGE */
.hip-right {
    flex: 1 1 40%;
    max-width: 489px;
    /* ▼ reduced width */
    text-align: center;
}

/* Main image */
.hip-main-img {
    width: 100%;
    max-width: 420px;
    /* ▼ reduced size */
    border-radius: 12px;
    animation: fadeIn 1s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hip-container {
        flex-direction: column-reverse;
        text-align: center;
        max-width: 95%;
        /* full width on tablet */
    }

    .hip-left,
    .hip-right {
        max-width: 80%;
    }

    .hip-box {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .small-heading {
        font-size: 22px;
    }

    .hip-box-title {
        font-size: 18px;
    }

    .hip-icon {
        width: 45px;
    }
}

/* MAIN SECTION */
.hip-info-section {
    width: 100%;
    padding: 40px 5%;
    background: #ffffff;
}

/* CENTER LAYOUT */
.hip-info-container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.hip-info-title {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #4d7fbe;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* WRAPPER */
.hip-info-list {
    position: relative;
    padding-left: 50px;
}

/* LONG VERTICAL LINE */
.hip-info-list::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #5c88c4;
}

/* EACH ROW */
.hip-info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

/* SHORT LINE */
.hip-icon-line {
    width: 35px;
    height: 2px;
    background: #5c88c4;
    margin-top: 25px;
}

/* ROUND ICON BACKGROUND */
.hip-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #e5efff;
    border-radius: 50%;
    border: 4px solid #c6d9f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FA ICON */
.hip-icon-wrapper i {
    font-size: 39px;
    color: #4d7fbe;
}

/* TEXT */
.hip-info-text {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hip-info-title {
        font-size: 22px;
        text-align: center;
    }

    .hip-info-row {
        flex-direction: column;
        gap: 10px;
    }

    .hip-icon-line {
        display: none;
    }

    .hip-info-list {
        padding-left: 20px;
    }
}


/* ========== HIP MIDDLE SECTION ========== */

/* MAIN SECTION */
.hip-section {
    padding: 50px 0;
    background: #f4f4f7;
}

.hip-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT IMAGE BOX (WHITE BOX + SHADOW) */
.hip-left {
    flex: 1 1 45%;
}

.hip-img-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    width: 100%;
}

.hip-img-box img {
    width: 100%;
    border-radius: 10px;
}

/* BLUE TITLE BOX – DESKTOP */
.hip-title {
    position: absolute;
    bottom: -84px;
    left: 35px;
    background: #5c9ddc;
    color: #fff;
    padding: 15px 20px;
    width: 65%;
    border-radius: 12px;
    font-size: 20px;
    line-height: 26px;
}

/* RIGHT INFO BOXES */
.hip-right {
    flex: 1 1 45%;
}

.hip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.hip-icon {
    width: 45px;
    height: 45px;
    background: #d6e5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #5c8dcf;
    font-weight: bold;
}

.hip-item p {
    margin: 0;
    font-size: 18px;
    line-height: 27px;
    color: #333;
}


/* TEXT TITLE (NOT THE IMAGE BOX TITLE) */
.hip-heading {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color:#78A3CE;
    margin-bottom: 20px;
}



/* ========== RESPONSIVE FIX ========== */

/* TABLET */
@media (max-width: 992px) {
    .hip-container {
        flex-direction: column;
    }

    .hip-title {
        bottom: -55px;
        left: 20px;
        width: 75%;
        font-size: 18px;
        line-height: 24px;
        padding: 12px 18px;
    }
}

/* MOBILE – NO OVERLAP + ORDER SAME */
@media (max-width: 600px) {

    .hip-img-box {
        padding: 15px;
    }

    /* Move title box BELOW image */
    .hip-title {
        position: static;
        margin-top: 15px;
        width: 100%;
        text-align: center;
        font-size: 17px;
        line-height: 22px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    /* Keep order: Image → Title → Info */
    .hip-left,
    .hip-right {
        width: 100%;
    }

    .hip-item p {
        font-size: 14px;
    }

    .hip-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* kneee */


/* Section Background */
.revision-section {
    padding: 40px 0;
    background: #f3f3f3;
}

/* Section Title */
.revision-title {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #5C7EA3;
    text-align: center;
    margin-bottom: 40px;
}

/* Grid Layout */
.revision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Box Style */
.revision-box {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.revision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 18px rgba(0,0,0,0.15);
}

/* Icons */
.revision-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Strong Heading Inside Box */
.revision-head {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph */
.revision-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .revision-grid {
        grid-template-columns: 1fr;
    }
}


/* arthoscopy  surgeries */

/* MAIN SECTION */
.arthro-section {
    padding: 50px 0;
    background: #ffffff;
}

.arthro-container {
    width: 70%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    /* align-items: flex-start; */
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.arthro-left {
    flex: 1 1 50%;
}

.arthro-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* RIGHT SIDE */
.arthro-right {
    flex: 1 1 45%;
}

/* BLUE TITLE BAR */
.arthro-title {
    display: block;
    background: #6798C9;
    color: #fff;
    padding: 12px 20px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* === TWO COLUMN LIST === */
.arthro-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

.arthro-item strong {
    font-size: 18px;
    color: #000;
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px solid #dcdcdc;
}

/* === RESPONSIVE === */
@media(max-width: 900px) {
    .arthro-container {
        flex-direction: column;
    }
}

@media(max-width: 600px) {
    .arthro-list {
        grid-template-columns: 1fr;
    }

    .arthro-title {
        font-size: 22px;
    }

    .arthro-item strong {
        font-size: 17px;
    }
}

/* ==============================
   Meniscus Middle Section Only
   ============================== */
/* Full-width background area */
.meniscus-wrapper {
    width: 100%;
    background: #ffffff; /* full white background */
    padding: 40px 0;
}

/* Center content box */
.meniscus-section {
    width: 74%;
    max-width: 900px;
    margin: 0 auto;
    padding: -1px 20px;
    line-height: 1.8;
    color: #333;
    font-family: 'Arial', sans-serif;

    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

/* Title styled like H2 */
.section-title {
    display: block;
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0 15px;
    color:#78A3CE;
}

/* Paragraph */
.meniscus-section p {
    font-size: 17px;
    margin-bottom: 25px;
}

/* List */
.meniscus-section .meniscus-list {
    padding-left: 20px;
}

.meniscus-section .meniscus-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .meniscus-section p,
    .meniscus-section .meniscus-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
}


/* obsterious */

.obstetric-section {
    width: 100%;
    padding: 40px 20px;
    background: #fff5f7;
    text-align: center;
    animation: fadeUp 1s ease-in-out;
}

/* Title using STRONG but styled like H1 */
.obstetric-title {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #ff8aa0;
    margin-bottom: 30px;
    animation: fadeUp 1.2s ease-in-out;
}

.obstetric-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left + Right Columns */
.obstetric-column {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeUp 1.4s ease-in-out;
}

/* Individual box */
.scan-box {
    background: #ffeeef;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #f5d6d7;
    text-align: center;
    transition: 0.35s ease-in-out;
    animation: fadeUp 1.6s ease-in-out;
}

/* Unique animation on hover */
.scan-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 7px 18px rgba(255, 100, 120, 0.25);
}

/* Icons */
.scan-icon {
    width: 85px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

/* Icon hover pulse */
.scan-box:hover .scan-icon {
    transform: scale(1.15) rotate(2deg);
}

/* Center image floating animation */
.obstetric-center .center-img {
    width: 330px;
    max-width: 100%;
    animation: floatImg 4s ease-in-out infinite;
}

/* TEXT inside box */
.scan-box p strong {
    font-size: 17px;
    color: #333;
    line-height: 1.5;
}

/* ========= MOBILE RESPONSIVE ========== */

@media (max-width: 992px) {
    .obstetric-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .obstetric-column {
        width: 100%;
        max-width: 450px;
    }

    .obstetric-center {
        order: -1;
    }
}

@media (max-width: 480px) {
    .obstetric-title {
        font-size: 32px;
    }

    .scan-icon {
        width: 70px;
    }
}

/* ===================== ANIMATIONS ====================== */

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

/* Floating smooth animation */
@keyframes floatImg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}


/* painless delivery */

/* Main Section */
.painless-delivery-section {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Arial', sans-serif;
}

/* Common Container */
.painless-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.painless-left {
    flex: 1;
    min-width: 300px;
}

/* Top small heading style */
.painless-top-text strong {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

/* Main Title styled like H1 using strong */
.painless-title {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #ff8d8d;
    line-height: 1.18;
    margin-top: 10px;
}

/* Underline */
.painless-underline {
    width: 70px;
    height: 4px;
    background: #00c7b7;
    margin: 18px 0 25px 0;
}

/* Paragraphs */
.painless-left p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* RIGHT SIDE IMAGE */
.painless-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.painless-img {
    width: 100%;
    max-width: 460px;
    border-radius: 5px;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .painless-container {
        flex-direction: column;
    }

    .painless-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .painless-title {
        font-size: 34px;
    }

    .painless-underline {
        width: 60px;
    }

    .painless-left p {
        font-size: 16px;
    }
}

/* Global Fix */
section {
    width: 100%;
    text-align: center;
}

/* Main Title */
.section-main-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Epidural Section Layout */
.epidural-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.epi-card {
    width: 45%;
    min-width: 300px;
    padding: 30px;
    border-radius: 14px;
    color: #fff;
    text-align: center;
}

.blue { background: #5a90c7; }
.pink { background: #f59cbb; }

.epi-main-title {
    font-size: 24px;
    margin: 10px 0 15px;
}

.epi-text {
    font-size: 15px;
    margin-bottom: 15px;
}

.epi-list {
    text-align: left;
    margin: 0 auto;
    max-width: 350px;
}

/* Tiles */
.epi-tiles {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tile {
    width: 45%;
    min-width: 260px;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.tile-title {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

/* Bottom Box */
.bottom-box {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
}

.bottom-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bottom-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Black Transparent Section */
.painless-bottom-section {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 20px;
    color: #fff;
    margin-top: 40px;
}

.painless-bottom-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .epi-card,
    .tile {
        width: 100%;
    }

    .epi-main-title {
        font-size: 20px;
    }
}
/* PRO & CONS TILE WRAPPER */
.epi-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin: 40px auto;
    max-width: 1200px;
}

/* INDIVIDUAL TILE */
.tile {
    width: 25%;
    padding: 35px 25px;
    color: #fff;
    min-height: 220px;
    box-sizing: border-box;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* LAST TILE REMOVE RIGHT BORDER */
.tile:last-child {
    border-right: none;
}

/* COLORS */
.blue {
    background: #5a90c7;
}

.pink {
    background: #f59cbb;
}

/* TITLE STYLE LIKE YOUR IMAGE */
.tile-title {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
}

/* UNDERLINE LIKE IMAGE */
.tile-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    display: block;
    margin-top: 3px;
}

/* PARAGRAPH */
.tile-text {
    font-size: 15px;
    margin-top: 20px;
}

/* RESPONSIVE SETTINGS */
@media (max-width: 992px) {
    .tile {
        width: 50%;
        border-right: 1px solid rgba(255,255,255,0.3) !important;
    }
    .tile:nth-child(2),
    .tile:nth-child(4) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .tile {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
}
/* FULL BLACK TRANSPARENT BACKGROUND */
.transparent-full-section {
    background: rgba(0, 0, 0, 0.65);  /* black transparent */
    padding: 60px 20px;
    width: 100%;
    color: #fff;
}

/* Bottom text styling inside transparent background */
.transparent-full-section .bottom-box {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.transparent-full-section .bottom-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.transparent-full-section .bottom-text {
    font-size: 16px;
    line-height: 1.7;
    color: #eaeaea;
}

/* Make text inside tiles white */
.transparent-full-section .tile-text,
.transparent-full-section .tile-title {
    color: #fff;
}


/* Bottom text styling inside transparent background */
.transparent-full-section .bottom-box {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;   /* CENTER alignment */
}

/* Center title and paragraph */
.transparent-full-section .bottom-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;   /* CENTER */
}

.transparent-full-section .bottom-text {
    font-size: 16px;
    line-height: 1.7;
    color: #eaeaea;
    text-align: center;   /* CENTER */
}



/* conceptation */
/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.seo-title {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #f28a8a;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

/* ================= CONTRACEPTION SECTION ================= */
.contraception-section {
    background: #ffffff;
    padding: 50px 0;
}

.contraception-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contraception-left {
    flex: 1;
}

.contraception-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    transition: 0.3s;
}
.contraception-right img:hover {
    transform: scale(1.04);
}

/* ================= BIRTH CONTROL WHITE SECTION ================= */
.birth-control-white {
    background: #ffffff;
    padding: 60px 0;
}

.birth-control-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.bc-left {
    flex: 1;
}

.bc-right-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    transition: .3s;
}

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

/* ===== Boxes ===== */
.bc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bc-box {
    background: #fff4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: .3s;
}
.bc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bc-box img {
    width: 60px;
}

/* ================= METHODS SECTION ================= */
.methods-section {
    padding: 50px 0;
}

.methods-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.methods-image img {
    width: 100%;
    border-radius: 15px;
}

.methods-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ff9999;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
}

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

.methods-list li {
    background: #ffe5e5;
    margin-bottom: 12px;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.methods-list li:hover {
    background: #ffbcbc;
    transform: translateX(8px);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {

    .contraception-row,
    .birth-control-row {
        flex-direction: column;
        text-align: center;
    }

    .seo-title {
        font-size: 32px;
    }

    .methods-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================= GLOBAL STYLE ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.seo-title {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #f28a8a;
    margin-bottom: 20px;
}

.sub-text {
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}


.paragra {
    font-size: 16px;
    line-height: 1.6;
    color: #6B6A75;
}

/* ================= BIRTH CONTROL SECTION ================= */
.birth-control-white {
    background: #ffffff;
    padding: 60px 0;
}

/* Make left + right equal height */
.birth-control-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT CONTENT */
.bc-left {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;      /* Center vertically */
}

/* TITLE */
.seo-title {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.sub-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

/* ================= GRID ================= */
.bc-grid {
    display: flex;
    flex-direction: column; /* Columnwise */
    gap: 25px;
}

/* ================= SQUARE BOXES ================= */
.bc-box {
    background: #fff4f4;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.bc-box img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
}

.bc-box p {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.bc-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

/* ================= RIGHT IMAGE ================= */
.bc-right-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;        /* Align vertically same as left */
}

.bc-right-img img {
    width: 100%;
    height: 100%;
    max-height: 500px;           /* Same height look */
    object-fit: cover;           /* Fill height neatly */
    border-radius: 12px;
    transition: .3s ease;
}

.bc-right-img img:hover {
    transform: scale(1.04);
}

/* ================= MOBILE ORDER FIX ================= */
@media (max-width: 768px) {
    .birth-control-row {
        flex-direction: column;
        text-align: center;
    }

    /* Show left content first */
    .bc-left {
        order: 1;
    }

    /* Show image after content */
    .bc-right-img {
        order: 2;
    }

    .bc-right-img img {
        max-height: 350px;
    }
}

@media (max-width: 600px) {
    .bc-box {
        height: auto;
        padding: 30px;
    }

    .bc-grid {
        gap: 20px;
    }
}



/* infertility surgery */
/* ---------------- GLOBAL ---------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOP IMAGE SECTION ================= */

.causes-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 0;
}

/* Left image */
.cause-left-img {
    position: relative;
    width: 50%;
}

.cause-left-img img {
    width: 100%;
    border-radius: 12px;
}

/* Pink label */
.cause-label {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: #ff9b9b;
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

/* Right list */
.cause-right-list {
    width: 50%;
}

/* NEW cause-box class */
.cause-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffeaea;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.cause-box:hover {
    transform: translateX(5px);
}

/* Icon */
.cause-box i {
    font-size: 32px;
    color: #ff7d7d;
}

/* BLACK TEXT */
.cause-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000 !important; /* pure black */
}

/* Responsive */
@media(max-width: 768px) {
    .causes-row {
        flex-direction: column;
    }

    .cause-left-img,
    .cause-right-list {
        width: 100%;
    }
}

/* Section Wrapper */
.epidural-section {
    padding: 40px 20px;
}

/* Top Cards Container */
.epidural-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Smaller width for both cards */
.small-width {
    width: 580px;             /* 🔥 Reduced width */
    max-width: 100%;
}

/* Card Styling */
.epi-card {
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0px 4px 12px #0000001a;
}

/* Colors */
.epi-card.blue { background-color: #4a90e2; }
.epi-card.pink { background-color: #ff6f91; }

/* Titles styled like H3 but using <strong> (SEO friendly) */
.epi-main-title {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

/* List */
.epi-card ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ----- Transparent Section ------ */
.transparent-full-section {
    background: rgba(0, 0, 0, 0.05);
    padding: 35px 20px;
    margin-top: 20px;
}

/* Tile Grid */
.epi-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Tile Box */
.tile {
    padding: 20px;
    border-radius: 12px;
    color: white;
}

.tile.blue { background-color: #4a90e2; }
.tile.pink { background-color: #ff6f91; }

/* Tile Title */
.tile-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

/* Responsive */
@media (max-width: 600px) {
    .small-width {
        width: 100%;
    }
    .epi-main-title {
        font-size: 20px;
    }
}



/* gyco logy */

/* Section Wrapper */
.disease-section {
    padding: 60px 20px;
}

/* SEO Title (Strong tag styled like H2) */
.disease-title {
    display: block;
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #d42873;
    margin-bottom: 10px;
}

/* Subtitle */
.disease-subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #444;
}

/* Grid Layout */
.disease-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* Boxes */
.disease-box {
    padding: 40px 25px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    color: white;
}

/* Colors */
.blue { background-color: #6ea8d9; }
.pink { background-color: #f6a3a9; }

/* Top & Bottom Lines */
.line-top,
.line-bottom {
    width: 40px;
    height: 3px;
    background: white;
    display: block;
}

/* Disease Name text (Strong tag styled like H4) */
.disease-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .disease-title {
        font-size: 32px;
    }

    .disease-grid {
        grid-template-columns: 1fr;
    }

    .disease-box {
        min-height: 160px;
        text-align: center;
    }

    .line-top, .line-bottom {
        margin: 0 auto;
    }
}



.cause-left-img-gyco img {
    width: 80%;
    border-radius: 12px;
}


/* Section Background Safety */
.digital-xray-section {
    background: #fff;
}

/* Strong styled as H1 */
.xray-title {
    font-size: 48px;
    font-weight: 700;
    color: #5c77b2;
    display: block;
}

/* Strong styled as H3 */
.xray-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #5c77b2;
    display: block;
}

/* Right shoulder X-ray */
.xray-right-img {
    max-width: 330px;
    border-radius: 8px;
    transition: .3s;
}

/* Single foot image */
.xray-foot-single {
    width: 100%;
    max-width: 550px;
    border-radius: 6px;
    transition: transform .3s;
}

/* Hover animation */
.xray-foot-single:hover,
.xray-right-img:hover {
    transform: scale(1.03);
}

/* Bullet spacing */
.xray-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media(max-width: 768px) {

    .xray-title {
        font-size: 34px;
        text-align: center;
    }

    .xray-subtitle {
        font-size: 24px;
        text-align: center;
    }

    .xray-right-img {
        max-width: 100%;
    }

    .xray-foot-single {
        max-width: 100%;
    }
}

/* physiotherapy */

/* SECTION SPACING + WHITE BACKGROUND */
.physio-top-section,
.physio-middle-section,
.physio-bottom-section {
    padding: 70px 0;
    background: #fff;     /* ← WHITE BACKGROUND ADDED */
}

/* STRONG TAG AS HEADINGS */
.section-strong-title {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #5f88b7;
    margin-bottom: 20px;
}

/* IMAGE COMMON STYLE */
.physio-img,
.middle-img,
.bottom-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* IMAGE HOVER */
.physio-img:hover,
.middle-img:hover,
.bottom-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(0,0,0,0.22);
}

/* BULLET STYLE */
.custom-bullets {
    list-style: none;
    padding-left: 0;
}

.custom-bullets li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
}

.custom-bullets li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b6ea5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-strong-title {
        font-size: 28px;
    }

    .physio-top-section,
    .physio-middle-section,
    .physio-bottom-section {
        padding: 40px 0;
    }
}


/* diet and plan */


/* Outer Section */
.diet-section {
    width: 100%;
    padding: 40px 5%;
    background: #ffffff;   /* WHITE BACKGROUND */
    box-sizing: border-box;
}

/* Title Styled Like H1 */
.diet-title {
    font-size: 48px;
    font-weight: 700;
    color: #4d6fa9;
    display: block;
    margin-bottom: 20px;
}

/* Subtitle Styled Like H2 */
.diet-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #4d6fa9;
    display: block;
    margin-bottom: 15px;
}

/* Top Section Layout */
.diet-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

/* Text Area */
.diet-text,
.diet-bottom-text {
    flex: 1;
    line-height: 1.7;
    font-size: 17px;
}

/* Top Right Image */
.diet-top-img img {
    width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Bottom Section (Now white background) */
.diet-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #ffffff;   /* MAKE THIS WHITE */
    padding: 40px 0;       /* Remove colored box feel */
    border-radius: 0;
}

/* Bottom Left Image */
.diet-bottom-img img {
    width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effects */
.diet-top-img img:hover,
.diet-bottom-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Responsive */
@media(max-width: 991px) {
    .diet-top, .diet-bottom {
        flex-direction: column;
        text-align: center;
    }

    .diet-top-img img,
    .diet-bottom-img img {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }

    .diet-bottom {
        padding: 25px 0;
    }
}

@media(max-width: 600px) {
    .diet-title { font-size: 34px; }
    .diet-subtitle { font-size: 26px; }
}
/* THIRD CENTER SECTION */
.diet-third-section {
    background: #ffffff;
    padding: 60px 0;
    width: 100%;
}

/* Heading Styled as H2 */
.diet-third-title {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #4d6fa9;
    margin-bottom: 25px;
}

/* Bullet List Styling */
.diet-third-bullets {
    list-style: none;
    max-width: 750px;
    margin: auto;
    padding-left: 0;
    text-align: left; /* Needed for proper bullet alignment */
}

.diet-third-bullets li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    color: #444;
}

/* Custom Arrow Bullet */
.diet-third-bullets li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    color: #3b6ea5;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .diet-third-title {
        font-size: 28px;
    }

    .diet-third-bullets li {
        font-size: 16px;
    }
}

/* gallery */

/* White background */
.gallery-section {
    background: #ffffff;
}

/* Strong tag as H2 */
.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #22899E;
}

/* Image style */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover effect */
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-img {
        height: 160px;
    }
    .gallery-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        height: 130px;
    }
}


/* LIGHTBOX OVERLAY */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .3s ease;
    z-index: 9999;
}

/* SHOW LIGHTBOX */
.lightbox.show {
    visibility: visible;
    opacity: 1;
}

/* LIGHTBOX IMAGE */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* CLOSE BUTTON */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 50px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}
.close-lightbox:hover {
    color: #cccccc;
}


/* contact */


.blog-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Section title */
.section-title strong {
    font-size: 32px;
    color: #333;
}

/* Blog box styling */
.blog-box {
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}

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

/* Blog image */
.blog-img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Blog title */
.blog-title {
    font-size: 20px;
    color: #000; /* Black heading */
    line-height: 1.3;
}

.blog-title-link:hover .blog-title {
    color: #23527C; /* Green on hover */
    text-decoration: underline;
}

/* Paragraph under heading */
.paragra {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Read More link */
.read-more {
    display: inline-block;
    color: #000BEE;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color:#23527C;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .blog-title {
        font-size: 18px;
    }
    .paragra {
        font-size: 13px;
    }
}


.contact-item {
    display: flex;            /* Icon and text in a row */
    align-items: flex-start;  /* Align icon with top of text */
    gap: 10px;                /* Space between icon and text */
}

.contact-item i {
    min-width: 30px;          /* Same width for all icons */
    text-align: center;       /* Keep icons centered in their box */
    font-size: 20px;
    color: #007BFF;
}

.contact-item .paragra {
    margin: 0;                /* Remove default paragraph margin */
}

.contact-title {
    color:#6699CC;   /* Blue color */
    font-size: 1.5rem; /* Optional: adjust size */
    margin-bottom: 15px; /* Optional: spacing below heading */
    display: block;    /* Ensure it behaves as a block */
}


/* =========================
   Variables
   ========================= */
:root {
  --primary: #0d6efd;
  --text: #222;
  --muted: #6c757d;
  --radius: 12px;
}

/* =========================
   Section Box Wrapper
   ========================= */
.section-wrapper {
  background: #fff;
  padding: 40px 0;
}

.section-box {
  border: 2px solid #dcdcdc;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
}

.shadow-sm {
    box-shadow: -3px -0.875rem 2rem rgba(0, 0, 0, 0.075) !important;
}

/* =========================
   Typography (STRONG as headings)
   ========================= */
.title-lg {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
  color: var(--text);
  text-align: center;
}

.title-md {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--text);
}

.author-date {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.paragra {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* =========================
   Images
   ========================= */
.boxed-img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease;
}

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

/* =========================
   Bottom Box
   ========================= */
.bottom-box {
  padding: 30px;
  background: #fafafa;
  border-radius: 12px;
}

/* Doctor text */
.doctor {
  font-size: 16px;
}

/* Benefit list */
.benefits-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE FIXES
   ========================= */

/* Large screens (Desktop) */
@media (min-width: 992px) {
  /* Top content center */
  .top-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  /* Bottom section: left text, right image */
  .bottom-text {
    text-align: left;
  }
}

/* Tablets and below */
@media (max-width: 991px) {
  .title-lg {
    font-size: 28px;
    text-align: center;
  }
  .title-md {
    font-size: 20px;
    text-align: center;
  }
  .paragra,
  .author-date {
    text-align: center;
  }

  .bottom-text {
    text-align: center;
  }

  .benefits-list li {
    font-size: 15px;
  }
}

/* Mobile devices */
@media (max-width: 575px) {
  .title-lg {
    font-size: 24px;
  }
  .title-md {
    font-size: 18px;
  }
  .paragra {
    font-size: 15px;
  }
  .doctor {
    font-size: 14px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .boxed-img {
    transition: none;
    transform: none;
  }
}



/* myth */

/* KNEE SECTION WRAPPER */
.knee-section {
    background: #ffffff;
    padding: 50px 0;
}

/* ARTICLE BOX */
.knee-article {
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

/* MAIN TITLE */
.knee-title-lg {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    text-align: left;
}

/* META TEXT */
.knee-meta {
    font-size: 14px;
    color:#046BD3;
    margin-bottom: 25px;
    text-align: left;
}

/* MYTH TITLES */
.knee-myth-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    color: #444;
    text-align: left;
}

/* PARAGRAPH TEXT */
.knee-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-top: 10px;
    text-align: left;
}

.knee-text strong {
    color: #222;
}

/* MOBILE FRIENDLY */
@media (max-width: 576px) {
    .knee-article {
        padding: 20px;
    }

    .knee-title-lg {
        font-size: 22px;
    }

    .knee-myth-title {
        font-size: 18px;
    }

    .knee-text {
        font-size: 15px;
    }
}
