/*==========================================================
    ANGEL LOVE & CARE, LLC
    GLOBAL STYLESHEET
==========================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
ROOT VARIABLES
==============================*/

:root{

    --primary:#2D7FF9;
    --primary-dark:#1F6AE0;

    --secondary:#163B6C;

    --white:#ffffff;
    --light:#F7FAFF;
    --lighter:#FBFCFE;

    --dark:#222831;
    --gray:#6B7280;

    --border:#E7ECF5;

    --success:#10B981;

    --radius:18px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/*==============================
RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.7;
    font-size:16px;

}

/*==============================
COMMON
==============================*/

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

section{

    position:relative;
    padding:90px 0;

}

.container{

    max-width:1200px;

}

/*==============================
TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);
    font-weight:700;
    margin-bottom:18px;
    line-height:1.25;

}

h1{

    font-size:60px;

}

h2{

    font-size:44px;

}

h3{

    font-size:28px;

}

p{

    color:var(--gray);
    margin-bottom:18px;
    line-height:1.9;

}

/*==============================
SECTION BADGE
==============================*/

.section-tag,
.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    background:#EAF3FF;

    color:var(--primary);

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

/*==============================
SECTION TITLE
==============================*/


.section-title{
    font-size:42px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:20px;
}



.section-text,
.section-subtitle{

    max-width:700px;

    color:var(--gray);

    margin:auto;

}

/*==============================
BUTTONS
==============================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

}

/*==============================
CUSTOM BUTTON
==============================*/

.btn-service{

    display:inline-block;

    margin-top:20px;

    color:var(--primary);

    font-weight:600;

}

.btn-service:hover{

    color:var(--primary-dark);

}

/*==============================
CARD
==============================*/

.card{

    border:none;

    border-radius:22px;

    box-shadow:var(--shadow);

}

/*==============================
HELPERS
==============================*/

.text-primary{

    color:var(--primary)!important;

}

.bg-light{

    background:var(--light)!important;

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

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

@media(max-width:991px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:44px;

    }

    h2{

        font-size:34px;

    }

}

@media(max-width:576px){

    h1{

        font-size:36px;

    }

    h2{

        font-size:28px;

    }

    .btn{

        width:100%;

    }

}

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

.hero{

   background:linear-gradient(180deg,#F8FBFF 0%,#EEF5FF 100%);
    overflow:hidden;
    padding:50px 0 20px;

}

.hero .container{

    position:relative;

}

.hero .row{
    align-items:center;
    min-height:auto;
    padding:30px 0;

}

/*==============================
BADGE
==============================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:#EAF3FF;

    color:var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

/*==============================
TITLE
==============================*/

.hero-title{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    color:var(--dark);

}

.hero-title span{

    color:var(--primary);

}

/*==============================
TEXT
==============================*/

.hero-text{

    font-size:18px;

    color:var(--gray);

    line-height:1.9;

    max-width:560px;

    margin-bottom:35px;

}

/*==============================
BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-buttons .btn{

    min-width:180px;

}

/*==============================
FEATURES
==============================*/

.hero-features{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.hero-features .feature{

    display:flex;

    align-items:center;

    gap:15px;

}

.hero-features i{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    font-size:24px;

}

.hero-features strong{

    display:block;

    font-size:16px;

    color:var(--dark);

}

.hero-features small{

    color:var(--gray);

    font-size:14px;

}

/*==============================
IMAGE
==============================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    animation:float 5s ease-in-out infinite;

}

/*==============================
FLOATING CARDS
==============================*/

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:15px 22px;

    box-shadow:var(--shadow);

    font-weight:600;

    color:var(--dark);

}

.card1{

    top:70px;

    left:-20px;

}

.card2{

    bottom:60px;

    right:-20px;

}

/*==============================
ANIMATION
==============================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.hero{

padding:70px 0;

text-align:center;

}

.hero .row{

min-height:auto;

}

.hero-title{

font-size:44px;

}

.hero-text{

margin:0 auto 30px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

margin-bottom:40px;

}

.hero-image{

margin-top:40px;

}

.hero-image img{

max-width:430px;

}

.floating-card{

position:relative;

display:inline-block;

left:auto;

right:auto;

top:auto;

bottom:auto;

margin:10px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:991px){

.hero{

padding:60px 0;

}

.hero-title{

font-size:34px;

}

.hero-text{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-features{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.hero-image img{

max-width:100%;

}

.cta-box{

text-align:center;

padding:50px 30px;

}
.text-lg-end{

text-align:center!important;

margin-top:30px;

}

}

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

.about{

    background:#fff;
    padding:60px 0 30px;
    overflow:hidden;

}

/*==============================
IMAGE
==============================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s ease;

}

.about-image img:hover{

    transform:scale(1.02);

}

/*==============================
CONTENT
==============================*/

.about-content{

  padding-left:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.about-content h2{

    font-size:46px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:25px;

}

.about-content p{

    font-size:17px;
    color:var(--gray);
    line-height:1.9;
    margin-bottom:18px;

}

/*==============================
FEATURE LIST
==============================*/

.about-list{

    margin:35px 0;

}

.about-item{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:18px;

    font-size:17px;
    font-weight:600;
    color:var(--dark);

}

.about-item i{

    width:42px;
    height:42px;

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

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    flex-shrink:0;

    font-size:18px;

}

/*==============================
BUTTON
==============================*/

.about .btn{

    margin-top:15px;
    padding:14px 34px;

}

/*==============================
OPTIONAL EXPERIENCE CARD
==============================*/

.about-card{

    position:absolute;

    right:-30px;
    bottom:40px;

    background:#fff;

    border-radius:20px;

    padding:22px 30px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about-card h3{

    color:var(--primary);

    font-size:38px;

    margin-bottom:5px;

}

.about-card span{

    color:var(--gray);

    font-size:15px;

}

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

@media(max-width:991px){

.about{

text-align:center;

}

.about-content{

padding-left:0;
margin-top:50px;

}

.about-content h2{

font-size:36px;

}

.about-list{

display:flex;
flex-direction:column;
align-items:flex-start;

max-width:400px;
margin:35px auto;

}

.about .btn{

width:auto;

}

.about-card{

position:relative;

right:auto;
bottom:auto;

margin:35px auto 0;

display:inline-block;

}

}

@media(max-width:576px){

.about{

padding:70px 0;

}

.about-content h2{

font-size:30px;

}

.about-content p{

font-size:16px;

}

.about-item{

font-size:16px;

}

.about-item i{

width:38px;
height:38px;

font-size:16px;

}

.about .btn{

width:100%;

}

}
/*==========================================================
    SERVICES SECTION
==========================================================*/

.services{

    background:#F8FBFF;
    padding:100px 0;

}


/*==============================
SECTION HEADER
==============================*/

.services .section-title{

    text-align:center;
    margin-bottom:15px;

}

.services .subtitle{

    display:inline-block;

    color:var(--primary);

    background:#EAF3FF;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.services .section-title{

    font-size:36px;

    font-weight:100;

    line-height:1.25;

    margin-bottom:20px;

    color:var(--dark);

}

.services .section-text{

      max-width:650px;
    margin:0 auto;
    color:var(--gray);
    font-size:16px;
    line-height:1.7;

}
/*==============================
SERVICE CARD
==============================*/

.service-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border:1px solid #EAEAEA;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

    text-align:center;

    height:auto;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*==============================
TOP BORDER
==============================*/

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/*==============================
ICON
==============================*/

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    background:#EAF3FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:36px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(12deg) scale(1.05);

}

/*==============================
TITLE
==============================*/

.service-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    color:var(--dark);

}

/*==============================
DESCRIPTION
==============================*/

.service-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--gray);

     min-height:auto;

}

