/* =========================
   FONT
========================= */

@font-face {
    font-family: 'Mulish';
    src: url('img/Mulish-VariableFont_wght.ttf') format('truetype');
}

body{
    font-family: 'Mulish', sans-serif;
    overflow-x: hidden;
}


/* =========================
   HEADER
========================= */

.top-header{
    background: #fff;
    padding: 18px 0;
    position: relative;
    z-index: 99;
}

.logo img{
    height: 58px;
}

.call-btn{
    background: #11a8ea;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(17,168,234,0.3);
}

.call-btn:hover{
    background: #0d97d2;
    color: #fff;
}


/* =========================
   HERO SECTION
========================= */

.hero-section{
    position: relative;
    background: url('img/hero-bg.webp') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-title{
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 18px;
}

.hero-subtitle{
    color: #f1f1f1;
    font-size: 24px;
    line-height: 1.7;
    max-width: 700px;
}

.trusted-badge{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.hero-buttons{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.call-now-btn{
    background: #11a8ea;
    color: #fff;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    border: none;
}

.call-now-btn:hover{
    background: #0d97d2;
    color: #fff;
}

.whatsapp-btn{
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.whatsapp-btn:hover{
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.stats-wrapper{
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-box{
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}


/* =========================
   FORM
========================= */

.quote-form{
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 20px;
    max-width: 430px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.quote-form h3{
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

.quote-form p{
    color: #666;
    margin-bottom: 22px;
}

.quote-form p i{
    color: #11a8ea;
}

.quote-form .form-control{
    height: 54px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    box-shadow: none;
    padding-left: 15px;
}

.quote-form textarea.form-control{
    height: auto;
    resize: none;
    padding-top: 14px;
}

.quote-btn{
    width: 100%;
    background: #d91313;
    color: #fff;
    border: none;
    height: 58px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    transition: 0.3s;
}

.quote-btn:hover{
    background: #bc0d0d;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .hero-section{
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-title{
        font-size: 42px;
    }

    .hero-subtitle{
        font-size: 18px;
    }

    .quote-form{
        margin: auto;
    }
}

@media(max-width: 767px){

    .top-header{
        padding: 14px 0;
    }

    .logo img{
        height: 48px;
    }

    .call-btn{
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero-title{
        font-size: 34px;
    }

    .hero-subtitle{
        font-size: 16px;
    }

    .quote-form{
        padding: 25px;
    }

    .quote-form h3{
        font-size: 28px;
    }

    .stats-wrapper{
        gap: 10px;
    }

    .stat-box{
        font-size: 12px;
    }
}

/* =========================
   TRUSTED APARTMENTS
========================= */

.trusted-apartments{
    background: #f7f7f7;
    padding: 80px 0;
}

.section-title h2{
    font-size: 34px;
    font-weight: 800;
    color: #222;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.apartment-card{
    background: #eef5f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.apartment-card img{
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: 0.3s ease;
}

.apartment-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.apartment-card:hover img{
    transform: scale(1.05);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .trusted-apartments{
        padding: 60px 0;
    }

    .section-title h2{
        font-size: 26px;
        line-height: 1.5;
    }

    .apartment-card{
        height: 130px;
    }
}

@media(max-width: 767px){

    .trusted-apartments{
        padding: 50px 0;
    }

    .section-title h2{
        font-size: 20px;
        letter-spacing: 1px;
    }

    .apartment-card{
        height: 115px;
        border-radius: 16px;
        padding: 20px;
    }

    .apartment-card img{
        max-height: 55px;
    }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section{
    padding: 80px 0;
    background: url('img/ser-sec-bg.webp') center center/cover no-repeat;
}

.service-heading{
    margin-bottom: 15px;
}

.section-tag{
    color: #11a8ea;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.service-heading h2{
    font-size: 52px;
    font-weight: 800;
    color: #222;
    margin-bottom: 0;
}


/* =========================
   CARD
========================= */

.service-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 340px;
    cursor: pointer;
}

.service-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.78),
            rgba(0,0,0,0.08),
            rgba(0,0,0,0));
}

.service-content{
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

.service-content h3{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-content p{
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 0;
    position: relative;
    padding-left: 12px;
}

.service-content p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: 14px;
    background: #11a8ea;
    border-radius: 20px;
}


/* =========================
   HOVER EFFECT
========================= */

.service-card:hover img{
    transform: scale(1.08);
}

.service-card:hover .service-overlay{
    background: linear-gradient(to top,
            rgba(0,0,0,0.88),
            rgba(0,0,0,0.18),
            rgba(0,0,0,0));
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .services-section{
        padding: 70px 0;
    }

    .service-heading h2{
        font-size: 40px;
    }

    .service-card{
        height: 300px;
    }
}

@media(max-width: 767px){

    .services-section{
        padding: 55px 0;
    }

    .section-tag{
        font-size: 12px;
    }

    .service-heading h2{
        font-size: 30px;
        line-height: 1.3;
    }

    .service-card{
        height: 260px;
        border-radius: 16px;
    }

    .service-content{
        left: 18px;
        bottom: 18px;
    }

    .service-content h3{
        font-size: 22px;
    }

    .service-content p{
        font-size: 13px;
    }
}

/* ============================= */
/* WHY CHOOSE SECTION */
/* ============================= */

.why-choose-section{
    background: url('img/y-sec-bg.webp') center center/cover no-repeat;
}



.why-title{
    font-size: 46px;
    font-weight: 800;
    color: #1d1d1d;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.why-card{
    background: #fff;
    border-radius: 22px;
    padding: 35px 28px;
    height: 100%;
    position: relative;
    z-index: 2;

    border-top: 4px solid #12a8f5;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.35s ease;
}

.why-card:hover{
    transform: translateY(-8px);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.12);
}

.why-icon{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 168, 245, 0.10);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
}

.why-icon i{
    font-size: 22px;
    color: #12a8f5;
}

.why-card h5{
    font-size: 19px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.why-card p{
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px){

    .why-title{
        font-size: 38px;
    }

    .why-card{
        padding: 28px 22px;
    }

}

@media (max-width: 767px){

    .why-choose-section{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .why-title{
        font-size: 30px;
    }

    .why-card{
        border-radius: 18px;
        padding: 24px 18px;
    }

    .why-card h5{
        font-size: 16px;
    }

    .why-card p{
        font-size: 13px;
    }

    .why-icon{
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
    }

    .why-icon i{
        font-size: 18px;
    }

}

/* ============================= */
/* RECENT WORK SECTION */
/* ============================= */


.recent-work-title{
    font-size: 46px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
}

.recent-work-subtitle{
    color: #6d6d6d;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
}

.work-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 330px;
    cursor: pointer;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);

    transition: all 0.4s ease;
}

.work-card:hover{
    transform: translateY(-8px);
    box-shadow:
        0 18px 50px rgba(0,0,0,0.16);
}

.work-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.work-card:hover img{
    transform: scale(1.08);
}

/* Overlay */

.work-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.12),
        transparent
    );

    opacity: 0;
    transition: all 0.4s ease;

    display: flex;
    align-items: flex-end;
}

.work-card:hover .work-overlay{
    opacity: 1;
}

.work-content{
    padding: 28px;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.work-card:hover .work-content{
    transform: translateY(0);
}

.work-content h5{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.work-content p{
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px){

    .recent-work-title{
        font-size: 38px;
    }

    .work-card{
        height: 290px;
    }

}

@media (max-width: 767px){

    .recent-work-section{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .recent-work-title{
        font-size: 30px;
    }

    .recent-work-subtitle{
        font-size: 14px;
    }

    .work-card{
        height: 250px;
        border-radius: 18px;
    }

    .work-content{
        padding: 20px;
    }

    .work-content h5{
        font-size: 18px;
    }

}

/* ============================= */
/* HOW IT WORKS SECTION */
/* ============================= */


.how-title{
    font-size: 46px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Wrapper */

.steps-wrapper{
    position: relative;
    padding-left: 38px;
}

/* Vertical line */

.steps-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #b9dff5;
}

/* Step Item */

.step-item{
    position: relative;
    margin-bottom: 28px;
}

.last-step{
    margin-bottom: 0;
}

/* Number Circle */

.step-number{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #10a7f3;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 800;

    position: absolute;
    left: -38px;
    top: 8px;

    z-index: 2;

    box-shadow: 0 8px 20px rgba(16, 167, 243, 0.25);
}


/* Card */

.step-card{
    background: #fff;
    border-radius: 22px;
    padding: 32px 34px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.35s ease;
}

.step-card:hover{
    transform: translateY(-5px);
    box-shadow:
        0 16px 40px rgba(0,0,0,0.10);
}

.bordered-step{
    border: 1px solid #d9eefb;
}

/* Text */

.step-tag{
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #10a7f3;
    margin-bottom: 12px;
}

.step-card h5{
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.step-card p{
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Image */

.works-image{
    position: relative;
    overflow: hidden;
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.10);
}

.works-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.works-image:hover img{
    transform: scale(1.05);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px){

    .how-title{
        font-size: 38px;
    }

    .step-card{
        padding: 28px;
    }

    .step-card h5{
        font-size: 20px;
    }

    .works-image{
        margin-top: 10px;
    }

}

@media (max-width: 767px){

    .how-it-works-section{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .how-title{
        font-size: 30px;
    }

    .steps-wrapper{
        padding-left: 32px;
    }

    .step-number{
        width: 38px;
        height: 38px;
        left: -32px;
        font-size: 14px;
    }

    .step-card{
        border-radius: 18px;
        padding: 22px 20px;
    }

    .step-card h5{
        font-size: 18px;
    }

    .step-card p{
        font-size: 13px;
    }

    .works-image{
        border-radius: 20px;
    }

}

/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section{
    padding: 90px 0;
    background: #f7f8fa;
    position: relative;
    overflow: hidden;
}

.testimonials-title{
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-top: 14px;
    margin-bottom: 18px;
}

.testimonials-title span{
    color: #10a7f3;
}

.testimonials-subtitle{
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 680px;
    margin: auto;
}

.testimonial-card{
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.testimonial-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 4px;
    height: 70%;
    background: #10a7f3;
    border-radius: 20px;
}

.testimonial-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.testimonial-stars{
    margin-bottom: 18px;
}

.testimonial-stars i{
    color: #ffc107;
    margin-right: 2px;
    font-size: 14px;
}

.testimonial-text{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 28px;
    min-height: 120px;
}

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-user img{
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-user h6{
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.testimonial-user span{
    font-size: 13px;
    color: #9ca3af;
}

/* MOBILE */

@media(max-width: 991px){

    .testimonials-section{
        padding: 70px 0 !important;
    }

    .testimonials-title{
        font-size: 34px;
    }

    .testimonial-text{
        min-height: auto;
    }

}

@media(max-width: 576px){

    .testimonials-title{
        font-size: 28px;
        line-height: 1.3;
    }

    .testimonials-subtitle{
        font-size: 15px;
    }

    .testimonial-card{
        padding: 28px 24px;
    }

}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section{
    padding: 80px 0;
    background: url('img/ser-sec-bg.webp') center center/cover no-repeat;
}

.faq-title{
    font-size: 46px;
    font-weight: 800;
    color: #1f2937;
    margin-top: 14px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq-accordion{
    border-radius: 22px;
    overflow: hidden;
}

.faq-item{
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e7eb;
}

.faq-button{
    background: transparent !important;
    box-shadow: none !important;
    padding: 24px 18px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937 !important;
    border: none;
}

.faq-button:not(.collapsed){
    color: #10a7f3 !important;
}

.faq-button::after{
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #10a7f3;
    transform: none !important;
}

.faq-button:not(.collapsed)::after{
    content: "×";
    font-size: 24px;
}

.faq-body{
    padding: 0 18px 24px 18px;
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

.faq-image-wrapper{
    position: relative;
    display: inline-block;
}

.faq-image{
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(16,167,243,0.18));
    animation: floatFaq 4s ease-in-out infinite;
}

@keyframes floatFaq{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* MOBILE */

@media(max-width: 991px){

    .faq-section{
        padding: 70px 0 !important;
    }

    .faq-title{
        font-size: 34px;
        margin-bottom: 30px;
    }

    .faq-image{
        max-width: 340px;
    }

}

@media(max-width: 576px){

    .faq-title{
        font-size: 28px;
    }

    .faq-button{
        font-size: 15px;
        padding: 20px 12px;
    }

    .faq-body{
        padding: 0 12px 22px 12px;
        font-size: 14px;
    }

    .faq-image{
        max-width: 260px;
    }

}
/* =========================================
   MINI CTA BANNER
========================================= */

.mini-cta-banner{
    position: relative;
    padding: 80px 0;
   background: url('img/cta-bg.webp') center center/cover no-repeat;
}

.mini-cta-content{
    position: relative;
    z-index: 2;
}

.mini-cta-title{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}

.mini-cta-subtitle{
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 34px;
}

.mini-cta-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.mini-call-btn,
.mini-whatsapp-btn{
    min-width: 190px;
    height: 58px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.35s ease;
    padding: 0 28px;
}

.mini-call-btn{
    background: #e21b1b;
    color: #fff;
    box-shadow: 0 12px 30px rgba(226,27,27,0.28);
}

.mini-whatsapp-btn{
    background: #16c65b;
    color: #fff;
    box-shadow: 0 12px 30px rgba(22,198,91,0.28);
}

.mini-call-btn:hover,
.mini-whatsapp-btn:hover{
    transform: translateY(-6px);
    color: #fff;
}

.mini-call-btn:hover{
    background: #c51414;
}

.mini-whatsapp-btn:hover{
    background: #11a64b;
}

/* MOBILE */

@media(max-width: 991px){

    .mini-cta-banner{
        padding: 75px 0;
    }

    .mini-cta-title{
        font-size: 38px;
    }

}

@media(max-width: 576px){

    .mini-cta-banner{
        padding: 65px 0;
    }

    .mini-cta-title{
        font-size: 28px;
    }

    .mini-cta-subtitle{
        font-size: 15px;
        margin-bottom: 28px;
    }

    .mini-call-btn,
    .mini-whatsapp-btn{
        width: 100%;
        min-width: 100%;
        height: 54px;
        font-size: 14px;
    }

}

/* =========================================
   FOOTER SECTION
========================================= */

.footer-section{
    position: relative;
    padding-top: 80px;
    background: url('img/ftr-sec-bg.webp') center center/cover no-repeat;
}





.footer-logo{
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.footer-text{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-social{
    display: flex;
    gap: 12px;
}

.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #10a7f3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 15px;
}

.footer-social a:hover{
    transform: translateY(-6px);
    background: #fff;
    color: #10a7f3;
}

.footer-heading{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-contact ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact ul li, .footer-contact ul li a{
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    line-height: 1.8;
    font-size: 15px;
    text-decoration: none;
}

.footer-contact ul li i{
    color: #10a7f3;
    margin-top: 4px;
}

/* IMAGE SLIDER */

.footer-slider{
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.footer-slider img{
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.footer-slider:hover img{
    transform: scale(1.04);
}

/* BOTTOM */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    font-size: 15px;
}

.footer-bottom span{
    color: #10a7f3;
    font-weight: 700;
}

/* MOBILE */

@media(max-width: 991px){

    .footer-section{
        padding-top: 70px;
    }

    .footer-logo{
        font-size: 24px;
    }

    .footer-slider img{
        height: 240px;
    }

}

@media(max-width: 576px){

    .footer-text,
    .footer-contact ul li,
    .footer-bottom p{
        font-size: 14px;
    }

    .footer-slider img{
        height: 220px;
    }

}