
.cta-section{
    position:relative;
    padding:100px 0;
    background:url("images/cta-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:#0E4D64
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:0 auto 35px;
}

.btn-callnow{
    display:inline-block;
    background:#ff5722;
    color:#fff;
    padding:15px 40px;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.btn-callnow:hover{
    background:#e64a19;
    color:#fff;
    transform:translateY(-4px);
}

.btn-callnow i{
    margin-right:8px;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.cta-section{
    padding:80px 0;
}

.cta-section h2{
    font-size:36px;
}

}

@media(max-width:768px){

.cta-section{
    padding:70px 20px;
}

.cta-section h2{
    font-size:30px;
}

.cta-section p{
    font-size:16px;
}

.btn-callnow{
    padding:13px 30px;
    font-size:16px;
}

}

@media(max-width:576px){

.cta-section h2{
    font-size:26px;
}

.cta-section p{
    font-size:15px;
}

.btn-callnow{
    width:100%;
    max-width:260px;
}

}

/*=================================
FOOTER
=================================*/

.footer{
    background:#0E4D64;
    color:#d7e8ee;
}

.footer-title{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:'';
    width:45px;
    height:3px;
    background:#f7941d;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer p{
    color:#d7e8ee;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d7e8ee;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f7941d;
    padding-left:5px;
}

.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-icons a{
    width:42px;
    height:42px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#f7941d;
    color:#fff;
    transform:translateY(-3px);
}

.footer i{
    color:#f7941d;
    margin-right:10px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding:18px 0;
}

.copyright p{
    color:#cddde3;
    font-size:15px;
    margin:0;
}

@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-title::after{
    left:50%;
    transform:translateX(-50%);
}

.social-icons{
    justify-content:center;
}

}



/*=================================
WHATSAPP FLOAT
=================================*/

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:30px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:999;
    animation:whatsappPulse 2s infinite;
    transition:.3s;
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.1);
}

/*=================================
SCROLL TO TOP
=================================*/

#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:105px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0E4D64;
    color:#fff;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:20px;
    z-index:999;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

#scrollTopBtn:hover{
    background:#ff5722;
    transform:translateY(-5px);
}

/*=================================
PULSE ANIMATION
=================================*/

@keyframes whatsappPulse{

0%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(37,211,102,.6);
}

70%{
    transform:scale(1.08);
    box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/*=================================
MOBILE
=================================*/

@media(max-width:768px){

.whatsapp-float{
    width:55px;
    height:55px;
    font-size:28px;
    right:15px;
    bottom:20px;
}

#scrollTopBtn{
    width:50px;
    height:50px;
    right:15px;
    bottom:90px;
    font-size:18px;
}

}