/*==============================
BUTTON
==============================*/

.btn-service{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:10px;

    font-weight:600;

    color:var(--primary);

    transition:.35s;

}

.btn-service::after{

    content:"→";

    transition:.35s;

}

.btn-service:hover{

    color:var(--primary-dark);

}

.btn-service:hover::after{

    transform:translateX(5px);

}

/*==============================
GRID
==============================*/

.services .row{

    row-gap:30px;

}

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

@media(max-width:991px){

.service-card{

padding:35px 30px;

}

.service-card p{

min-height:auto;

}

}

@media(max-width:576px){

.services{

padding:70px 0;

}

.services .section-title{

    font-size:32px;

}

.service-card{

padding:30px 25px;
position:relative;

}

.service-card h4{

font-size:22px;

}

.service-icon{

width:80px;

height:80px;

font-size:30px;

}

}

/*==========================================================
    WHY CHOOSE US
==========================================================*/

.why-choose{

    background:#ffffff;
    padding:70px 0;
    overflow:hidden;

}

/*==============================
LEFT CONTENT
==============================*/

.why-trust h2{

    font-size:38px;

    font-weight:700;

    margin-bottom:15px;

}

.why-choose p{

    color:var(--gray);
    font-size:17px;
    line-height:1.9;

}
.why-trust i{

    font-size:48px;

    margin-bottom:20px;

}


