

body {
    font-family: 'Inter', sans-serif;
}
/* ============ BODY ============ */
body { font-family: 'Inter', sans-serif; }

/* ============ HERO ============ */
.hero-section {
    background: url('https://moonfta.ae/images/services_pro11.jpg') no-repeat center center/cover;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 120px;
}
.hero-content h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 56px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.hero-content p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 20px;
    max-width: 900px;
}


.page-hero::before {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.25) 100%
    ) !important;
}
.page-hero .hero-content { margin-top: 150px; }
.page-hero .hero-content h1 { font-size: 58px; line-height: 1.1; margin-bottom: 22px; }
.page-hero .hero-content p { max-width: 650px; line-height: 1.85; opacity: 0.92; }

.hero-subtitle {
    display: inline-block;
    color: #D4B46A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-content { margin-top: 80px; }
    .hero-content h1 { font-size: 28px; }
    .page-hero { min-height: 70vh; }
    .page-hero .hero-content { margin-top: 110px; }
    .page-hero .hero-content h1 { font-size: 32px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 2px; }
}


/* Services Section */


.services-section {
    background: #f5f5f5;
    padding: 80px 0;
}


.services-title {
    color: #000;
text-align: center;
font-family: Inter;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: normal;
}


.service-card {
    background: #fff;
    padding: 34px;
    /* border-radius: 6px; */
    height: 100%;
    transition: 0.3s;
}


.service-card img {
    width: 45px;
    margin-bottom: 15px;

}


.service-card h5 {
    color: #000;
font-family: Inter;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: normal;
    margin-bottom: 10px;
}


.service-card p {
    color: #4B4B4B;
font-family: Inter;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
}


.service-card:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .services-title {
        font-size: 22px;
    }
}


/* CTA Section */

.cta-section {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    overflow: hidden;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #FFF;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-section p {
    color: #D8D8D8;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c40000;
    color: #FFF;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 16px 60px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #a80000;
    color: #fff;
    transform: translateY(-2px);
}



@media (max-width: 1200px) {

    .cta-section {
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-size: 38px;
    }

    .cta-section p {
        font-size: 19px;
    }
}



@media (max-width: 992px) {

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
        line-height: 140%;
        letter-spacing: 1px;
    }

    .cta-section p {
        font-size: 18px;
        line-height: 160%;
    }

    .cta-btn {
        font-size: 18px;
        padding: 14px 45px;
    }
}



@media (max-width: 768px) {

    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h2 {
        font-size: 26px;
        line-height: 140%;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 16px;
        line-height: 160%;
        margin-bottom: 30px;
    }

    .cta-section p br {
        display: none;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 8px;
    }
}



@media (max-width: 480px) {

    .cta-section {
        padding: 40px 12px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 13px 18px;
    }
}

/* statement-section */


.statement-section {
    background: url('https://moonfta.ae/copyData/images/belive.jpg') no-repeat center/cover;
    padding: 60px 0;
    position: relative;
}


.statement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}


.statement-section .container {
    position: relative;
    z-index: 2;
}


.statement-section p {
    color: #000;
text-align: center;
font-size: 17px;
font-style: normal;
font-weight: 500;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .statement-section p {
        font-size: 14px;
    }
}