/* Start custom CSS for html, class: .elementor-element-757bcf2 *//*=====================================================
        ABOUT HERO SECTION
======================================================*/

.about-hero{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:linear-gradient(
        135deg,
        #F8FEFD 0%,
        #F4FCFB 55%,
        #EEF9FF 100%
    );

}

/*=====================================================
        BACKGROUND ELEMENTS
======================================================*/

.about-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(5px);

    opacity:.35;

    z-index:0;

}

.circle1{

    width:280px;

    height:280px;

    background:#D8F5EF;

    left:-100px;

    top:-70px;

}

.circle2{

    width:220px;

    height:220px;

    background:#E8F2FF;

    right:-60px;

    bottom:-60px;

}

.about-bg-plus{

    position:absolute;

    right:42%;

    top:120px;

    font-size:48px;

    color:#D7F1EB;

}

/*=====================================================
        CONTAINER
======================================================*/

.about-container{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1320px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

/*=====================================================
        LEFT CONTENT
======================================================*/

.about-content{

    flex:0 0 56%;

}

.hero-badge{

    display:inline-block;

    background:#E5F8F4;

    color:#16A085;

    padding:12px 26px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

.about-content h1{

    margin:0;

    color:#0D47A1;

    font-size:64px;

    line-height:1.1;

    font-weight:700;

    font-family:Poppins,sans-serif;

}

.about-content h1 span{

    display:block;

    color:#16A085;

}

.about-content h1 small{

    display:block;

    font-size:48px;

    color:#0D47A1;

    font-weight:700;

    margin-top:8px;

}

.about-content p{

    margin-top:30px;

    margin-bottom:38px;

    max-width:620px;

    font-size:18px;

    color:#5F7083;

    line-height:1.9;

}

/*=====================================================
        BUTTONS
======================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-green,
.btn-blue{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    color:#fff !important;

    font-weight:600;

    transition:.35s;

}

.btn-green{

    background:#16A085;

}

.btn-blue{

    background:#0D47A1;

}

.btn-green:hover{

    background:#11836D;

    transform:translateY(-3px);

}

.btn-blue:hover{

    background:#08357F;

    transform:translateY(-3px);

}

/*=====================================================
        IMAGE
======================================================*/

.about-image{

    flex:0 0 44%;

    position:relative;

}

.image-wrapper{

    background:#fff;

    padding:14px;

    border-radius:28px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.image-wrapper img{

    width:100%;

    display:block;

    border-radius:20px;

}

/*=====================================================
        FLOATING CARD
======================================================*/

.floating-card{

    position:absolute;

    left:-45px;

    bottom:45px;

    background:#fff;

    padding:22px 28px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.14);

    animation:floatCard 4s ease-in-out infinite;

}

.card-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#E8F9F6;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#16A085;

    font-size:28px;

}

.floating-card h3{

    margin:0;

    font-size:34px;

    color:#16A085;

    font-weight:700;

}

.floating-card span{

    color:#6E7D8D;

    font-size:15px;

}

/*=====================================================
        IMAGE FLOAT
======================================================*/

.image-wrapper{

    animation:imageFloat 5s ease-in-out infinite;

}

@keyframes imageFloat{

0%{transform:translateY(0);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0);}

}

@keyframes floatCard{

0%{transform:translateY(0);}
50%{transform:translateY(10px);}
100%{transform:translateY(0);}

}
/*=====================================================
            LAPTOP (1200px)
======================================================*/

@media (max-width:1200px){

.about-container{
    gap:40px;
}

.about-content h1{
    font-size:54px;
}

.about-content h1 small{
    font-size:40px;
}

.about-content p{
    font-size:17px;
}

.floating-card{
    left:-20px;
}

}


/*=====================================================
            TABLET (992px)
======================================================*/