/*==============================
CHECK LIST
==============================*/

.choose-list{

    margin-top:35px;

}

.choose-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    font-size:17px;

    font-weight:600;

    color:var(--dark);

}

.choose-item i{

    width:42px;
    height:42px;

    display:flex;

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

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    flex-shrink:0;

}

/*==============================
RIGHT GRID
==============================*/

.choose-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

/*==============================
FEATURE CARD
==============================*/

.choose-box{

    background:#fff;

    padding:35px 30px;

    border-radius:24px;

    text-align:center;

    border:1px solid #E8EEF8;

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

    transition:.35s;

}

.choose-box:hover{

    transform:translateY(-10px);

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

}

/*==============================
ICON
==============================*/

.choose-box i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    font-size:32px;

    transition:.35s;

}

.choose-box:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(10deg);

}

/*==============================
TITLE
==============================*/

.choose-box h4{

    font-size:22px;

    margin-bottom:15px;

}

/*==============================
TEXT
==============================*/

.choose-box p{

    font-size:15px;

    line-height:1.8;

    margin:0;

}

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

@media(max-width:991px){

.why-choose{

text-align:center;

}

.choose-list{

max-width:420px;

margin:40px auto;

}

.choose-grid{

margin-top:50px;

}

}

@media(max-width:767px){

.choose-grid{

grid-template-columns:1fr;

}

.why-choose h2{

font-size:34px;

}

.choose-item{

font-size:16px;

}

}
/*==========================================================
    HOW IT WORKS
==========================================================*/

.process{

    background:#F8FBFF;
    padding:100px 0;
    position:relative;

}

/*==============================
SECTION HEADER
==============================*/

.process .section-title{

    text-align:center;
    margin-bottom:60px;

}

/*==============================
PROCESS CARD
==============================*/

.process-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:50px 30px;

    text-align:center;

    height:100%;

    border:1px solid #EAF0F7;

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

    transition:.35s;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-12px);

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

}

/*==============================
TOP ACCENT
==============================*/

.process-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.process-card:hover::before{

    transform:scaleX(1);

}

/*==============================
STEP NUMBER
==============================*/

.process-number{

    width:55px;

    height:55px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:20px;

    font-weight:700;

    box-shadow:0 12px 25px rgba(45,127,249,.35);

}

/*==============================
ICON
==============================*/

.process-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    font-size:34px;

    transition:.35s;

}

.process-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(10deg);

}

/*==============================
TITLE
==============================*/

.process-card h4{

    font-size:23px;

    margin-bottom:18px;

    font-weight:700;

}

/*==============================
DESCRIPTION
==============================*/

.process-card p{

    font-size:16px;

    color:var(--gray);

    line-height:1.8;

    margin:0;

}

/*==============================
CONNECTING LINE
==============================*/

@media(min-width:992px){

.process .row>.col-md-3{

    position:relative;

}

.process .row>.col-md-3:not(:last-child)::after{

    content:"";

    position:absolute;

    top:78px;

    right:-18px;

    width:36px;

    height:3px;

    background:linear-gradient(to right,
        var(--primary),
        #BFD9FF);

}

}

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

@media(max-width:991px){

.process{

padding:80px 0;

}

.process-card{

margin-bottom:30px;

}

}

@media(max-width:576px){

.process{

padding:70px 0;

}

.process-card{

padding:35px 25px;

}

.process-card h4{

font-size:21px;

}

.process-card p{

font-size:15px;

}

.process-number{

width:48px;

height:48px;

font-size:18px;

}

.process-card i{

width:75px;

height:75px;

font-size:30px;

}

}
/*==========================================================
    TESTIMONIALS
==========================================================*/

.testimonials{

    background:#fff;

    padding:80px 0;

}

.testimonials .section-title{

    text-align:center;

    margin-bottom:50px;

}

.testimonial-card{

    background:#fff;

    border:1px solid #EAF0F7;

    border-radius:20px;

    padding:35px 30px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.testimonial-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.testimonial-card:hover::before{

    transform:scaleX(1);

}

.quote-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:20px;

}

.stars{

    color:#FFC107;

    font-size:18px;

    letter-spacing:2px;

    margin-bottom:18px;

}

.testimonial-card p{

    font-size:16px;

    line-height:1.8;

    color:#6B7280;

    margin-bottom:25px;

    font-style:italic;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),#6AA9FF);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    flex-shrink:0;

}

