/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   VARIABLES
========================= */

:root{
    --primary:#00b3ad;
    --secondary:#1047c0;
    --dark:#333333;
    --white:#ffffff;
    --border:#eeeeee;
}

/* =========================
   HEADER
========================= */

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

/* =========================
   LOGO
========================= */

.logo img{
    height:65px;
    display:block;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.nav-links a:hover{
    color:var(--secondary);
}

/* =========================
   DROPDOWN
========================= */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown > a i{
    font-size:10px;
    transition:.3s ease;
}

.dropdown:hover > a i{
    transform:rotate(180deg);
}

.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;
    width:270px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:12px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:14px 25px;
    color:#333;
    font-weight:500;
    transition:.3s ease;
}

.dropdown-menu li a:hover{
    background:#f6fefe;
    color:var(--primary);
    padding-left:35px;
}

/* =========================
   APPOINTMENT BUTTON
========================= */

.appointment-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.appointment-btn:hover{
    background:var(--secondary);
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
    display:none;
    font-size:28px;
    color:var(--secondary);
    cursor:pointer;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
    display:none;
}

/* ==================================================
   TABLET & MOBILE
================================================== */

@media(max-width:991px){

    .navbar,
    .appointment-btn{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .logo img{
        height:55px;
    }

    .mobile-menu{
        position:fixed;
        top:85px;
        left:-100%;
        width:300px;
        height:calc(100vh - 85px);
        background:#fff;
        display:block;
        overflow-y:auto;
        transition:.4s ease;
        box-shadow:0 5px 25px rgba(0,0,0,.12);
        z-index:9998;
    }

    .mobile-menu.active{
        left:0;
    }

    .mobile-menu ul li{
        border-bottom:1px solid var(--border);
    }

    .mobile-menu ul li a{
        display:block;
        padding:18px 20px;
        color:#333;
        font-size:15px;
        font-weight:600;
    }

    /* Dropdown Header */

    .mobile-dropdown-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:18px 20px;
    }

    .mobile-dropdown-header a{
        padding:0 !important;
        color:#333;
        font-size:15px;
        font-weight:600;
    }

    .dropdown-toggle{
        border:none;
        background:none;
        cursor:pointer;
        color:var(--secondary);
        font-size:14px;
    }

    .dropdown-toggle i{
        transition:.3s ease;
    }

    .mobile-dropdown.open .dropdown-toggle i{
        transform:rotate(180deg);
    }

    /* Sub Menu */

    .mobile-dropdown ul{
        max-height:0;
        overflow:hidden;
        background:#f8fdfd;
        transition:max-height .4s ease;
    }

    .mobile-dropdown.open ul{
        max-height:500px;
    }

    .mobile-dropdown ul li a{
        padding:15px 35px;
        color:#555;
        font-size:14px;
        font-weight:500;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:576px){

    .container{
        width:95%;
    }

    .logo img{
        height:50px;
    }

    .mobile-menu{
        width:100%;
        top:80px;
        height:calc(100vh - 80px);
    }

}
/* INFO DROPDOWN MOBILE */

.mobile-dropdown > span{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    color:#333;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.mobile-dropdown > span i{
    color:var(--secondary);
    font-size:14px;
    transition:.3s ease;
}

.mobile-dropdown.open > span i{
    transform:rotate(180deg);
}





















.page-hero{
    position:relative;
    height:320px;
    background:#f4f5fa;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    
    border-bottom-right-radius:300px;
    border-top-right-radius:0;

}

/* Heading */

.hero-content{
    position:relative;
    z-index:10;
}

.hero-content h1{
    font-size:30px;
    font-weight:800;
    color:#1447c4;
    font-family:'Arial',sans-serif;
}

/* Big Circles */

.circle-one{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.7);
    top:20px;
    left:220px;
}

.circle-two{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.6);
    top:-80px;
    right:120px;
}

/* Capsules */

.capsule{
    position:absolute;
    width:120px;
    height:24px;
    background:#cfd7f6;
    border-radius:50px;
}

.capsule::after{
    content:"";
    position:absolute;
    top:4px;
    left:12px;
    width:70px;
    height:4px;
    background:white;
    opacity:.8;
    transform:rotate(-55deg);
}

.capsule-one{
    left:230px;
    top:150px;
    transform:rotate(40deg);
}

.capsule-two{
    left:700px;
    top:80px;
    transform:rotate(-60deg);
}

/* Triangles */

.triangle{
    position:absolute;
    width:0;
    height:0;
}

.triangle-one{
    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:80px solid #ffd8de;
    top:0;
    left:400px;
    transform:rotate(35deg);
}

.triangle-two{
    border-left:35px solid transparent;
    border-right:35px solid transparent;
    border-bottom:70px solid #ffd8de;
    right:300px;
    top:100px;
    transform:rotate(15deg);
}



