/*====================================================
                GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
                GLOBAL STYLES
====================================================*/

body{

    font-family:'Poppins',sans-serif;

    color:#555;

    background:#ffffff;

    overflow-x:hidden;

}

.section-padding{

    padding:90px 0;

}

.section-tag{

    display:inline-block;

    background:#eaf3ff;

    color:#0d6efd;

    padding:10px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.section-heading{

    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}

.section-heading p{

    font-size:17px;

    color:#666;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}

.navbar {
    
    padding:14px 100px 20px;

}

/*====================================================
                HERO SECTION
====================================================*/

.life-hero{

    background:linear-gradient(135deg,#f6fbff,#eef6ff);

    /* padding:90px 0; */

    padding:140px 100px 0;

    overflow:hidden;

}

.hero-content .hero-tag{

    display:inline-block;

    background:#dcebff;

    color:#0d6efd;

    padding:10px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-top:50px;

    margin-bottom:22px;

}

.hero-content h1{

    font-size:55px;

    font-weight:800;

    line-height:1.15;

    color:#111827;

    margin-bottom:20px;

}

.hero-content h1 span{

    color:#0d6efd;

}

.hero-content h3{

    color:#0d6efd;

    font-size:24px;

    font-weight:600;

    line-height:1.7;

    margin-bottom:25px;

}

.hero-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

    color:#555;

}



/*====================================================
                HERO BUTTON
====================================================*/

.hero-buttons{

    margin-top:35px;

}

.btn-primary-custom{

    background:#0d6efd;

    color:#ffffff;

    text-decoration:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    display:inline-block;

    transition:.35s;

}

.btn-primary-custom:hover{

    background:#084fc7;

    color:#ffffff;

    transform:translateY(-3px);

}



/*====================================================
                HERO IMAGE
====================================================*/

.hero-image-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}

.hero-circle{

    width:550px;

    height:550px;

    /* border-radius:50%; */

    background:#d9eaff;

    position:absolute;

}

.hero-image-wrapper img{

    position:relative;

    width:600px;

    height:600px;

    object-fit:cover;

    /* border-radius:50%; */

    border:8px solid rgba(255,255,255,.85);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    z-index:2;

}



/*====================================================
                INFORMATION SECTION
====================================================*/

.life-about{

    background:#ffffff;
    padding:140px 100px 80px;

}

.life-about p{
    

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}
.about-image img{

    width:100%;

    margin-right: 100px;

    border-radius:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.about-content p{
    padding:140px 100px 80px;

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

/*====================================================
                FINAL CTA SECTION
====================================================*/

.life-cta{

    background:#f8fbff;
    padding:140px 100px 80px;

}

.cta-box{

    background:linear-gradient(135deg,#0d6efd,#3f8cff);

    border-radius:30px;

    padding:60px;

    color:#ffffff;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 45px rgba(13,110,253,.25);

}

.cta-box .section-tag{

    background:rgba(255,255,255,.18);

    color:#ffffff;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:22px;

    color:#ffffff;

}

.cta-box p{

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,.95);

    margin-bottom:18px;

}

.cta-buttons{

    margin-top:35px;

}

.cta-buttons .btn-primary-custom{

    background:#ffffff;

    color:#0d6efd;

    border:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-primary-custom:hover{

    background:#f1f5ff;

    color:#0d6efd;

    transform:translateY(-3px);

}



/*====================================================
                CTA IMAGE
====================================================*/

.cta-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.cta-image img{

    width:100%;

    max-width: 600px;

    max-height: 600px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

    transition:.35s;

}

.cta-image img:hover{

    transform:scale(1.03);

}



/*====================================================
                FOOTER
====================================================*/

.footer{

    background:#0f172a;

    color:#d1d5db;

    /* padding:45px 0; */

    padding:140px 100px 80px;

}

.footer h4{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.footer p{

    margin:0;

    line-height:1.8;

    font-size:15px;

}



/*====================================================
                IMAGE EFFECTS
====================================================*/

.hero-image-wrapper img,

.about-image img{

    transition:transform .4s ease,
               box-shadow .4s ease;

}

.hero-image-wrapper img:hover,

.about-image img:hover{

    transform:scale(1.03);

    box-shadow:0 22px 45px rgba(0,0,0,.18);

}



/*====================================================
                LINKS
====================================================*/

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}



/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:991px){

.hero-content{

    text-align:center;

}

.hero-image-wrapper{

    margin-top:50px;

    min-height:380px;

}

.hero-circle{

    width:380px;

    height:380px;

}

.hero-image-wrapper img{

    width:330px;

    height:330px;

}

.about-content{

    margin-top:20px;

}

.cta-box{

    text-align:center;

    padding:45px 35px;

}

.cta-image{

    margin-top:40px;

}

.footer{

    text-align:center;

}

.footer .text-lg-end{

    text-align:center !important;

    margin-top:20px;

}

}



@media(max-width:576px){

.section-padding{

    padding:70px 0;

}

.section-heading h2{

    font-size:30px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content h3{

    font-size:20px;

}

.hero-content p,

.about-content p{

    font-size:15px;

}

.hero-circle{

    width:280px;

    height:280px;

}

.hero-image-wrapper{

    min-height:280px;

}

.hero-image-wrapper img{

    width:240px;

    height:240px;

}

.btn-primary-custom{

    width:100%;

    text-align:center;

}

.cta-box{

    padding:35px 25px;

}

.cta-box h2{

    font-size:30px;

}

.cta-box p{

    font-size:15px;

}

.cta-buttons .btn-primary-custom{

    width:100%;

}

.about-image img,

.cta-image img{

    border-radius:20px;

}

}