.client h5{

    margin:0;

    font-size:18px;

    color:var(--dark);

}

.client small{

    color:var(--gray);

}

@media(max-width:991px){

.testimonials{

padding:70px 0;

}

}

@media(max-width:576px){

.testimonial-card{

padding:25px;

}

.client{

flex-direction:column;

text-align:center;

}

.avatar{

margin:auto;

}

}
/*==========================================================
    FAQ SECTION
==========================================================*/

.faq-section{

    background:#F8FBFF;
    padding:100px 0;

}

/*==============================
SECTION HEADER
==============================*/

.faq-section .section-title{

    margin-bottom:20px;

}

.faq-section .section-text{

    max-width:700px;

    margin:auto;

    color:var(--gray);

}

/*==============================
ACCORDION
==============================*/

.accordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    background:#fff;

}

.accordion-button{

    background:#fff;

    color:var(--dark);

    font-size:18px;

    font-weight:600;

    padding:24px;

    box-shadow:none;

    transition:.35s;

}

.accordion-button:focus{

    box-shadow:none;

    border:none;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button::after{

    transition:.35s;

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}

.accordion-body{

    padding:24px;

    color:var(--gray);

    font-size:16px;

    line-height:1.9;

}

/*==============================
CONTACT BOX
==============================*/

.faq-contact{

    margin-top:70px;

    background:#fff;

    border-radius:25px;

    padding:50px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.faq-contact i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF3FF;

    color:var(--primary);

    font-size:34px;

}

.faq-contact h3{

    margin-bottom:18px;

}

.faq-contact p{

    max-width:600px;

    margin:auto;

    margin-bottom:30px;

}

.faq-contact .btn{

    min-width:220px;

}

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

@media(max-width:991px){

.faq-section{

padding:80px 0;

}

.faq-contact{

padding:40px 30px;

}

}

@media(max-width:576px){

.faq-section{

padding:70px 0;

}

.accordion-button{

font-size:16px;

padding:18px;

}

.accordion-body{

font-size:15px;

padding:20px;

}

.faq-contact{

padding:30px 20px;

}

.faq-contact .btn{

width:100%;

}

}

/*==========================================================
    CALL TO ACTION
==========================================================*/

.cta-section{

    padding: 90px 0;

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#0a7ff5,#2b81e3);

    border-radius:30px;

    padding:70px 60px;

    color:#fff;

    overflow:hidden;

    position:relative;

}

/* Decorative circles */

.cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-90px;

    left:-90px;

}

.cta-box .row{

    position:relative;

    z-index:2;

    align-items:center;

}

.cta-badge{

    display:inline-block;

    background:rgba(255,255,255,.18);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.cta-box h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.8;

    margin-bottom:0;

    max-width:650px;

}

/*==============================
BUTTONS
==============================*/

.cta-section .btn{

   display:inline-block;

    margin:10px;

    min-width:220px;


    border-radius:50px;

    padding:16px 34px;

    font-weight:600;

    transition:.35s;

}

.btn-light{

    background:#fff;

    color:var(--primary);

    border:none;

}

.btn-light:hover{

    background:#F4F8FF;

    transform:translateY(-4px);

}

.btn-outline-light{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);

}

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

@media(max-width:991px){

.cta-section{

padding:80px 0;

}

.cta-box{

padding:55px 35px;

text-align:center;

}

.cta-box h2{

font-size:38px;

}

.cta-box p{

margin-bottom:35px;

}

.text-lg-end{

text-align:center!important;

}

}

@media(max-width:576px){

.cta-box{

padding:40px 25px;

}

.cta-box h2{

font-size:30px;

}

.cta-box p{

font-size:16px;

}

.cta-section .btn{

width:100%;

margin:8px 0;

}

}

/*==========================================================
    FOOTER
==========================================================*/

.footer-section{

    background:#0B2E59;
    color:#fff;
    padding:80px 0 25px;

}

