: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 */


.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;
    }
}




/* Footer Section */
.moon-footer {
  font-family: "DM Sans", sans-serif;
  color: #fff;
 background: #000;
 
}

.moon-footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.moon-footer-tagline {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}

.moon-soc {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.1s ease;
}
.moon-soc:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.moon-footer-head {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.moon-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.moon-footer-links li {
  margin: 0.45rem 0;
}

.moon-footer-links a {
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}
.moon-footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.moon-footer-hr {
  border: 0;
  height: 1.6px;
  background: #FFF;
}

.moon-footer-mini {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.moon-footer-mini:hover {
  text-decoration: underline;
}

.moon-location {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .moon-footer {
    text-align: center;
  }
  .moon-footer-head {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .moon-footer-links a {
    font-size: 0.85rem;
  }
  .moon-footer-logo {
    height: 30px;
  }
  .moon-footer-tagline {
    font-size: 0.85rem;
  }
}


/* Placeholder column to maintain layout spacing */
.moon-placeholder {
  visibility: hidden;     /* content hidden */
  min-height: 100%;       /* height same as other columns */
}

/* Responsive handling */
@media (max-width: 992px) {
  .moon-placeholder {
    display: none; /* hide on tablet/mobile */
  }
}

/* reveal section */

.reveal-up{
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition:
    transform 900ms cubic-bezier(.22,1,.36,1),
    opacity   900ms ease;
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal-up.show{
  opacity: 1;
  transform: none;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal-up{ transition: none; transform: none; opacity:1; }
}

.compliance-footer-p{

  color: #FFF;

font-family: Roboto;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

/* Footer Icon Images */
.footer-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-top: 3px; /* aligns icon with text */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .footer-icon-img {
        width: 18px;
        height: 18px;
    }
}



