    /* =====================================================================
   service-page.css  (Meta Ads Services in Trichy)
   Scoped stylesheet — all classes prefixed with `ma-`.
   No body{}, *{}, or font-family rules used — inherits theme typography.
   Alternating pure #ffffff / #000000 section backgrounds as required.
===================================================================== */

/* ---------- Layout Primitives ---------- */
.ma-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ma-section {
    padding: 64px 0;
}

.ma-section--white {
    background-color: #ffffff;
}

.ma-section--dark {
    background-color: #000000;
}

.ma-mt-24 {
    margin-top: 24px;
}

/* ---------- Breadcrumb ---------- */
.ma-breadcrumb {
    padding: 16px 0;
    background-color: #c5ffbc;
    border-bottom: 1px solid #e5e7ec;
}

.ma-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.ma-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b6f7b;
}

.ma-breadcrumb__item:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #a7abb5;
}

.ma-breadcrumb__link {
    color: #6b6f7b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ma-breadcrumb__link:hover {
    color: #91d904;
}

.ma-breadcrumb__item--active {
    color: #1a1a1a;
    font-weight: 600;
}

/* ---------- Typography (light sections) ---------- */
.ma-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
    color: #91d904;
    margin-bottom: 12px;
}

.ma-h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 800;
    color: #14161b;
    margin: 0 0 16px;
}.text-light li {
    color: white !important;
}

.ma-h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 18px;
}

.ma-h3 {
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.3;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 12px;
}

.ma-h4 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 8px;
}

.ma-paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: #4b4f5a;
    text-align: justify;
    margin: 0 0 14px;
}

.ma-hero-block__tagline {
    font-size: 18px;
    font-weight: 600;
    color: #3b3f47;
    text-align: justify;
    margin-bottom: 20px;
}

/* ---------- Typography overrides (dark sections) ---------- */
.ma-section--dark .ma-h1,
.ma-section--dark .ma-h2,
.ma-section--dark .ma-h3,
.ma-section--dark .ma-h4 {
    color: #ffffff;
}

.ma-section--dark .ma-paragraph,
.ma-section--dark .ma-hero-block__tagline {
    color: #c9cbd1;
}

.ma-section--dark .ma-breadcrumb__link {
    color: #c9cbd1;
}

/* ---------- Flow / Formula Text ---------- */
.ma-flow-text {
    font-size: 15px;
    font-weight: 600;
    color: #26282f;
    background-color: #c5ffbc;
    border-left: 4px solid #91d904;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 16px;
    line-height: 1.7;
}

.ma-flow-text--dark {
    background-color: #16181d;
    color: #eef8dc;
    border-left-color: #91d904;
}

/* ---------- Section Heading Blocks ---------- */
.ma-section-heading {
    margin-bottom: 36px;
}

.ma-section-heading--center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.ma-section-heading--center .ma-paragraph {
    text-align: center;
}

/* ---------- Hero Block ---------- */
.ma-hero-block__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.ma-hero-block__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* ---------- Tag Chips ---------- */
.ma-tag-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.ma-tag-chip-row--center {
    justify-content: center;
}

.ma-tag-chip {
    display: inline-block;
    background-color: #c5ffbc;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3b3f47;
}

.ma-section--dark .ma-tag-chip {
    background-color: #1a1c22;
    color: #e6e8ee;
    border: 1px solid #2c2f38;
}

/* ---------- Buttons ---------- */
.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.ma-btn--primary {
    background-color: #91d904;
    color: #0e1207;
    box-shadow: 0 8px 20px rgba(145, 217, 4, 0.28);
}

.ma-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(145, 217, 4, 0.38);
}

.ma-btn--outline {
    background-color: transparent;
    color: #14161b;
    border-color: #14161b;
}

.ma-btn--outline:hover {
    background-color: #14161b;
    color: #ffffff;
    transform: translateY(-2px);
}

.ma-section--dark .ma-btn--outline {
    color: #ffffff;
    border-color: #ffffff;
}