/* Dot Pattern */

.dot-grid{
    position:absolute;
    width:180px;
    height:180px;
    background-image:
    radial-gradient(#b8f0ea 2px, transparent 2px);
    background-size:28px 28px;
}

.dot-grid-one{
    right:500px;
    top:160px;
}

.dot-grid-two{
    left:900px;
    bottom:-20px;
}

/* Stars */

.hero-star{
    position:absolute;
    width:80px;
    opacity:.8;
}

.star-one{
    left:100px;
    top:100px;
}

.star-two{
    right:100px;
    bottom:50px;
}

/* Bottom Wave */

.bottom-wave{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:40px;
    background:white;
}

.bottom-wave::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-38px;
    width:220px;
    height:80px;
    background:white;
    border-radius:120px 120px 0 0;
}
/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .page-hero{
        height:260px;
        border-bottom-right-radius:180px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .circle-one{
        width:130px;
        height:130px;
        left:80px;
        top:20px;
    }

    .circle-two{
        width:130px;
        height:130px;
        right:40px;
        top:-40px;
    }

    .capsule-one{
        left:50px;
        top:120px;
    }

    .capsule-two{
        right:40px;
        left:auto;
        top:50px;
    }

    .triangle-one{
        left:250px;
    }

    .triangle-two{
        right:100px;
    }

    .dot-grid-one{
        left:20px;
        top:140px;
    }

    .dot-grid-two{
        display:none;
    }

    .hero-star{
        width:50px;
    }

    .star-one{
        left:20px;
        top:60px;
    }

    .star-two{
        right:20px;
        bottom:40px;
    }

    .bottom-wave::before{
        width:160px;
        height:60px;
        top:-25px;
    }
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .page-hero{
        height:220px;
        border-bottom-right-radius:120px;
    }

    .hero-content h1{
        font-size:32px;
        text-align:center;
        padding:0 15px;
    }

    .circle-one{
        width:100px;
        height:100px;
        left:-20px;
        top:20px;
    }

    .circle-two{
        width:90px;
        height:90px;
        right:-10px;
        top:-20px;
    }

    .capsule{
        width:70px;
        height:14px;
    }

    .capsule::after{
        width:35px;
        height:2px;
        top:3px;
    }

    .capsule-one{
        left:15px;
        top:110px;
    }

    .capsule-two{
        right:15px;
        top:40px;
        left:auto;
    }

    .triangle-one{
        left:120px;
        border-left:20px solid transparent;
        border-right:20px solid transparent;
        border-bottom:40px solid #ffd8de;
    }

    .triangle-two{
        right:50px;
        top:90px;
        border-left:18px solid transparent;
        border-right:18px solid transparent;
        border-bottom:36px solid #ffd8de;
    }

    .dot-grid{
        width:90px;
        height:90px;
        background-size:18px 18px;
    }

    .dot-grid-one{
        left:10px;
        top:140px;
    }

    .dot-grid-two{
        display:none;
    }

    .hero-star{
        width:35px;
    }

    .star-one{
        left:20px;
        top:40px;
    }

    .star-two{
        right:20px;
        bottom:30px;
    }

    .bottom-wave{
        height:25px;
    }

    .bottom-wave::before{
        width:110px;
        height:40px;
        top:-18px;
    }
}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .page-hero{
        height:180px;
        border-bottom-right-radius:90px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .capsule,
    .star-two,
    .dot-grid-two,
    .triangle-two{
        display:none;
    }

    .circle-one{
        width:70px;
        height:70px;
    }

    .circle-two{
        width:60px;
        height:60px;
    }

    .bottom-wave::before{
        width:80px;
        height:30px;
    }
}

