@media (max-width:991px){

.about-hero{
    padding:70px 0;
}

.about-container{

    flex-direction:column;

    text-align:center;

}

.about-content{

    flex:100%;

    order:1;

}

.about-image{

    flex:100%;

    width:100%;

    max-width:650px;

    order:2;

}

.about-content p{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.floating-card{

    left:30px;

    bottom:25px;

}

.about-bg-plus{

    display:none;

}

}


/*=====================================================
            MOBILE (767px)
======================================================*/

@media (max-width:767px){

.about-hero{

    padding:55px 18px;

}

.about-container{

    gap:35px;

}

.hero-badge{

    font-size:13px;

    padding:9px 18px;

    margin-bottom:20px;

}

.about-content{

    text-align:left;

}

.about-content h1{

    font-size:38px;

    line-height:1.15;

}

.about-content h1 small{

    font-size:26px;

    margin-top:6px;

}

.about-content p{

    font-size:15px;

    line-height:1.8;

    margin:20px 0 25px;

}

.hero-buttons{

    flex-direction:column;

    align-items:stretch;

    gap:12px;

}

.btn-green,
.btn-blue{

    justify-content:center;

    width:100%;

    padding:15px 20px;

}

.about-image{

    max-width:100%;

}

.image-wrapper{

    padding:10px;

    border-radius:18px;

}

.image-wrapper img{

    border-radius:14px;

}

.floating-card{

    position:relative;

    left:auto;

    bottom:auto;

    width:100%;

    margin-top:18px;

    justify-content:center;

    padding:18px;

}

.floating-card h3{

    font-size:28px;

}

.floating-card span{

    font-size:14px;

}

.circle1{

    width:170px;

    height:170px;

    left:-70px;

    top:-50px;

}

.circle2{

    width:140px;

    height:140px;

    right:-50px;

    bottom:-50px;

}

}


/*=====================================================
            SMALL MOBILE (480px)
======================================================*/

@media (max-width:480px){

.about-content h1{

    font-size:32px;

}

.about-content h1 small{

    font-size:22px;

}

.about-content p{

    font-size:14px;

}

.hero-badge{

    font-size:12px;

}

.btn-green,
.btn-blue{

    font-size:15px;

}

.floating-card{

    flex-direction:column;

    text-align:center;

    gap:10px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4b743cc *//*==================================================
        VISION & MISSION SECTION
==================================================*/

.vision-mission{

    padding:60px 0;

    background:linear-gradient(
        135deg,
        #F8FCFF 0%,
        #EEF8FF 100%
    );

}

/*==========================
        CONTAINER
===========================*/

.vision-mission .container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*==========================
        TITLE
===========================*/

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 10px;

}

.title-badge{

    display:inline-block;

    padding:2px 10px;

    background:#E8F8F4;

    color:#16A085;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:#0D47A1;

    margin-bottom:10px;

    line-height:1.2;

}

.highlight{

    color:#16A085;

}

.section-title p{

    color:#667085;

    font-size:16px;

    line-height:1.8;

}

/*==========================
        CARD WRAPPER
===========================*/

.vm-wrapper{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/*==========================
        CARD
===========================*/

.vm-card{

    flex:1;

    min-width:320px;

    max-width:560px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 45px rgba(0,0,0,.07);

}

.vm-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #16A085,
        #0D47A1
    );

}

.vm-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(13,71,161,.12);

}

/*==========================
        ICON
===========================*/

.vm-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #16A085,
        #0D47A1
    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    transition:.3s;

}

.vm-card:hover .vm-icon{

    transform:rotate(8deg) scale(1.08);

}

/*==========================
        HEADING
===========================*/

.vm-card h3{

    color:#0D47A1;

    font-size:26px;

    margin-bottom:12px;

    font-weight:700;

}

/*==========================
        TEXT
===========================*/

