    body {
        margin: 0;
        font-family: Arial, sans-serif;
        color: white;
    }

header {
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #005f56;
    position: fixed;
    width: 100%;
    z-index: 99999;
}   
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 24px;
        font-weight: bold;
    }
.call-btn {
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 10px;
    background: #fff5f5;
    color: #000000;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

 .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 160px 40px 50px 40px;
    flex-wrap: wrap;
    background: #005f56;
}

    .hero-text {
        max-width: 50%;
    }

    .hero-text h1 {
        font-size: 55px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.appointment-btn {
    background: #ffe4ad;
    color: #000;
    padding: 20px 40px;
    border-radius: 15px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

    .doctors {
        max-width: 45%;
        position: relative;
        text-align: center;
    }
.doctors img {
    width: 75%;
    border-radius: 10px;
    margin: 10px;
    border: solid #ddd 5px;
    padding: 10px;
    background: #fff;
}

.badge {
    position: absolute;
    top: 0;
    left: 20%;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

    .badge2 {
        position: absolute;
        top: 0;
        right: 10%;
        background: white;
        color: black;
        padding: 15px;
        border-radius: 15px;
        font-size: 14px;
    }

.doctor-name {
    background: white;
    color: #005f56;
    font-weight: bold;
    padding: 10px 1px;
    border-radius: 10px;
    margin-top: 10px;
    display: inline-masonry;
    width: 46%;
    margin: 0 auto;
    font-size: 22px;
}

.hero p, .hero-text h1 {
    color: #fff;
}

.hero .badge {
    color: #000;
    font-size: 16px;
    line-height: 26px;
}

.card {
    background-color: #ffffff00 !important;
}

.logo img {
    width: 100%;
    max-width: 270px;
    background: #fff;
    border-radius: 10px;
}

.action-image .clincs .owl-nav, .action-image .clincs .owl-dots {
    display: none;
}

/* Main Section */
.problem-section {
    background: #005850;
    padding: 80px 0;
    color: white;
    font-family: Arial, sans-serif;
}

/* Center Heading Area */
.heading-area {
    text-align: center;
    margin-bottom: 40px;
}

.heading-area .logo {
    height: 60px;
    margin-bottom: 15px;
    margin: 0  auto 50px;
    background: #fff;
    border-radius: 10px;
}

.heading-area h2 {
    font-size: 34px;
    font-weight: 800;
}

/* Card Grid */
.problem-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

/* Each Card */
.card {
    width: 260px;
}

.card-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 17px;
    font-weight: 700;
}

.card p {
    opacity: 0.95;
    font-size: 14px;
    line-height: 1.5;
}

/* Button Area */
.btn-area {
    text-align: center;
    margin-top: 60px;
}

.main-btn {
    background: #ffe396;
    padding: 18px 40px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    color: black;
    text-decoration: none;
    display: inline-block;
}

.sub-text {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.85;
}

.action-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px;
    background: #ffffff;
}

.action-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.action-content {
    max-width: 600px;
}

.action-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.action-content h2 span {
    color: #00714A;
}

.points p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin: 10px 0;
}

