

/* ==========================
   HERO
========================== */

.hero-section{
    background:
    linear-gradient(rgba(10,46,109,.92),
    rgba(10,46,109,.92)),
    url('../images/hospital-bg.jpg');

    background-size:cover;
    background-position:center;
    color:#fff;
}



.hero-title{
    font-size:80px;
    line-height:1.1;
    font-weight:700;
    color:#ffffff;
    font-family:'Playfair Display', serif;
}

.hero-title span{
    color:#ff7a00;
    position:relative;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-section h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-section p{
    font-size:18px;
    margin-bottom:35px;
    color:#ddd;
}

.btn-main{
    background:var(--secondary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    margin-right:15px;
    text-decoration: none;
   
}



.btn-main:hover{
    color:#fff;
    transform:translateY(-5px);
    text-decoration: none;
}

.btn-outline-main{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    display:inline-block;
      text-decoration: none;
}

.btn-outline-main:hover{
    background:#fff;
    color:var(--primary);
      text-decoration: none;
}

.hero-doctor{
    animation:float 3s infinite ease-in-out;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* ==========================
   QUICK SERVICES
========================== */
/* =====================================================
   QUICK SERVICES SECTION
===================================================== */

.quick-services{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.quick-services-wrapper{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}
.quick-card{
    position:relative;
    text-align:center;
    padding:35px 25px;
    border-radius:25px;
    overflow:hidden;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f9ff 100%
    );

    border:1px solid rgba(30,136,229,.12);

    transition:.4s;
}

.quick-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #0D224D,
        #1E88E5
    );
}

.quick-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(13,34,77,.12);
}


.icon-box{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 15px 35px rgba(30,136,229,.25);
}

.icon-box i{
    color:#fff;
    font-size:34px;
}


.quick-card::after{
    content:'';
    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(30,136,229,.05);

    right:-40px;
    bottom:-40px;
}




.quick-services-wrapper{
    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f8fbff
    );

    padding:40px;

    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}




.quick-card{
    position:relative;
    text-align:center;
    padding:35px 25px;
    border-radius:25px;
    overflow:hidden;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f9ff 100%
    );

    border:1px solid rgba(30,136,229,.12);
    transition:all .4s ease;
}

/* Hover Effect */

.quick-card:hover{
    transform:translateY(-12px);

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    box-shadow:
    0 25px 50px rgba(13,34,77,.25);
}

/* Text Color Change */

.quick-card:hover h4,
.quick-card:hover p{
    color:#fff;
}

/* Link Color Change */

.quick-card:hover a{
    color:#fff;
}

/* Icon Box Hover */

.quick-card:hover .icon-box{
    background:#fff;
}

.quick-card:hover .icon-box i{
    color:#0D224D;
}



.quick-card:hover::after{
    background:rgba(255,255,255,.08);
}


.icon-box{
    transition:.4s;
}

.quick-card:hover .icon-box{
    transform:rotate(8deg) scale(1.08);
}



.quick-card h4{
    color:#0D224D;
    margin-bottom:10px;
}

.quick-card p{
    color:#666;
    margin:0;
}

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

@media(max-width:991px){

    .quick-services{
        margin-top:0;
        padding-top:40px;
    }

    .quick-card{
        border-right:none;
        border-bottom:1px solid #eee;
    }

}

/* ==========================
   ABOUT
========================== */

.about-hospital img{
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.about-hospital h2{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.about-list{
    list-style:none;
    padding:0;
}

.about-list li{
    margin-bottom:15px;
    font-weight:500;
}

.about-list li:before{
    content:"✔";
    color:green;
    margin-right:10px;
}
/* =====================================================
   WHY PATIENTS TRUST US SECTION
===================================================== */

.trust-section{
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f9ff 100%
    );
    position:relative;
    overflow:hidden;
}

.trust-section::before{
    content:'';
    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(30,136,229,.05);

    top:-150px;
    right:-150px;
}
.trust-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;
}

.trust-image img{
    transition:all .5s ease;
}

.trust-image:hover img{
    transform:scale(1.05);
}

.trust-image img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.trust-badge{
    position:absolute;
    bottom:25px;
    right:25px;

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    color:#fff;

    padding:25px 35px;
    border-radius:20px;

    box-shadow:
    0 20px 40px rgba(13,34,77,.25);

    transition:.4s;
}

.trust-image:hover .trust-badge{
    transform:translateY(-8px);
}

.trust-badge h3{
    font-size:40px;
    margin:0;
    color:#fff;
}
.trust-item{
    display:flex;
    gap:20px;

    padding:22px;

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    transition:.4s;

    border:1px solid #eef2f7;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);
}

.trust-item:hover{

    transform:translateX(10px);

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    box-shadow:
    0 15px 35px rgba(13,34,77,.18);
}

.trust-item:hover h5,
.trust-item:hover p{
    color:#fff;
}
.trust-icon{
    width:70px;
    height:70px;

    min-width:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    transition:.4s;
}

.trust-icon i{
    color:#fff;
    font-size:28px;
}

.trust-item:hover .trust-icon{
    background:#fff;
    transform:rotate(8deg) scale(1.08);
}

.trust-item:hover .trust-icon i{
    color:#0D224D;
}