.ma-section--dark .ma-btn--outline:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ---------- Images ---------- */
.ma-img-rounded {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(20, 22, 27, 0.12);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ma-img-rounded:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(20, 22, 27, 0.18);
}

.ma-section--dark .ma-img-rounded {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* ---------- Split (Image / Content) Layouts ---------- */
.ma-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 28px;
}

.ma-split--image-left .ma-split__image {
    order: 1;
}

.ma-split--image-left .ma-split__content {
    order: 2;
}

.ma-split--content-left .ma-split__content {
    order: 1;
}

.ma-split--content-left .ma-split__image {
    order: 2;
}

/* ---------- Content Cards ---------- */
.ma-content-card {
    background-color: #ffffff;
    border: 1px solid #ecedf1;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(20, 22, 27, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ma-content-card:hover {
    box-shadow: 0 16px 40px rgba(20, 22, 27, 0.08);
    transform: translateY(-3px);
}

.ma-content-card:last-child {
    margin-bottom: 0;
}

.ma-section--dark .ma-content-card {
    background-color: #111318;
    border-color: #24272f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ma-section--dark .ma-content-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.ma-insight-box {
    background: linear-gradient(135deg, #14161b 0%, #21242c 100%);
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 28px;
    color: #c5ffbc;
}

.ma-insight-box .ma-h2,
.ma-insight-box .ma-h3,
.ma-insight-box .ma-h4 {
    color: #ffffff;
}

.ma-insight-box .ma-paragraph {
    color: #cfd2da;
}

/* ---------- Bullet Lists ---------- */
.ma-bullet-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ma-bullet-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.65;
    color: #000;
    text-align: justify;
}

.ma-section--dark .ma-bullet-list li {
    color: #c9cbd1;
}

.ma-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #91d904;
}

.ma-bullet-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.ma-bullet-list--center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Check Grid ---------- */
.ma-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ma-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #111318;
    border: 1px solid #24272f;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #e6e8ee;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ma-check-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
    border-color: #91d904;
}

.ma-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background-color: #eef8dc;
    color: #5c8c00;
    font-weight: 800;
    font-size: 13px;
}

/* ---------- Role Grid ---------- */
.ma-role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.ma-role-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.ma-role-item {
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #ecedf1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.ma-role-item:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08);
}

.ma-role-grid--dark .ma-role-item {
    background-color: #16181d;
    border-color: #24272f;
}
.ma-faq-item__answer{
        cursor: pointer;

}
.ma-role-grid--dark .ma-role-item:hover {
    background-color: #1c1f26;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
    border-color: #91d904;
}

/* ---------- Pillar Grid ---------- */
.ma-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ma-pillar-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.ma-pillar-card {
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #ecedf1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.ma-pillar-card:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08);
}

.ma-pillar-grid--dark .ma-pillar-card {
    background-color: #16181d;
    border-color: #24272f;
}

.ma-pillar-grid--dark .ma-pillar-card:hover {
    background-color: #1c1f26;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
    border-color: #91d904;
}

/* ---------- Type Grid ---------- */
.ma-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ma-type-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ecedf1;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ma-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
    border-color: #cdeaa0;
}

.ma-type-grid--dark .ma-type-card {
    background-color: #111318;
    border-color: #24272f;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.ma-type-grid--dark .ma-type-card:hover {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    border-color: #91d904;
}

/* ---------- Tech Grid ---------- */
.ma-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ma-tech-card {
    background-color: #c5ffbc;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #ecedf1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.ma-tech-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
}

.ma-tech-grid--dark .ma-tech-card {
    background-color: #16181d;
    border-color: #24272f;
}

.ma-tech-grid--dark .ma-tech-card:hover {
    background-color: #1c1f26;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    border-color: #91d904;
}

/* ---------- Location Chips ---------- */
.ma-location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.ma-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #c5ffbc;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #3b3f47;
}

.ma-location-grid--dark .ma-location-chip {
    background-color: #16181d;
    color: #e6e8ee;
    border: 1px solid #24272f;
}

/* ---------- Timeline (Process Steps) ---------- */
.ma-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 8px;
}

.ma-timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #91d904 0%, rgba(145, 217, 4, 0.1) 100%);
}

