.license-section{

    background:#fff;

}

.license-tag{

    color:#c7a75a;

    letter-spacing:4px;

    font-size:12px;

    font-weight:500;

}

.license-title{

    font-size:32px;

    /* line-height:1.3; */

    font-weight:600;

    color:#0f2341;

}

.license-text{

    color:#2f3a4c;

    font-size:14px;

    /* line-height:1.8; */

}

.license-btn{

    background:#c7a75a;

    color:#fff;

    border-radius:40px;
    font-size: 12px;

    padding:12px 31px;

    font-weight:400;

    transition:0.3s;

}

.license-btn:hover{

    background:#b18f46;

    color:#fff;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:18px;

    color:#0f2341;

}

.contact-item i{

    color:#c7a75a;

    font-size:18px;

}

/* ACCORDION */

.custom-accordion .accordion-item{

    border:2px solid #EDF0F4;

    border-radius:14px !important;

    margin-bottom:24px;

    overflow:hidden;

    /* box-shadow:0 5px 20px rgba(0,0,0,0.05); */

    transition:all 0.4s ease;

}

.custom-accordion .accordion-button{

    background:#fff;

    font-size:18px;

    font-weight:500;

    color:#0f2341;

    /* padding:30px; */

    box-shadow:none !important;

    transition:all 0.4s ease;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:#f3f3f340 !important;

    color:#0f2341;

    box-shadow:none !important;

}


.custom-accordion .accordion-button::after{

    background-image:none;

    content:"+";

    font-size:30px;

    font-weight:300;

    width:auto;

    height:auto;

    color:#c7a75a;

    transition:all 0.4s ease;

}

.custom-accordion .accordion-button:not(.collapsed)::after{

    content:"−";

    transform:rotate(180deg);

}


.custom-accordion .accordion-collapse{

    transition:all 0.45s ease-in-out;

}
.custom-accordion .accordion-body{

    font-size:14px;

    
    background:#f3f3f3 !important;

    color:#4b5563;

    padding:0 30px 30px;

    line-height:1.8;

  

    animation: smoothAccordion 0.45s ease;

}

@keyframes smoothAccordion{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.custom-accordion{

    max-width:590px;

    margin-left:auto;

}

/* RESPONSIVE */

@media(max-width:991px){

    .license-title{

        font-size:38px;

    }

    .custom-accordion .accordion-button{

        font-size:22px;

        padding:22px;

    }

}

@media(max-width:767px){

    .license-title{

        font-size:30px;

    }

    .license-text{

        font-size:16px;

    }

    .custom-accordion .accordion-button{

        font-size:18px;

        padding:18px;

    }

    .contact-item{

        font-size:18px;

    }

}




/* ============ BODY ============ */
body { font-family: 'Inter', sans-serif; }

/* ============ HERO ============ */
.hero-section {
    background: url('https://moonfta.ae/images/services_pro10.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; }
}



/* 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;
    }
}


.accordion-button:hover{

    color:#c7a75a;
}

/* OPEN ACCORDION HEADER */

.custom-accordion .accordion-button:not(.collapsed){

    background:#EDF0F4 !important;

    color:#808080 !important;

    box-shadow:none !important;

}

/* OPEN BODY */

.custom-accordion .accordion-body{

    background:#EDF0F4 !important;

    color:#4b5563;

}




/* Testimonial */

.testimonial-section {
    background: #f4f6f8;
    background-image:
        repeating-linear-gradient(115deg, rgba(15,35,65,0.018) 0px, rgba(15,35,65,0.018) 1px, transparent 1px, transparent 26px),
        repeating-linear-gradient(115deg, rgba(15,35,65,0.022) 0px, rgba(15,35,65,0.022) 1px, transparent 1px, transparent 130px);
    padding: 70px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.testimonial-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TOP ROW: quote mark + arrows */
.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 70px;
    line-height: 0.6;
    color: #b9c2cd;
    font-weight: 700;
    user-select: none;
    margin-top: 18px;
}

/* ARROWS */
.testimonial-nav {
    display: flex;
    gap: 26px;
    margin-top: 38px;
}

.testimonial-nav button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #5a6573;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 0;
}

.testimonial-nav button:hover {
    color: #c7a75a;
    transform: scale(1.15);
}

.testimonial-nav button:disabled {
    opacity: 0.4;
    cursor: default;
}

.testimonial-nav svg {
    width: 24px;
    height: 14px;
}

/* SLIDER VIEWPORT — height animates smoothly */
.testimonial-viewport {
    overflow: hidden;
    padding-left: 40px;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* TRACK — holds all slides side by side, slides horizontally */
.testimonial-track {
    display: flex;
    will-change: transform;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
    opacity: 0.25;
    transition: opacity 1s ease;
}

.testimonial-slide.is-active {
    opacity: 1;
}

.testimonial-text {
    color: #2f3a4c;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 30px 0;
    max-width: 1080px;
}

.testimonial-author {
    color: #c7a75a;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.testimonial-role {
    color: #2f3a4c;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .testimonial-wrap { padding: 0 28px; }
    .quote-mark { font-size: 90px; margin-top: 14px; }
    .testimonial-text { font-size: 19px; }
    .testimonial-nav { margin-top: 30px; }
}

@media (max-width: 767px) {
    .testimonial-section { padding: 50px 0; }
    .testimonial-wrap { padding: 0 20px; }
    .quote-mark { font-size: 70px; }
    .testimonial-viewport { padding-left: 0; }
    .testimonial-slide { padding-right: 0; }
    .testimonial-text { font-size: 16px; line-height: 1.6; }
    .testimonial-author { font-size: 17px; }
    .testimonial-role { font-size: 14px; }
    .testimonial-nav { gap: 18px; margin-top: 24px; }
    .testimonial-nav svg { width: 26px; height: 16px; }
}

@media (max-width: 480px) {
    .quote-mark { font-size: 58px; margin-top: 10px; }
    .testimonial-text { font-size: 15px; }
}
/* contact-item links (phone / whatsapp / email) — link jaisa blue underline nahi chahiye */
.contact-item a{

    color:inherit;

    text-decoration:none;

    transition:color 0.25s;

}

.contact-item a:hover{

    color:#c7a75a;

}