.sub-line {
    margin-top: 25px;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

.cta-btn {
    margin-top: 25px;
    background: #FFD96A;
    padding: 16px 35px;
    font-size: 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
    text-decoration: auto;
    display: inline-block;
}

.cta-btn:hover {
    background: #FFCC4D;
}

.small-text {
    margin-top: 8px;
    color: #777;
    font-size: 14px;
}


.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0;
    background-color: #005850; /* Green background */
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.stat-box p {
    margin-top: 10px;
    font-size: 20px;
    color: white;
    opacity: 0.9;
}


/* SECTION BACKGROUND */
.clinic-section {
    padding: 60px 0;
}

.clinic-container {
    background: #004d40;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LEFT SIDE */
.clinic-left h2 {
    font-size: 45px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.clinic-btn {
    display: inline-block;
    background: #ffe39e;
    border-radius: 15px;
    padding: 18px 30px;
    font-size: 18px;
    margin-top: 25px;
    color: black;
    font-weight: 700;
    text-decoration: none;
}

.clinic-btn span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
}

/* RIGHT SIDE */
.clinic-right {
    display: flex;
    gap: 20px;
}

.clinic-card {
    width: 260px;
    background: #003b2f;
    border-radius: 20px;
    padding: 15px;
    color: white;
    position: relative;
}

.clinic-card img {
    width: 100%;
    border-radius: 15px;
}

.clinic-card h3 {
    margin: 12px 0 4px;
    font-size: 20px;
}

.clinic-card p {
    font-size: 14px;
    opacity: 0.8;
}

.arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: white;
    color: black;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}


/* Footer Main */
.clinic-footer {
    background: #0b5c4d;
    color: white;
}

/* Logo */
.footer-logo {
    width: 200px;
    background: #fff;
    border-radius: 10px;
}

/* Footer Text */
.footer-about,
.footer-address,
.footer-links li a {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    font-weight: 600;
}

/* Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 4px;
}

/* Social Icons */
.footer-social a {
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Bottom Bar */
.footer-bottom {
    background: #08493e;
    color: #ffffff;
    font-size: 15px;
}


.doctors-section {
    background: #f7f7f7;
}

.doctor-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Top Image Box */
.doctor-img {
    background: linear-gradient(135deg, #efefef, #dddddd);
    border-radius: 20px 20px 20px 20px;
    padding: 0px;
    text-align: center;
}

.items img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

h4.doctor-name.mt-3 {
    width: 100%;
}

.doctor-img img {
    width: 100%;
    border-radius: 15px;
    height: 330px;
    object-fit: cover;
}
.clinic-left img {
    width: 100%;
    max-width: 240px;
    padding-bottom: 20px;
    background: #fff;
    border-radius: 10px;
}
/* Name */
.doctor-name {
    font-weight: 700;
    text-align: center;
}

/* Role Badge */
.doctor-role {
    background: #0b8059;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    width: fit-content;
    margin: 10px auto 0;
    font-size: 14px;
}

/* Bullet Points */
.doctor-points {
    list-style: none;
    padding: 0;
}

.doctor-points li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
}

.doctor-points li::before {
    content: "✔";
    color: #0b8059;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.iconlist a img {
    width: 100%;
    max-width: 60px;
}
.iconlist {
    display: flex;
    justify-content: space-between;
}
footer.clinic-footer.pt-5 {
    position: relative;
}
footer.clinic-footer.pt-5 .iconlist {
    position: fixed;
    width: 100%;
    bottom: 57px;
}

/* Stats */
.stat-box {
    /* background: #0b8059; */
    color: white;
    padding: 14px 5px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
}

.stat-box span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: -5px;
}


.testimonials-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #004d40;
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

section.doctors-section.py-5 .stat-box {
    background: #0b8059;
}

.divider .line {
    width: 70px;
    height: 3px;
    background: #ff8a00;
    margin: 0 10px;
}

.divider .dot {
    font-size: 22px;
    color: #ff8a00;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #ffffff;
    width: 32%;
    min-width: 300px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-icon {
    font-size: 32px;
    color: #777;
}

.user-name {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #333;
}

.user-location {
    font-size: 14px;
    margin: 0;
    color: #777;
}


.process-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #004d40;
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-subtitle {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.divider .line {
    width: 70px;
    height: 3px;
    background: #ff8a00;
    margin: 0 10px;
}

.divider .dot {
    font-size: 20px;
    color: #ff8a00;
}

.process-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.process-box {
    width: 22%;
    min-width: 250px;
}

.process-circle {
    width: 70px;
    height: 70px;
    background: #004d40;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    font-weight: bold;
}

.process-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.process-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.newdel .doctor-img img {
    object-fit: contain;
}
.newdel .doctor-card span {
    display: block;
    text-align: center;
}

.videl .clinic-card {
    width: 500px !important;
}

.delhinc  .items img {
    height: 100%;
    max-width: 100%;
}

b.fouder {
    background: #0b8059;
    margin: 0 auto;
    display: table;
    padding: 6px 20px;
    border-radius: 10px;
    color: #ffff;
}

form.enwuirynow input {
    width: 100%;
    border: solid #ddd 1px;
    padding: 10px;
    margin-bottom: 20px;
    color: #000;
}

form.enwuirynow button {
    background: #189d0e;
    color: #fff !important;
    padding: 10px 10px;
    display: block;
    margin-top: 15px;
    border: none;
}

section.formnow {
    padding: 60px 0px 20px;
}

.formtile {
    width: 65%;
    margin: 0 auto;
}

.formtile h2 {
    text-align: center;
    padding-bottom: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .stat-box h2 {
        font-size: 38px;
    }

    .stat-box p {
        font-size: 18px;
    }
}

/* Responsive */
@media(max-width: 900px) {
    .action-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .action-image img {
        max-width: 100%;
    }

    .action-content h2 {
        font-size: 28px;
    }
}



    @media (max-width: 900px) {
        .hero-text, .doctors {
            max-width: 100%;
            text-align: center;
        }
        .hero {
            flex-direction: column;
        }
    }


    @media only screen and (max-width: 1199px) {
.hero {
    padding: 125px 20px 25px 20px;
}
.hero-text h1 {
    font-size: 40px;
}
.doctor-name {
    font-size: 16px;
}
.hero .badge {
    font-size: 10px;
    line-height: 17px;
}
.badge2 {
    top: -14px;
    right: -1%;
    font-size: 14px;
}
.doctors {
    max-width: 50%;
}
.hero-text {
    max-width: 44%;
}
.doctor-img img {
    height: 500px;
}
.heading-area h2 {
    font-size: 26px;
}
.problem-section {
    padding: 80px 20px;
}
.clinic-right {
    flex-wrap: wrap;
}
    }


       @media only screen and (max-width: 992px) {
        .hero-text {
    max-width: 100%;
}
.doctors {
    max-width: 100%;
}
.hero .badge {
    font-size: 16px;
    line-height: 25px;
}
.doctors {
    max-width: 100%;
    margin-top: 30px;
}
.doctor-img img {
    height: 350px;
}
.heading-area h2 {
    font-size: 20px;
}
.clinic-left {
    width: 100%;
}
.clinic-container {
    display: block;
}
.clinic-right {
    padding-top: 50px;
}

    }


       @media only screen and (max-width: 767px) {
        header {
    padding: 10px 10px;
}
.logo img {
    width: 100%;
    max-width: 150px;
}
.hero-text h1 {
    font-size: 30px;
}
.doctors img {
    width: 100%;
    border-radius: 10px;
    margin: 0px;
    border: solid #ddd 2px;
    padding: 10px;
}
.action-content {
    padding-top: 20px;
}
.badge {
    position: absolute;
    top: -15px;
    left: 0%;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}
.hero .badge {
    font-size: 12px;
    line-height: 22px;
}
.badge2 {
    top: -14px;
    right: -1%;
    font-size: 11px;
}
.doctor-name {
    width: 100%;
}
.heading-area h2 {
    font-size: 14px;
}
.doctor-img img {
    height: 100%;
}
.card {
    width: 100%;
}
.action-section {
    padding: 50px 10px;
}
.action-content h2 {
    font-size: 22px;
}
.points {
    text-align: left;
}
.clinic-container {
    background: #004d40;
    border-radius: 25px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.clinic-left h2 {
    font-size: 30px;
}
.clinic-container {
    display: block;
}
.clinic-card {
    width: 100%;
}
.arrow {
    right: 3px;
    bottom: 1px;
}
.section-title {
    font-size: 25px;
}
.stats-container {
    padding: 10px 0;
}
.testimonials-section {
    padding: 60px 0px;
}
footer.clinic-footer.pt-5 .iconlist {
    position: fixed;
    width: 100%;
    bottom: 6px;
    z-index: 99999;
}

    }