/*==========================
Navigation
===========================*/

:root{

    --primary:#0057c2;

    --secondary:#1f7ae0;

    --light:#ffffff;

    --text:#2d3748;

    --grey:#f6f9fc;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#fff;

    color:var(--text);

}

.container{

    width:1200px;

    max-width:95%;

    margin:auto;

}

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:24px;

    color:#0057c2;

    font-weight:700;

}

.logo small{

    display:block;

    color:#666;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar a{

    text-decoration:none;

    color:#1b2d4b;

    font-weight:600;

    transition:.3s;

}

.navbar a:hover{

    color:var(--primary);

}

.appointment-btn{

    background:#0057c2;

    color:#fff;

    text-decoration:none;

    padding:13px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.appointment-btn:hover{

    background:#0047a3;

}

.mobile-menu{

    display:none;

    font-size:30px;

    color:#0057c2;

    cursor:pointer;

}

@media(max-width:991px){

    .navbar{

        display:none;

    }

    .appointment-btn{

        display:none;

    }

    .mobile-menu{

        display:block;

    }
    }




/*===============================
Hero Section
================================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

    margin-top:90px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,78,168,.90),
        rgba(0,78,168,.90)
    );

}

.hero-container{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-content{

    width:60%;

    color:#fff;

}

.hero-logo{

    width:130px;

    height:130px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.20);

}

.hero-logo img{

    width:70px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.18);

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:25px;

    font-size:15px;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:22px;

    line-height:1.8;

    margin-bottom:40px;

    max-width:700px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    padding:18px 38px;

    background:#fff;

    color:#0057c2;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    padding:18px 38px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#0057c2;

}

.hero-card{

    width:360px;

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.hero-card h3{

    color:#0057c2;

    margin-bottom:20px;

    font-size:28px;

}

.hero-card p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;

}

.hero-card h2{

    color:#0057c2;

    margin-bottom:30px;

    font-size:34px;

}

.hero-card a{

    display:block;

    background:#0057c2;

    color:#fff;

    text-align:center;

    padding:16px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:35px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,12px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

@media(max-width:992px){

.hero-container{

flex-direction:column;

text-align:center;

padding:70px 0;

}

.hero-content{

width:100%;

}

.hero-card{

width:100%;

max-width:450px;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

}








/*==================================
About Section
==================================*/

.section{

    padding:100px 0;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    background:#eaf4ff;

    color:#0057c2;

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.section-header h2{

    font-size:46px;

    color:#16325c;

    margin-bottom:20px;

}

.section-header p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:18px;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about-content h3{

    font-size:38px;

    margin-bottom:25px;

    color:#16325c;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.feature-card{

    display:flex;

    gap:18px;

    padding:25px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:70px;

    height:70px;

    background:#0057c2;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    flex-shrink:0;

}

.feature-card h4{

    margin-bottom:10px;

    color:#16325c;

}

.feature-card p{

    margin:0;

    font-size:15px;

}

@media(max-width:991px){

.about-wrapper{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.feature-card{

text-align:left;

}

}




/*====================================
Services Section
====================================*/

.services{

    background:#f8fbff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:#0057c2;

    transition:.4s;

}

.service-card:hover::before{

    width:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#0057c2;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h3{

    color:#16325c;

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.service-card a{

    color:#0057c2;

    text-decoration:none;

    font-weight:700;

}

.service-card a i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

@media(max-width:991px){

.services-grid{

grid-template-columns:1fr;

}

}




/*======================================
Departments
=======================================*/

.departments{

    background:#ffffff;

}

.department-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.department-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.department-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.department-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0057c2;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:30px;

}

.department-card h3{

    color:#16325c;

    margin-bottom:18px;

    font-size:24px;

}

.department-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.department-card a{

    color:#0057c2;

    text-decoration:none;

    font-weight:700;

}

.department-card a i{

    margin-left:8px;

}

.department-card:hover .department-icon{

    background:#003b8f;

}

@media(max-width:991px){

.department-grid{

grid-template-columns:1fr;

}

}



/*=========================================
Doctors
==========================================*/

.doctors{

    background:#f8fbff;

}

.doctor-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.doctor-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.doctor-card:hover{

    transform:translateY(-12px);

}

.doctor-image{

    overflow:hidden;

}

.doctor-image img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.5s;

}

.doctor-card:hover img{

    transform:scale(1.08);

}

.doctor-content{

    padding:30px;

}

.doctor-content span{

    color:#0057c2;

    font-weight:700;

}

.doctor-content h3{

    margin:12px 0;

    color:#16325c;

    font-size:28px;

}

.doctor-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.doctor-social{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.doctor-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#0057c2;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

}

.doctor-btn{

    display:block;

    text-align:center;

    background:#0057c2;

    color:#fff;

    padding:15px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

}

@media(max-width:991px){

.doctor-grid{

grid-template-columns:1fr;

}

}




/*========================================
Statistics
=========================================*/

.statistics{

    position:relative;

    padding:120px 0;

    background:url("../images/statistics.jpg") center center/cover;

    overflow:hidden;

}

.statistics-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,61,145,.92);

}