/*==============================
COMPANY
==============================*/

.footer-company{

    font-size:32px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;

}

.footer-about{

    color:#D8E7F8;
    line-height:1.9;
    margin-bottom:30px;

}

/*==============================
BUTTON
==============================*/

.footer-btn{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.footer-btn:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-3px);

}

/*==============================
SECTION TITLES
==============================*/

.footer-title{

    font-size:22px;

    margin-bottom:25px;

    color:#fff;

}

/*==============================
LINKS
==============================*/

.footer-links{

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#D8E7F8;

    transition:.3s;

}

.footer-links a:hover{

    color:#79B8FF;

    padding-left:8px;

}

/*==============================
CONTACT
==============================*/

.footer-contact p{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:#D8E7F8;

}

.footer-contact i{

    width:22px;

    color:#79B8FF;

    margin-top:4px;

}

.footer-contact a{

    color:#D8E7F8;

}

.footer-contact a:hover{

    color:#fff;

}

/*==============================
SOCIAL
==============================*/

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

/*==============================
DIVIDER
==============================*/

.footer-divider{

    border-color:rgba(255,255,255,.15);

    margin:50px 0 30px;

}

/*==============================
BOTTOM
==============================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#D8E7F8;

    font-size:15px;

}

.footer-bottom a{

    color:#D8E7F8;

}

.footer-bottom a:hover{

    color:#79B8FF;

}

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

@media(max-width:991px){

.footer-section{

text-align:center;

}

.footer-contact p{

justify-content:center;

}

.social-icons{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

gap:18px;

}

}

@media(max-width:576px){

.footer-section{

padding:60px 0 20px;

}

.footer-company{

font-size:26px;

}

.footer-title{

font-size:20px;

}

}

/*==========================================================
ANIMATIONS
==========================================================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .8s ease;

}

@keyframes zoom{

    from{

        transform:scale(.9);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}/*==========================================================
ANIMATIONS
==========================================================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .8s ease;

}

@keyframes zoom{

    from{

        transform:scale(.9);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

/*==========================================================
PERFORMANCE
==========================================================*/

.service-card,
.choose-box,
.process-card,
.testimonial-card{

    will-change: transform;

}
.btn{

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(45,127,249,.25);

}
::selection{

    background:#2D7FF9;
    color:#fff;

}
button:focus,
.btn:focus,
a:focus{

    box-shadow:none!important;

}
section{

    position:relative;

}

/*section:not(:last-child)::after{

    content:"";
    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:35px;
    height:2px;

    border-radius:50px;

    background:#EAF3FF;

}*/
section::after{
    display:none !important;
}
.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2D7FF9;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

    z-index:999;

    transition:.35s;

}

.back-top:hover{

    background:#1F6AE0;

    color:#fff;

    transform:translateY(-5px);

}.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2D7FF9;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

    z-index:999;

    transition:.35s;

}

.back-top:hover{

    background:#1F6AE0;

    color:#fff;

    transform:translateY(-5px);

}
/*==========================================================
    NAVBAR SCROLL EFFECT
==========================================================*/

.navbar{

    transition:all .35s ease;

}

.navbar.shadow{

    background:#ffffff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}
.navbar-brand img{

    width:60px;
    height:60px;
    object-fit:contain;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}
.brand-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.brand-text h3{

    margin:0;

    font-size:20px;

    font-weight:700;

    color:#0e65d7;

    line-height:1.2;

}

.brand-text small{

    margin-top:4px;

    font-size:14px;

    color:#6B7280;

}

.services .row{

    row-gap:30px;
}
.services .section-title p{
    font-size:16px;      /* smaller text */
    line-height:1.7;
    max-width:650px;
    margin:0 auto;
}
/*==========================================================
    CORE VALUES
==========================================================*/

.value-card{
    background:#fff;
    border:1px solid #EAF0F7;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.value-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EAF3FF;
    border-radius:50%;
    transition:all .35s ease;
}

.value-icon i{
    font-size:40px;
    color:#2D7FF9;
    transition:all .35s ease;
}

.value-card:hover .value-icon{
    background:#2D7FF9;
    transform:rotate(8deg);
}

.value-card:hover .value-icon i{
    color:#fff;
    transform:scale(1.15);
}

.value-card h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
    color:#222831;
}

.value-card p{
    font-size:16px;
    line-height:1.8;
    color:#6B7280;
    margin:0;
}