.pediatric-section {
    padding: 50px 8%;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-tag {
    display: block;
    color: #00b5ad;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.main-title {
    color: #0f4acb;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.pediatric-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: center;
}

.pediatric-image {
    text-align: center;
}

.pediatric-image img {
    width: 100%;
    height: 500px;
    margin-top:-50px;
    max-width: 600px;
}

.overview-tag {
    color: #00b5ad;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.content-block {
    margin-bottom: 20px;
}

.content-block h3 {
    color: var(--secondary);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.content-block p {
    color: #555;
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Tablet */

@media(max-width:991px){

    .main-title{
        font-size:32px;
    }

    .pediatric-content{
        grid-template-columns:1fr;
        gap:50px;
    }

    .pediatric-image{
        order:1;
    }

    .pediatric-text{
        order:2;
    }
}

/* Mobile */

@media(max-width:576px){

    .pediatric-section{
        padding:70px 20px;
    }

    .main-title{
        font-size:32px;
    }

    .content-block h3{
        font-size:24px;
    }

    .content-block p{
        font-size:16px;
        text-align: justify
    }
}


















.facility-highlights{
    padding:30px 3%;
    background:white;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    color:var(--secondary);
    font-size:35px;
    font-weight:800;
    margin:0;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:30px;
}

.facility-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.facility-card img{
    width:150px;
    height:100px;
    object-fit:contain;
    margin-bottom:20px;
}

.facility-card h3{
    font-size:15px;
    font-weight:600;
    color:#111;
    text-transform: uppercase;
    margin-bottom:20px;
    line-height:1.4;
}

.facility-card p{
    color:#666;
    font-size:15px;
    text-align: justify;
    line-height:1.9;
}

.facility-full{
    width:100%;
    max-width:100%;
}

.facility-full img{
    width:150px;
}

.facilit-full{
    width:100%;
    max-width:100%;
}

.facilit-full img{
    width:150px;
}

.facilit-card p{
    color:#666;
    font-size:15px;
    line-height:1.9;
    text-align:justify;

    text-indent:10px; /* first line gap */
}

.facilit-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.facilit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.facilit-card img{
    width:150px;
    height:100px;
    object-fit:contain;
    margin-bottom:20px;
}

.facilit-card h3{
    font-size:15px;
    font-weight:600;
    color:#111;
    text-transform: uppercase;
    margin-bottom:20px;
    line-height:1.4;
}
/* Mobile */
@media (max-width:768px){
    .facilit-card p{
        text-indent:0;
    }
}

@media(max-width:991px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:40px;
    }
     .facilit-card p{
        text-indent:0;
    }
}

@media(max-width:768px){

    .facility-grid{
        grid-template-columns:1fr;
    }

    .facility-highlights{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .facility-card{
        padding:35px 25px;
    }
    
    .facilit-card{
        padding:35px 25px;
    }

}





















.gyno-banner{
    position:relative;
    height:300px;

    background-image:url("../images/bg3.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
     border-bottom-right-radius:150px;
    border-top-right-radius:0;
}

/* Title */

.banner-content{
    position:absolute;
    left:40%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:2;
}

.banner-content h1{
    font-size:50px;
    color:#1147c8;
    font-weight:800;
    margin:0;
}
@media (max-width: 768px){

    .gyno-banner{
        height:200px;
        border-bottom-right-radius:60px;
    }

    .banner-content{
        left:50%;
        top:50%;
        transform:translate(-50%, -50%);
        width:90%;
        text-align:center;
    }

    .banner-content h1{
        font-size:32px;
        line-height:1.2;
    }
}
























.gyno-banner{
    position:relative;
    height:300px;

    background-image:url("../images/bg3.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
     border-bottom-right-radius:150px;
    border-top-right-radius:0;
}

/* Title */

.banner-content{
    position:absolute;
    left:40%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:2;
}

.banner-content h1{
    font-size:50px;
    color:#1147c8;
    font-weight:800;
    margin:0;
}
@media (max-width: 768px){

    .gyno-banner{
        height:200px;
        border-bottom-right-radius:60px;
    }

    .banner-content{
        left:50%;
        top:50%;
        transform:translate(-50%, -50%);
        width:90%;
        text-align:center;
    }

    .banner-content h1{
        font-size:32px;
        line-height:1.2;
    }
}




















.gyno-overview{
    padding:40px 5%;
    background:white;
}

.gyno-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 80px;
}

.gyno-header span{
    display:block;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.gyno-header h2{
    font-size:25px;
    line-height:1.2;
    color:var(--secondary);
    font-weight:800;
    margin:0;
}

.gyno-wrapper{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:20px;
    align-items:center;
}

.gyno-image{
    text-align:center;
}

.gyno-image img{
    width:100%;
    max-width:500px;
}

.gyno-content h3{
    color:var(--secondary);
    font-size:25px;
    margin-bottom:25px;
    line-height:1.3;
    font-weight:700;
}

.gyno-content h4{
    color:var(--primary);
    font-size:15px;
    font-weight:500;
    line-height:1.5;
    margin-bottom:30px;
    text-transform:uppercase;
}

.gyno-content p{
    font-size:16px;
    line-height:1.6;
    color:#555;
    text-align: justify;
    margin-bottom:15px;
}

.gyno-content strong{
    color:#333;
}
@media(max-width:991px){

    .gyno-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .gyno-header h2{
        font-size:48px;
    }

    .gyno-content h3{
        font-size:34px;
    }
}

@media(max-width:576px){

    .gyno-overview{
        padding:70px 20px;
    }

    .gyno-header h2{
        font-size:34px;
    }

    .gyno-content h3{
        font-size:26px;
    }

    .gyno-content h4{
        font-size:18px;
    }

    .gyno-content p{
        font-size:16px;
        text-align: justify;
    }
}



















/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    background: white;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* =========================
   MAIN LAYOUT
========================= */

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 70px 30px 40px;

    display: grid;
    grid-template-columns:
        1.3fr
        1.2fr
        .9fr
        .7fr
        .9fr;

    gap: 40px;
    position: relative;
    z-index: 2;
}

/* =========================
   LOGO SECTION
========================= */

.footer-logo {
    width: 300px;
    max-width: 100%;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 320px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #08b8b2;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 20px;

    border-radius: 12px;
    text-decoration: none;

    transition: .3s;
}

.social-links a:hover {
    transform: translateY(-4px);
}

/* =========================
   DOCTOR IMAGE
========================= */

.footer-doctor {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer-doctor img {
    width: 420px;
    max-width: 100%;
    transform: translateY(60px);
}

/* =========================
   COLUMN HEADINGS
========================= */

.footer-services h3,
.footer-support h3,
.footer-timings h3 {
    color: #1247c4;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* =========================
   LISTS
========================= */

.footer-services ul,
.footer-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-support li {
    margin-bottom: 12px;
    color: #444;
    font-size: 18px;
}

.footer-support a {
    text-decoration: none;
    color: #444;
}

.footer-support a:hover {
    color: #08b8b2;
}

/* =========================
   TIMINGS
========================= */

.footer-timings p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.footer-timings .green {
    color: var(--primary);
    font-weight: 600;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-row {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px 60px;

    position: relative;
    z-index: 2;
}

.newsletter-line {
    margin-left: 50%;
    border-top: 1px solid #d8d8d8;
    margin-bottom: 35px;
}

.newsletter-row h2 {
    margin-left: 50%;

    max-width: 450px;

    color: #4b4b4b;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
    background: var(--primary);
    padding: 32px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: white;
    font-size: 18px;
    margin: 0;
}

/* =========================
   WHATSAPP
========================= */
.footer-services ul li a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.footer-services ul li a:hover{
    color:#08b8b2;
    padding-left:5px;
}
/* =========================
   CLOUDS
========================= */

.cloud1,
.cloud2 {
    position: absolute;
    background: #f7efd9;
    opacity: .6;
    border-radius: 100px;
}

.cloud1 {
    width: 220px;
    height: 70px;
    top: 100px;
    left: 32%;
}

.cloud1::before,
.cloud1::after {
    content: "";
    position: absolute;
    background: #f7efd9;
    border-radius: 50%;
}

.cloud1::before {
    width: 80px;
    height: 80px;
    left: 25px;
    top: -35px;
}

.cloud1::after {
    width: 90px;
    height: 90px;
    right: 25px;
    top: -40px;
}

.cloud2 {
    width: 280px;
    height: 80px;
    top: 120px;
    right: 6%;
}

.cloud2::before,
.cloud2::after {
    content: "";
    position: absolute;
    background: #f7efd9;
    border-radius: 50%;
}

.cloud2::before {
    width: 100px;
    height: 100px;
    left: 30px;
    top: -40px;
}

.cloud2::after {
    width: 110px;
    height: 110px;
    right: 40px;
    top: -50px;
}
/* =========================
   HILLS
========================= */

.hill1,
.hill2 {
    position: absolute;
    background: #f8f0f0;
    opacity: .6;
}

.hill1 {
    width: 380px;
    height: 170px;
    right: 18%;
    bottom: 130px;

    border-radius: 200px 200px 0 0;
}

.hill2 {
    width: 260px;
    height: 120px;
    right: 3%;
    bottom: 130px;

    border-radius: 200px 200px 0 0;
}

/* =========================
   DECORATIVE CIRCLES
========================= */

.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.pink {
    width: 50px;
    height: 50px;

    background: #ffc5cf;

    top: 320px;
    right: 360px;
}

.purple {
    width: 22px;
    height: 22px;

    background: #d8c1ff;

    top: 350px;
    right: 430px;
}

.yellow {
    width: 35px;
    height: 35px;

    background: #ffe48a;

    top: 200px;
    right: 800px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-doctor{
        grid-column:span 2;
    }

    .newsletter-line,
    .newsletter-row h2{
        margin-left:0;
    }

}

/* =========================
   MOBILE
========================= */

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-brand{
        align-items:flex-start;
        text-align:left;
    }

    .footer-logo{
        width:220px;
    }

    .footer-services{
        margin-top:10px;
    }

    .footer-doctor{
        display:none;
    }
    .footer-bottom p {
    color: white;
    font-size: 12px;
    margin: 0;
}
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .footer-container{
        padding:50px 20px 20px;
    }

    .footer-services h3,
    .footer-support h3,
    .footer-timings h3{
        font-size:24px;
    }

    .footer-services li,
    .footer-support li,
    .footer-timings p{
        font-size:16px;
    }

    .newsletter-row h2{
        font-size:20px;
        line-height:1.5;
    }

}







.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
    z-index:99999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

@media(max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:30px;
        bottom:15px;
        right:15px;
    }
}