.ma-timeline__item {
    position: relative;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.ma-timeline__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background-color: #14161b;
    color: #91d904;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(20, 22, 27, 0.18);
}

.ma-section--dark .ma-timeline__marker {
    background-color: #91d904;
    color: #0e1207;
}

.ma-timeline__body {
    background-color: #ffffff;
    border: 1px solid #ecedf1;
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(20, 22, 27, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ma-timeline__body:hover {
    box-shadow: 0 14px 32px rgba(20, 22, 27, 0.09);
    transform: translateY(-3px);
}

.ma-section--dark .ma-timeline__body {
    background-color: #111318;
    border-color: #24272f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.ma-section--dark .ma-timeline__body:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}

/* ---------- CTA Blocks ---------- */
.ma-cta-block__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}



.ma-cta-block__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

/* ---------- FAQ Accordion ---------- */
.ma-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.ma-faq-item {
    background-color: #111318;
    border: 1px solid #24272f;
    border-radius: 14px;
    padding: 6px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.25s ease;
}

.ma-faq-item[open] {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    border-color: #91d904;
}

.ma-faq-item__question {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ma-faq-item__question::-webkit-details-marker {
    display: none;
}

.ma-faq-item__question::after {
    content: "+";
    font-size: 22px;
    color: #91d904;
    margin-left: 12px;
    transition: transform 0.25s ease;
}

.ma-faq-item[open] .ma-faq-item__question::after {
    transform: rotate(45deg);
}

.ma-faq-item__answer {
    padding: 0 0 18px;
}

/* ---------- Related Services Grid ---------- */
.ma-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ma-related-card {
    display: block;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ecedf1;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ma-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
    border-color: #cdeaa0;
}

.ma-related-card .ma-h4 {
    color: #14161b;
}

.ma-related-card .ma-paragraph {
    margin-bottom: 0;
    font-size: 14.5px;
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
===================================================================== */

@media (min-width: 1440px) {
    .ma-container {
        max-width: 1320px;
    }
}

/* Laptops */
@media (max-width: 1199px) {
    .ma-type-grid,
    .ma-tech-grid,
    .ma-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ma-role-grid,
    .ma-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ma-pillar-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 991px) {
    .ma-section {
        padding: 48px 0;
    }

    .ma-hero-block__grid,
    .ma-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ma-split--image-left .ma-split__image,
    .ma-split--content-left .ma-split__image {
        order: -1;
    }

    .ma-check-grid,
    .ma-role-grid,
    .ma-role-grid--two,
    .ma-type-grid,
    .ma-tech-grid,
    .ma-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ma-bullet-list--two-col {
        grid-template-columns: 1fr;
    }

    .ma-timeline::before {
        left: 21px;
    }

    .ma-timeline__marker {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 14px;
    }
}

/* Small Tablets */
@media (max-width: 767px) {
    .ma-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ma-section {
        padding: 40px 0;
    }

    .ma-check-grid,
    .ma-role-grid,
    .ma-role-grid--two,
    .ma-pillar-grid,
    .ma-pillar-grid--four,
    .ma-type-grid,
    .ma-tech-grid,
    .ma-related-grid {
        grid-template-columns: 1fr;
    }

    .ma-hero-block__cta,
    .ma-cta-block__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ma-btn {
        width: 100%;
    }

    .ma-timeline__item {
        gap: 14px;
    }

    .ma-timeline__body {
        padding: 18px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .ma-h1 {
        font-size: 26px;
    }

    .ma-h2 {
        font-size: 22px;
    }

    .ma-h3 {
        font-size: 18px;
    }

    .ma-paragraph,
    .ma-bullet-list li {
        font-size: 14.5px;
    }

    .ma-content-card,
    .ma-insight-box,
    .ma-tech-card,
    .ma-type-card,
    .ma-pillar-card,
    .ma-role-item {
        padding: 18px;
    }

    .ma-timeline__marker {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 12px;
    }

    .ma-check-item {
        padding: 12px 14px;
    }

    .ma-tag-chip {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ma-location-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}