.vm-card p{

    color:#667085;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*==========================
        RESPONSIVE
===========================*/

@media(max-width:992px){

.vision-mission{

    padding:50px 0;

}

.section-title{

    margin:0 auto 20px;

}

.section-title h2{

    font-size:36px;
  margin-bottom:10px; 
}

.vm-wrapper{

    flex-direction:column;

}

.vm-card{

    max-width:100%;

}

}

@media(max-width:767px){

.vision-mission{

    padding:45px 0;

}

.section-title h2{

    font-size:30px;
  margin:0 auto 25px; 
}

.section-title p{

    font-size:15px;

}

.vm-card{

    padding:25px;

}

.vm-icon{

    width:60px;

    height:60px;

    font-size:24px;

}

.vm-card h3{

    font-size:22px;

}

.vm-card p{

    font-size:14px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7999363 *//*=========================================
            CORE VALUES
=========================================*/

.core-values{

    padding:65px 0;

    background:#ffffff;

}

.core-values .container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*==============================
        TITLE
===============================*/

.core-values .section-title{

    text-align:center;

    max-width:720px;

    margin:0 auto 35px;

}

.core-values .title-badge{

    display:inline-block;

    padding:8px 18px;

    background:#E9F8F5;

    color:#16A085;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:12px;

}

.core-values h2{

    font-size:42px;

    color:#0D47A1;

    margin-bottom:12px;

}

.core-values .highlight{

    color:#16A085;

}

.core-values .section-title p{

    color:#667085;

    font-size:16px;

    line-height:1.8;

}

/*==============================
        GRID
===============================*/

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

/*==============================
        CARD
===============================*/

.value-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.35s;

    border:1px solid #EDF2F7;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#16A085,#0D47A1);

    transform:scaleX(0);

    transition:.35s;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,71,161,.12);

}

/*==============================
        ICON
===============================*/

.value-icon{

    width:72px;

    height:72px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#16A085,#0D47A1);

    color:#fff;

    font-size:28px;

    margin-bottom:18px;

    transition:.35s;

}

.value-card:hover .value-icon{

    transform:rotate(8deg) scale(1.08);

}

/*==============================
        TEXT
===============================*/

.value-card h3{

    color:#0D47A1;

    font-size:24px;

    margin-bottom:10px;

}

.value-card p{

    color:#667085;

    font-size:15px;

    line-height:1.7;

}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:991px){

.values-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.core-values{

    padding:50px 0;

}

.core-values h2{

    font-size:32px;

}

.values-grid{

    grid-template-columns:1fr;

}

.value-card{

    padding:25px;

}

.value-icon{

    width:60px;

    height:60px;

    font-size:24px;

}

.value-card h3{

    font-size:22px;

}

.value-card p{

    font-size:14px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97acf07 *//*=====================================================
                OUR STORY SECTION
======================================================*/

.our-story{
    padding:70px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.our-story .container{
    width:90%;
    max-width:1320px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

/*==============================
        LEFT IMAGE
===============================*/

.story-image{
    flex:0 0 42%;
}

.story-img-box{
    position:relative;
    background:#fff;
    padding:12px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.story-img-box img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

/*==============================
    EXPERIENCE BOX
===============================*/

.experience-box{

    position:absolute;

    right:-18px;

    bottom:25px;

    width:160px;

    padding:22px 18px;

    background:#16A085;

    color:#fff;

    text-align:center;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(22,160,133,.35);

}

.experience-box h2{
 color:#FFD54F;
    margin:0;

    font-size:44px;

    line-height:1;

    font-weight:700;

}

.experience-box span{

    display:block;

    margin-top:10px;

    line-height:1.5;

    font-size:14px;

}

/*==============================
        CONTENT
===============================*/

.story-content{

    flex:0 0 58%;

}

.section-tag{

    display:inline-block;

    padding:9px 20px;

    background:#E9F8F5;

    color:#16A085;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.story-content h2{

    font-size:42px;

    line-height:1.15;

    color:#0D47A1;

    margin-bottom:20px;

    font-weight:700;

}

.story-content h2 span{

    color:#16A085;

}

.story-content p{

    font-size:16px;

    line-height:1.8;

    color:#667085;

    margin-bottom:16px;

}

/*==============================
        FEATURES
===============================*/

.story-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:30px 0;

}

.feature{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.feature i{

    width:52px;

    height:52px;

    background:#EEF8F7;

    color:#16A085;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    flex-shrink:0;

}

.feature h4{

    margin:0 0 6px;

    color:#0D47A1;

    font-size:19px;

    font-weight:600;

}

.feature p{

    margin:0;

    font-size:14px;

    line-height:1.6;

}

/*==============================
        BUTTON
===============================*/

.story-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    background:#16A085;

     color:#fff !important;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.story-btn:hover{
 color:#fff !important;
    background:#0D47A1;

    transform:translateY(-3px);

}

.story-btn i{
 color:#fff !important;
    transition:.3s;

}

.story-btn:hover i{
 color:#fff !important;
    transform:translateX(4px);

}

/*==============================
        IMAGE HOVER
===============================*/

.story-img-box{

    transition:.4s;

}

.story-img-box:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:991px){

.our-story{

    padding:60px 0;

}

.our-story .container{

    flex-direction:column;

    gap:35px;

}

.story-image,
.story-content{

    flex:100%;

    width:100%;

}

.story-content{

    text-align:center;

}

.story-content p{

    max-width:100%;

}

.story-features{

    grid-template-columns:1fr;

}

.story-btn{

    margin:auto;

}

.experience-box{

    right:20px;

    bottom:20px;

}

}

@media(max-width:767px){

.our-story{

    padding:50px 0;

}

.story-content{

    text-align:left;

}

.story-content h2{

    font-size:32px;

}

.story-content p{

    font-size:15px;

}

.story-features{

    gap:18px;

}

.feature{

    gap:12px;

}

.feature i{

    width:45px;

    height:45px;

    font-size:18px;

}

.feature h4{

    font-size:17px;

}

.story-img-box img{

    height:300px;

}

.experience-box{

    position:relative;

    width:100%;

    right:auto;

    bottom:auto;

    margin-top:18px;

}

.story-btn{

    width:100%;

    justify-content:center;

}

}

@media(max-width:480px){

.story-content h2{

    font-size:28px;

}

.story-content p{

    font-size:14px;

}

.section-tag{

    font-size:13px;

}

.story-img-box{

    padding:8px;

}

.story-img-box img{

    height:240px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0dbb266 *//*==========================================
        OUR IMPACT SECTION
==========================================*/

.impact-section{

    padding:60px 0;

    background:linear-gradient(
        135deg,
        #F7FCFF 0%,
        #EEF8FF 100%
    );

}

.impact-section .container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*==========================
        TITLE
===========================*/

.impact-section .section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 35px;

}

.impact-section .title-badge{

    display:inline-block;

    padding:8px 18px;

    background:#E8F8F4;

    color:#16A085;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:12px;

}

.impact-section h2{

    font-size:42px;

    color:#0D47A1;

    margin-bottom:12px;

}

.impact-section .highlight{

    color:#16A085;

}

.impact-section .section-title p{

    color:#667085;

    font-size:16px;

    line-height:1.8;

}

/*==========================
        GRID
===========================*/

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

/*==========================
        CARD
===========================*/

.impact-card{

    background:#fff;

    padding:24px 20px;

    border-radius:18px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.impact-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #16A085,
        #0D47A1
    );

    transform:scaleX(0);

    transition:.35s;

}

.impact-card:hover::before{

    transform:scaleX(1);

}

.impact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,71,161,.12);

}

/*==========================
        ICON
===========================*/

.impact-icon{

    width:60px;

    height:60px;

    margin:0 auto 15px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #16A085,
        #0D47A1
    );

    color:#fff;

    font-size:24px;

}

