:root {
  --mt-yellow: #ffcf33;
  --mt-dark: #111111;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
}



/* HERO SECTION */
.services-hero {
    background-image: url('https://moontriam.com/services1/s15.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

/* TITLE */
.services-title {
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* SUBTITLE */
.services-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 850px;
    margin-bottom: 0;
}

/* SECOND BLACK SECTION */
.services-black {
    background: #111;
    color: #fff;
}

.services-black-title {
    font-size: 48px;
    font-weight: 600;
    font-family: "DM Sans";
    line-height: 1.4;
    max-width: 1000px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-title {
        font-size: 48px;
    }
    .services-subtitle {
        font-size: 18px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 55vh;
        text-align: center;
    }
    .services-title {
        font-size: 36px;
    }
    .services-subtitle {
        font-size: 16px;
    }
    .services-black-title {
        font-size: 28px;
    }
}


/* All services section */

/* Section Font */
.allServices-section * {
    font-family: "DM Sans", sans-serif;
}

/* Image Styling */
.allServices-img {
    border-radius: 12px;
}

/* Title */
.allServices-title {
    color: #FFD700;
    font-size: 28px;
    font-weight: 600;
}

/* Service List Container */
.allServices-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each Service Button */
.allServices-item {
    width: 100%;
    background: #000;
    color: #ffcf33;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
}

/* Arrow */
.as-arrow {
    /* width: 14px; */
    /* filter: brightness(0) invert(1); */
}

/* Hover Effect */
.allServices-item:hover {
    background: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .allServices-title {
        text-align: center;
    }

    .allServices-item {
        font-size: 14px;
        padding: 12px 16px;
    }

    .allServices-img {
        margin-bottom: 20px;
    }
}


/* AML & CFT Advisory section */


/* MAIN TITLE */
.serviceDetails-title {
    font-family: "DM Sans";
    font-size: 48px;
    font-weight: 600;
    color: #FFD700;
}

/* DESCRIPTION */
.serviceDetails-desc {
    font-family: "DM Sans";
    font-size: 20px;
    color: #333;
    max-width: 750px;
    line-height: 1.6;
    font-weight: 400;
}

/* SUBTITLE */
.serviceDetails-subtitle {
    font-family: "DM Sans";
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

/* LIST STYLING */
.serviceDetails-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serviceDetails-list li {
    font-family: "DM Sans";
    font-size: 16px;
    color: #000;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 700px;
    line-height: 1.5;
    font-weight: 400;
}

/* ICON */
.sd-icon {
    width: 20px;
    margin-top: 4px; /* top alignment fix */
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .serviceDetails-title {
        font-size: 32px;
        text-align: left;
    }

    .serviceDetails-desc,
    .serviceDetails-list li,
    .serviceDetails-subtitle {
        font-size: 15px;
        text-align: left;
    }
}


/* Contact section */


.moreHelp-section {
    background: #ffcf33;
}

/* Text */
.moreHelp-text {
    font-family: "DM Sans";
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

/* Button */
.moreHelp-btn {
    background: #000;
    color: #ffcf33;
    font-family: "DM Sans";
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 18px;
    border: none;
    transition: 0.3s ease;
    font-weight: 500;
}

.moreHelp-btn:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 576px) {
    .moreHelp-text {
        text-align: center;
        margin-bottom: 10px;
    }
}