.statistics .container{

    position:relative;

    z-index:2;

}

.section-header.light h2,

.section-header.light p,

.section-header.light .section-tag{

    color:#fff;

}

.section-header.light .section-tag{

    background:rgba(255,255,255,.15);

}

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:20px;

    padding:45px;

    text-align:center;

    color:#fff;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

}

.stat-card i{

    font-size:50px;

    margin-bottom:25px;

}

.stat-card h2{

    font-size:52px;

    margin-bottom:15px;

    font-weight:800;

}

.stat-card p{

    font-size:20px;

}

@media(max-width:991px){

.statistics-grid{

grid-template-columns:1fr;

}

}




/*==================================
Appointment
===================================*/

.appointment{

    background:#f7fbff;

}

.appointment-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.appointment-image{

    position:relative;

}

.appointment-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.experience-card{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#0057c2;

    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

}

.experience-card h2{

    font-size:50px;

    margin-bottom:10px;

}

.appointment-form{

    background:#fff;

    padding:50px;

    border-radius:25px;

    box-shadow:0 15px 50px rgba(0,0,0,.08);

}

.appointment-form h2{

    font-size:42px;

    color:#16325c;

    margin:20px 0;

}

.appointment-form p{

    color:#666;

    margin-bottom:35px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.form-group input,

.form-group select,

textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #dbe7f4;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.form-group input:focus,

.form-group select:focus,

textarea:focus{

    border-color:#0057c2;

}

textarea{

    margin-top:20px;

    resize:none;

}

.appointment-form button{

    width:100%;

    margin-top:30px;

    border:none;

    background:#0057c2;

    color:#fff;

    padding:18px;

    border-radius:12px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.appointment-form button:hover{

    background:#0046a5;

}

@media(max-width:991px){

.appointment-wrapper{

grid-template-columns:1fr;

}

.form-grid{

grid-template-columns:1fr;

}

}





/*==================================
Contact
===================================*/

.contact{

background:#fff;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

margin-top:60px;

}

.contact-card{

display:flex;

gap:20px;

padding:25px;

margin-bottom:20px;

border-radius:20px;

background:#f8fbff;

}

.contact-card i{

width:65px;

height:65px;

background:#0057c2;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:25px;

}

.contact-card h3{

margin-bottom:10px;

color:#16325c;

}

.contact-card p{

color:#666;

line-height:1.8;

}

.contact-form{

background:#f8fbff;

padding:40px;

border-radius:20px;

}

.contact-form input,

.contact-form textarea{

width:100%;

margin-bottom:20px;

padding:18px;

border:1px solid #dce6f4;

border-radius:10px;

outline:none;

}

.contact-form button{

width:100%;

background:#0057c2;

color:#fff;

border:none;

padding:18px;

border-radius:10px;

font-size:17px;

font-weight:700;

cursor:pointer;

}

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

}


/*====================================
Footer
=====================================*/

footer{

background:#052552;

color:#fff;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:40px;

}

.footer-grid h3,

.footer-grid h4{

margin-bottom:20px;

}

.footer-grid p{

line-height:1.8;

color:#ddd;

}

.footer-grid ul{

list-style:none;

}

.footer-grid li{

margin-bottom:15px;

}

.footer-grid a{

color:#ddd;

text-decoration:none;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:42px;

height:42px;

background:#0057c2;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

}

.footer-grid input{

width:100%;

padding:15px;

margin:15px 0;

border:none;

border-radius:8px;

}

.footer-grid button{

width:100%;

padding:15px;

background:#0057c2;

border:none;

color:#fff;

border-radius:8px;

cursor:pointer;

}

footer hr{

margin:50px 0 30px;

border:.5px solid rgba(255,255,255,.15);

}

.copyright{

text-align:center;

color:#bbb;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

}

}



/*=========================
NEWS
=========================*/

.news{

background:#f8fbff;

}

.news-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.news-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.news-card:hover{

transform:translateY(-12px);

}

.news-image{

overflow:hidden;

height:250px;

}

.news-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.news-card:hover img{

transform:scale(1.08);

}

.news-content{

padding:30px;

}

.news-content span{

color:#0057c2;

font-size:14px;

}

.news-content h3{

margin:18px 0;

font-size:26px;

color:#16325c;

}

.news-content p{

line-height:1.8;

color:#666;

margin-bottom:20px;

}

.news-content a{

color:#0057c2;

text-decoration:none;

font-weight:700;

}

@media(max-width:991px){

.news-grid{

grid-template-columns:1fr;

}

}