/*==========================
        NUMBER
===========================*/

.impact-card h3{

    font-size:34px;

    color:#16A085;

    font-weight:700;

    margin:0 0 8px;

    line-height:1;

}

/*==========================
        TITLE
===========================*/

.impact-card h4{

    color:#0D47A1;

    font-size:20px;

    font-weight:600;

    margin:0 0 10px;

}

/*==========================
        TEXT
===========================*/

.impact-card p{

    color:#667085;

    font-size:14px;

    line-height:1.6;

    margin:0;

}

/*==========================
        RESPONSIVE
===========================*/

@media(max-width:991px){

.impact-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.impact-section{

    padding:45px 0;

}

.impact-section h2{

    font-size:32px;

}

.impact-grid{

    grid-template-columns:1fr;

}

.impact-card{

    padding:22px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-94d8a14 *//*==========================================
        WHY CHOOSE SHIFA HOSPITAL
==========================================*/

.why-choose{

    padding:70px 0;

    background:#fff;

}

.why-choose .container{

    width:90%;

    max-width:1280px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:60px;

}

/* LEFT */

.why-image{

    flex:45%;

}

.why-image-box{

    position:relative;

    background:#fff;

    padding:12px;

    border-radius:22px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.why-image-box img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:18px;

    display:block;

}

.experience-badge{

    position:absolute;

    left:-20px;

    bottom:30px;

    width:170px;

    background:#16A085;

    color:#fff;

    padding:20px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 35px rgba(22,160,133,.30);

}

.experience-badge h3{

    font-size:42px;

    margin:0;

    color:#FFE082;

}

.experience-badge span{

    display:block;

    margin-top:8px;

    font-size:14px;

    line-height:1.5;

}

/* RIGHT */

.why-content{

    flex:55%;

}

.why-content h2{

    font-size:42px;

    color:#0D47A1;

    margin:15px 0;

}

.why-content .highlight{

    color:#16A085;

}

.why-content p{

    color:#667085;

    line-height:1.8;

    font-size:16px;

    margin-bottom:28px;

}

/* FEATURES */

.why-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.why-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:18px;

    background:#fff;

    border-radius:16px;

    border:1px solid #EEF2F6;

    transition:.35s;

}

.why-item:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 35px rgba(13,71,161,.08);

}

