
/* =========================
   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);
}



























.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;
         background-position: right;
    }

    .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:28px;
    }

    .gyno-content h3{
        font-size:24px;
    }
}

@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;
    }
}




























.gyno-services{
    padding:50px 3%;
    background:white;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#1248c7;
    font-size:35px;
    font-weight:800;
    margin:0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-bottom:30px;
}

.service-card{
    background:#fff;
    border-radius:28px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.service-card img{
    width:155px;
    height:105px;
    object-fit:contain;
    margin-bottom:20px;
}

.service-card h3{
    font-size:15px;
    font-weight:600;
    color:#111;
    text-transform: uppercase;
    margin-bottom:20px;
    line-height:1.4;
}

.service-card p{
    font-size:15px;
    color:#666;
    text-align: justify;
    line-height:1.6;
}

.bottom-services{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.wide-card{
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.wide-card img{
    align-self:center;
    margin-bottom:20px;
}
@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bottom-services{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .gyno-services{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .service-card{
        padding:30px 25px;
    }
}















.appointment-section{
    min-height:300px;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.35)
    ),
    url("../images/hand.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    /* Scroll Effect */
    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.appointment-overlay{
    width:90%;
    max-width:1200px;
}


.appointment-overlay h5{
    color:#fff;
    font-size:20px;
    letter-spacing:1px;
    margin-bottom:25px;
}

.appointment-overlay h2{
    color:#fff;
    font-size:25px;
    line-height:1.4;
    font-weight:600;
    margin-bottom:40px;
    text-transform:uppercase;
}

.app-btn{
    display:inline-block;
    padding:16px 40px;

    background:#00b8b8;
    color:#fff;

    text-decoration:none;
    border-radius:10px;

    font-size:18px;
    font-weight:600;

    transition:.3s;
}

.app-btn:hover{
    transform:translateY(-4px);
}
/* TABLET */

@media (max-width:1024px){

    .appointment-section{
        min-height:450px;
        padding:80px 20px;
        background-position:center center;
        background-attachment:scroll;
    }

    .appointment-overlay h5{
        font-size:18px;
    }

    .appointment-overlay h2{
        font-size:32px;
        line-height:1.5;
    }

}

/* MOBILE */

@media (max-width:768px){

    .appointment-section{
        min-height:380px;
        padding:60px 15px;
        background-attachment:scroll;
    }

    .small-line{
        margin-bottom:20px;
    }

    .appointment-overlay{
        width:100%;
    }

    .appointment-overlay h5{
        font-size:16px;
        margin-bottom:15px;
    }

    .appointment-overlay h2{
        font-size:22px;
        line-height:1.6;
        margin-bottom:25px;
        text-transform:none;
    }

    .appointment-btn{
        padding:14px 28px;
        font-size:16px;
    }

}

/* SMALL MOBILE */

@media (max-width:480px){

    .appointment-section{
        min-height:320px;
        padding:50px 12px;
    }

    .appointment-overlay h5{
        font-size:14px;
    }

    .appointment-overlay h2{
        font-size:18px;
        line-height:1.5;
        margin-bottom:20px;
    }

    .appointment-btn{
        padding:12px 24px;
        font-size:15px;
        border-radius:8px;
    }

}













/* =========================
   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;
    }
}