.section-heading{
    position:relative;
    color:#0D224D;
}

.section-heading::after{
    content:'';
    width:80px;
    height:4px;

    background:linear-gradient(
        90deg,
        #0D224D,
        #1E88E5
    );

    display:block;
    margin-top:15px;
    border-radius:20px;
}

.trust-icon i{
    color:#fff;
    font-size:28px;
}

.trust-item h5{
    color:#0D224D;
    margin-bottom:5px;
}

.trust-item p{
    margin:0;
    color:#666;
}

@media(max-width:991px){

    .trust-badge{
        right:0;
    }

}

/* DEPARTMENTS */
/* =====================================================
   SPECIALIZED DEPARTMENTS SECTION
===================================================== */

.department-section{
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}

.department-card{

    position:relative;
    overflow:hidden;

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:28px;

    height:100%;

    border:1px solid rgba(13,34,77,.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    transition:.45s ease;
}

/* Top Accent */

.department-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #FBBA01,
        #1E88E5
    );
}

/* Background Shape */

.department-card::after{

    content:'';

    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    background:rgba(251,186,1,.06);

    top:-50px;
    right:-50px;
}

/* Hover Effect */

.department-card:hover{

    transform:translateY(-15px);

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    box-shadow:
    0 25px 50px rgba(13,34,77,.20);
}

/* Icon Box */
/* =====================================================
   DEPARTMENT ICON
===================================================== */

.dept-icon{

    width:95px;
    height:95px;

    margin:0 auto 25px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #F97707 0%,
        #1E88E5 100%
    );

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.45s ease;

    box-shadow:
    0 15px 35px rgba(249,119,7,.25);

}

.dept-icon i{

    color:#fff;
    font-size:38px;

}

/* Hover Icon */
/* =====================================================
   DEPARTMENT CARD HOVER
===================================================== */

.department-card:hover .dept-icon{

    background:#fff;

    transform:
    rotate(8deg)
    scale(1.1);

    box-shadow:
    0 15px 35px rgba(255,255,255,.20);

}

.department-card:hover .dept-icon i{

    color:#F97707;

}


.department-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #F97707,
        #1E88E5
    );

}

/* Heading */

.department-card h4{

    color:#0D224D;

    margin-bottom:15px;

    font-size:24px;

    transition:.3s;
}

/* Content */

.department-card p{

    color:#666;

    margin:0;

    transition:.3s;
}

/* Hover Text */

.department-card:hover h4,
.department-card:hover p{

    color:#fff;
}

/* Gold Line Animation */

.department-card:hover::before{

    background:linear-gradient(
        90deg,
        #FBBA01,
        #ffffff
    );
}



.section-heading{
    position:relative;
    display:inline-block;
}

.section-heading::after{

    content:'';

    width:80px;
    height:4px;

    background:#FBBA01;

    display:block;

    margin:15px auto 0;

    border-radius:20px;
}
/* ==========================
   COUNTER
========================== */

.counter-section{
    background:var(--primary);
    color:#fff;
}

.counter-section h2{
    font-size:55px;
    color:var(--secondary);
}

.counter-section p{
    font-size:18px;
}

/* ==========================
   DOCTORS
========================== */
.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(-10px);
}

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

.doctor-content{
    padding:25px;
    text-align:center;
}

.doctor-content h4{
    color:#0A2E6D;
    margin-bottom:10px;
    font-weight:700;
}

.doctor-content p{
    color:#F57C00;
    font-weight:600;
    margin:0;
}



/* =====================================================
   PATIENT TESTIMONIALS SECTION
===================================================== */

.testimonials-section{
    background:#f8fbff;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(13,34,77,.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    transition:.4s;
}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(13,34,77,.15);
}

.quote-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #F97707,
        #1E88E5
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.quote-icon i{

    color:#fff;
    font-size:22px;
}

.rating{

    color:#F97707;

    font-size:18px;

    margin-bottom:15px;
}

.testimonial-card p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;
}

.patient-info{

    display:flex;

    align-items:center;

    gap:15px;
}

.patient-avatar{

    width:55px;
    height:55px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0D224D,
        #1E88E5
    );

    color:#fff;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

.patient-info h5{

    margin:0;

    color:#0D224D;
}

.patient-info span{

    color:#777;

    font-size:14px;
}
/* ==========================
   EMERGENCY CTA
========================== */

.emergency-cta{
    background:var(--secondary);
    color:#fff;
}

.emergency-cta h2{
    font-size:50px;
}

.btn-emergency-main{
    background:#fff;
    color:var(--secondary);
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
      text-decoration: none;
}

.btn-emergency-main:hover{
    color:var(--secondary);
      text-decoration: none;
}


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

@media(max-width:991px){

.hero-section h1{
    font-size:45px;
}

.about-hospital h2{
    font-size:36px;
}

.emergency-cta h2{
    font-size:35px;
}

section{
    padding:70px 0;
}

}

@media(max-width:767px){

.hero-section h1{
    font-size:34px;
}

.btn-main,
.btn-outline-main{
    display:block;
    margin-bottom:15px;
    text-align:center;
}

.hero-buttons{
    margin-top:25px;
}

}