.why-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,#16A085,#0D47A1);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    flex-shrink:0;

}

.why-item h4{

    margin:0 0 6px;

    color:#0D47A1;

    font-size:18px;

}

.why-item p{

    margin:0;

    font-size:14px;

    line-height:1.6;

}

/* RESPONSIVE */

@media(max-width:991px){

.why-choose .container{

    flex-direction:column;

}

.why-image,
.why-content{

    width:100%;

    flex:100%;

}

.why-list{

    grid-template-columns:1fr;

}

}

@media(max-width:767px){

.why-choose{

    padding:50px 0;

}

.why-image-box img{

    height:350px;

}

.experience-badge{

    position:relative;

    left:auto;

    bottom:auto;

    width:100%;

    margin-top:18px;

}

.why-content h2{

    font-size:32px;

}

.why-list{

    gap:15px;

}

.why-item{

    padding:15px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-36b3545 *//*==========================
    FACILITIES SECTION
==========================*/

.hospital-facilities{

    padding:80px 0;
    background:#f7fbff;

}

.hospital-facilities .container{

    width:90%;
    max-width:1320px;
    margin:auto;

}

/* Heading */

.section-heading{

    text-align:center;
    max-width:760px;
    margin:0 auto 50px;

}

.section-heading span{

    display:inline-block;
    background:#dff5ef;
    color:#0c8b6b;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;

}

.section-heading h2{

    font-size:46px;
    color:#0b3d91;
    margin-bottom:18px;

}

.section-heading strong{

    color:#00a67e;

}

.section-heading p{

    color:#666;
    line-height:1.8;
    font-size:17px;

}

/* Grid */

.facility-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;

}

/* Card */

.facility-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.facility-card:hover{

    transform:translateY(-8px);

}

.facility-card img{

    width:100%;
    height:210px;
    object-fit:cover;
    display:block;

}

.facility-content{

    padding:22px;

}

.facility-content h3{

    color:#0b3d91;
    font-size:18px;
    margin-bottom:10px;

}

.facility-content p{

    color:#666;
    line-height:1.7;
    font-size:13px;

}

/* Responsive */

@media(max-width:1200px){

.facility-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

.facility-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.facility-grid{

grid-template-columns:1fr;

}

.facility-card img{

height:220px;

}

}/* End custom CSS */