/*
Theme Name: Ashraful
Theme URI: http://yourwebsite.com/jamil
Author: Your Name
Author URI: http://yourwebsite.com
Description: Custom WordPress theme "Ashraful"
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jamil
Tags: custom, responsive, blog, clean
*/


* {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
}


/* =========
   GLOBAL
   ========= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #050607;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========
   HEADER
   ========= */

#mmg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

/* pill navbar */
.mmg-navbar {
    width: calc(100% - 40px);
    max-width: 1160px;
    margin-top: 16px;
    padding: 6px 24px;
    background-color: #565959;
    border-radius: 15px;
    pointer-events: auto;
    position: relative;
}

/* logo */
.mmg-logo {
    color: #00c48c;
    text-transform: uppercase;
    line-height: 1.1;
    margin-right: 24px;
}

.mmg-logo-main {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
}

.mmg-logo-sub {
    color: #b5f7e8;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.24em;
}

/* burger */
.mmg-navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    width: 34px;
    height: 30px;
    outline: none;
    background: transparent;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.mmg-navbar-toggler:focus {
    box-shadow: none;
}

/* Font Awesome burger icon */
.mmg-burger-icon {
    font-size: 20px;
    color: #ffffff;
    line-height: 1;
}

/* desktop এ burger hide */
@media (min-width: 992px) {
    .mmg-navbar-toggler {
        display: none;
    }
}

/* center nav menu */
.mmg-nav-menu {
    margin-left: auto;
    margin-right: auto;
}

/* inline nav items */
.mmg-nav-menu .nav-item {
    margin: 0 10px;
}

.mmg-nav-menu .nav-link {
    color: #f4f4f4;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
    display: inline-block;
    position: relative;
}

.mmg-nav-menu .nav-link.active,
.mmg-nav-menu .nav-link:hover {
    color: #ffffff;
}

/* underline */
.mmg-nav-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #00c48c;
    transition: width 0.2s ease;
}

.mmg-nav-menu .nav-link:hover::after,
.mmg-nav-menu .nav-link.active::after {
    width: 100%;
}

/* dropdown icon */
.mmg-dropdown-toggle {
    padding-right: 18px;
}

.mmg-dropdown-icon {
    font-size: 12px;
    margin-left: 4px;
}

/* remove default caret */
.mmg-dropdown-toggle::after {
    display: none;
}

/* dropdown menu (desktop base) */
.mmg-dropdown-menu {
    background-color: #565959;
    border-radius: 4px;
    border: none;
    padding: 8px 0;
    min-width: 180px;
}

/* dropdown items */
.mmg-dropdown-menu .dropdown-item {
    font-size: 13px;
    color: #ffffff;
    padding: 6px 16px;
}

.mmg-dropdown-menu .dropdown-item:hover,
.mmg-dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #00c48c;
}

/* Desktop: hover এ dropdown open */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 8px;
    }
}

/* CTA buttons (header + hero) */
.mmg-header-cta,
.mmg-header-cta-mobile,
.mmg-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #00c48c;
    color: #00c48c;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    padding-right: 40px;
}

/* CTA icon – vertically centered */
.mmg-cta-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.mmg-header-cta:hover,
.mmg-header-cta-mobile:hover,
.mmg-hero-btn:hover {
    background-color: #00c48c;
    color: #000000;
}

/* =========
   HERO
   ========= */

.mmg-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* header fixed, so space at top */
.mmg-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 170px;
    padding-bottom: 120px;
}

/* background video */
.mmg-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* overlay */
.mmg-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(0,0,0,0.4), rgba(0,0,0,0.92));
    z-index: 1;
}

/* title */
.mmg-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
}

/* accent words */
.mmg-hero-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #00c48c;
}

/* subtitle */
.mmg-hero-subtitle {
    color: #b5b5b5;
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 32px;
}

/* hero CTAs */
.mmg-hero-ctas {
    gap: 16px;
}

/* OUR SERVICES */
.mmg-hero-link {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.mmg-hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

/* dummy content */
.mmg-dummy-content {
    min-height: 80vh;
}


/*Home header end*/







/* =========
   WHO WE ARE SECTION
   ========= */

.mmg-section-about {
    background-color: #ffffff;
    color: #000000;
    padding: 120px 0;  /* match clean white space like Figma */
}

/* left label "Who we are" */
.mmg-about-label {
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: none; /* screenshot looks sentence case */
    color: #00c48c;       /* same teal accent you used */
}

/* small CTA under label */
.mmg-about-cta {
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00c48c;
    position: relative;
    padding-right: 28px;
}

.mmg-about-cta-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.mmg-about-cta:hover {
    color: #00e0a4; /* slight hover – adjust if Figma has exact color */
}

/* right text block – EXACT client specs */
.mmg-about-text {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;   /* 400 */
    font-size: 24px;    /* 24px */
    line-height: 33px;  /* 33px */
    letter-spacing: 0;  /* 0px */
    color: #000000;     /* full black */
}













/* =========
   MOVING IMAGE STRIP (CAROUSEL-LIKE)
   ========= */

.mmg-image-marquee {
    width: 100%;
    background-color: #ffffff;  /* same white as your about section */
    padding: 40px 0;
    overflow: hidden;           /* hide overflow as it moves */
}

/* full-width track moving right -> left */
.mmg-image-marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;                  /* space between cards */
    animation: mmg-marquee 30s linear infinite;
}

.mmg-image-marquee-item {
    flex: 0 0 auto;
}

/* card with border like screenshot */
.mmg-image-card {
    border: 1px solid #e2e2e2;        /* adjust to exact Figma color if needed */
    border-radius: 20px;              /* match corner radius to your design */
    padding: 20px 28px 20px 28px;                    /* inner white padding around image */
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);  /* subtle shadow if your screenshot has it */
}

/* image fit inside card */
.mmg-image-card img {
    display: block;
    height: 30px;          /* adjust height to match your design */
    width: auto;
}

/* infinite scroll animation: right -> left */
@keyframes mmg-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* optional: pause on hover (remove if client doesn't want) */
.mmg-image-marquee-track:hover {
    animation-play-state: paused;
}











/* =========
   WHY CLIENTS STAY SECTION
   ========= */

.mmg-clients-section {
    background-color: #151616;       /* white page background */
    padding: 80px 0;
}

/* dark rounded container like screenshot */
.mmg-clients-inner {
    background-color: #151616;       /* dark grey/black */
    border-radius: 24px;
    padding: 48px 40px 56px;
    color: #ffffff;
}

/* left teal label */
.mmg-clients-label {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #00c48c;                  /* same accent as other sections */
}

/* main heading */
.mmg-clients-heading {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;                 /* adjust if Figma says different */
    line-height: 1.6;
    letter-spacing: 0;
    color: #ffffff;
}

/* cards wrapper spacing (extra if needed) */
.mmg-clients-cards {
    margin-top: 16px;
}

/* individual card */
.mmg-client-card {
    background-color: #f4f5f6;       /* light grey on dark bg */
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;          /* icon on top, text under it */
    align-items: flex-start;         /* left aligned */
    gap: 12px;                       /* space between icon and text */
}

/* teal square icon */
.mmg-client-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #a3f3d6;       /* mint/teal like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmg-client-icon-box i {
    color: #111111;
    font-size: 18px;
}

/* card text */
.mmg-client-text {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;                  /* full black text inside card */
}









/* =========
   SERVICES TABS SECTION
   ========= */

/* full section background */
.mmg-services-section {
    background-color: #F4F4F2;      /* as requested */
    padding: 80px 0;
}

/* inner shell just for spacing */
.mmg-services-shell {
    border-radius: 24px;
    padding: 28px 26px 36px;
}

/* Tabs strip */
.mmg-services-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Tab pill */
.mmg-service-tab {
    border: none;
    border-radius: 999px;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #111827;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
    transition: background 0.25s ease, color 0.25s ease,
                box-shadow 0.25s ease, transform 0.15s ease;
    white-space: nowrap;
}

.mmg-service-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
}

.mmg-service-tab.is-active {
    background-color: #c7f2de;
    color: #064e3b;
    box-shadow: 0 0 0 1px #22c55e;
    font-weight: 600;
}

/* viewport for sliding cards */
.mmg-services-viewport {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    border-radius: 24px;
    min-height: 360px;           /* ensure visible height on desktop */
    background-color: #F4F4F2;
}

/* right fade like screenshot */
.mmg-services-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left,
                rgba(244, 244, 242, 1),
                rgba(244, 244, 242, 0));
    z-index: 3;
}

/* panels (each tab's card set) */
.mmg-services-panel {
    position: absolute;
    inset: 0;
    padding: 16px 4px 4px;
    display: flex;
    gap: 24px;
    background-color: #F4F4F2;

    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.45s ease;
    will-change: transform, opacity;
}

.mmg-services-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
}

/* individual service card */
/* fixed width so left card full, right card ~1/3 visible on PC */
.mmg-service-card {
    flex: 0 0 62%;               /* 62% each -> total > 100% */
    max-width: 62%;
    background-color: #FEFEFE;   /* card background as requested */
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
}

/* larger top image */
.mmg-service-media {
    height: 260px;              /* bigger like screenshot */
    overflow: hidden;
}

.mmg-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* card body */
.mmg-service-body {
    position: relative;
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* title */
.mmg-service-title {
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

/* arrow in top-right of card body, slightly diagonal */
.mmg-service-arrow {
    position: absolute;
    right: 22px;
    top: 22px;
    font-size: 14px;
    color: #00c48c;
    transform: rotate(-45deg);  /* ↗ look */
}

/* subtitle under title */
.mmg-service-sub {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* bullet list */
.mmg-service-list {
    margin: 4px 0 0;
    padding-left: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #111827;
}

.mmg-service-list li + li {
    margin-top: 2px;
}












/* =========
   OUR WORK SECTION
   ========= */

.mmg-work-section {
    background-color: #F4F4F2;   /* full background */
    padding: 100px 0;
}

.mmg-work-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #00c48c;
}

.mmg-work-heading {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;            /* adjust if Figma shows different */
    line-height: 1.6;
    color: #111827;
}

/* card container */
.mmg-work-grid {
    margin-bottom: 32px;
}

/* base card */
.mmg-work-card {
    border-radius: 18px;
}

/* card inner with overlay */
.mmg-work-card-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: #FEFEFE;  /* card background */
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* common card heights: top row */
.mmg-work-card-inner img {
    width: 100%;
    height: 260px;              /* bigger image like screenshot */
    object-fit: cover;
    display: block;
}

/* bottom wide card – a bit taller */
.mmg-work-card-wide .mmg-work-card-inner img {
    height: 280px;
}

/* dark gradient at bottom for text readability */
.mmg-work-card-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top,
        rgba(0,0,0,0.80),
        rgba(0,0,0,0.0));
    z-index: 1;
    pointer-events: none;
}

/* top overlay row */
.mmg-work-card-top {
    position: absolute;
    top: 10px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

/* small pill "Branding" */
.mmg-work-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: rgba(0,0,0,0.7);
    color: #e6fff7;
}

/* small circle arrow top-right */
.mmg-work-top-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-size: 13px;
}

/* bottom title */
.mmg-work-card-bottom {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
}

.mmg-work-card-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
}

/* bottom link */
.mmg-work-footer {
    margin-top: 4px;
}

.mmg-work-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00c48c;
}

.mmg-work-link-icon {
    font-size: 12px;
    transform: translateY(1px);
}











/* =========
   PROCESS / TIMELINE SECTION
   ========= */

/* outer section background */
.mmg-process-section {
    background-color: #111214;       /* dark like screenshot */
    padding: 100px 0 120px;
}

/* inner rounded panel */
.mmg-process-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 60px 120px;
    background-color: #262729;       /* dark grey panel */
    border-radius: 24px;
    color: #f5f5f5;
}

/* top label and title */
.mmg-process-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00C48C;                  /* teal */
    margin-bottom: 12px;
}

.mmg-process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.4;
    color: #F7F7F7;
}

.mmg-process-title span {
    color: #FFFFFF;
}

/* ---------- TIMELINE LAYOUT ---------- */

.mmg-timeline-inner {
    position: relative;
    padding-left: 90px;  /* space for left rail */
}

.mmg-step {
    margin-bottom: 40px;
}

.mmg-step:last-child {
    margin-bottom: 0;
}

/* full card (wrapper) */
.mmg-step-card {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 0;                             /* left + right flush */
    border-radius: 18px;
    overflow: hidden;                   /* one continuous bar look */
    background: transparent;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.mmg-step-card.is-active {
    opacity: 1;
    transform: translateY(0);
}

.mmg-step-card.is-hidden {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

/* left block (light) */
.mmg-step-left {
    background-color: #F4F4F4;         /* light card half */
    padding: 18px 22px;
}

.mmg-step-left .mmg-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #111111;
}

.mmg-step-left .mmg-step-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #4B4B4B;
}

/* right block (dark) with VIDEO visible */
.mmg-step-right {
    background-color: #3E4044;         /* dark right side */
    min-height: 130px;
    position: relative;
    overflow: hidden;
}

/* video */
.mmg-step-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dark radial overlay on video */
.mmg-step-media-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
                transparent 0,
                rgba(0, 0, 0, 0.45) 80%);
    pointer-events: none;
}

/* ---------- LEFT RAIL ---------- */

.mmg-rail {
    position: absolute;
    left: 30px;
    width: 0;
    pointer-events: none;
    z-index: 0;
}

/* dashed base line */
.mmg-rail-dashed {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.25);
}

/* solid teal progress line */
.mmg-rail-solid {
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 2px solid #00C48C;
    z-index: 1;
    transition: height 0.35s ease-out;
}

/* dots wrapper */
#mmgRailDots {
    position: relative;
    width: 0;
    z-index: 2;
}

/* dots */
.mmg-rail-dot {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #00C48C;
    background: #262729;                /* same as panel */
    box-shadow: 0 0 0 0 rgba(0, 196, 140, 0.25);
    transition: background 0.25s ease-out,
                box-shadow 0.25s ease-out,
                transform 0.25s ease-out;
}

/* active + completed dots */
.mmg-rail-dot.is-active {
    background: #00C48C;
    box-shadow: 0 0 0 8px rgba(0, 196, 140, 0.18);
    transform: translateX(-50%) scale(1.03);
}









/* =========
   FAQS SECTION
   ========= */

.mmg-faq-section {
    background-color: #FFFFFF;       /* white page background */
    padding: 110px 0 120px;
}

/* left label “FAQs” */
.mmg-faq-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #00C48C;                  /* teal accent */
}

/* center heading */
.mmg-faq-heading {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: #25303B;                  /* dark grey/green like screenshot */
}

/* list container (card look) */
.mmg-faq-list {
    background-color: #F8F9FA;       /* light grey card area */
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

/* each item row */
.mmg-faq-item {
    border-bottom: 1px solid #E3E5E8;
}

.mmg-faq-item:last-child {
    border-bottom: none;
}

/* question row (button) */
.mmg-faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 52px 14px 18px;
    background-color: #FEFEFE;       /* as you requested for cards */
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* question text */
.mmg-faq-question-text {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* plus / minus icon on right */
.mmg-faq-icon {
    font-size: 13px;
    color: #9CA3AF;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* answer text */
.mmg-faq-answer {
    display: none;
    padding: 0 52px 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #4B5563;
    background-color: #FEFEFE;
}

/* open state (for styling if needed) */
.mmg-faq-item.is-open .mmg-faq-question-text {
    color: #111827;
}













/* =========
   TESTIMONIALS SECTION
   ========= */

.mmg-testimonials-section {
    background-color: #222324;   /* dark full-width background */
    padding: 80px 0 90px;
    color: #ffffff;
}

/* top label */
.mmg-testimonials-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #00C48C;              /* teal accent */
}

/* heading */
.mmg-testimonials-heading {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
}

/* slider layout */
.mmg-testimonials-slider {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* viewport centered */
.mmg-testimonials-viewport {
    flex: 0 1 780px;             /* card max width */
    max-width: 100%;
    position: relative;
}

/* track & slides */
.mmg-testimonials-track {
    position: relative;
    min-height: 190px;           /* enough for card height */
}

/* each slide overlays each other, only active visible */
.mmg-testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.mmg-testimonial-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* card */
.mmg-testimonial-card {
    background-color: #FEFEFE;   /* white card */
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    padding: 18px 22px;
    display: flex;
    align-items: stretch;
    gap: 18px;
}

/* left photo */
.mmg-testimonial-photo-wrap {
    flex: 0 0 190px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #E5E7EB;
}

.mmg-testimonial-photo {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

/* right text area */
.mmg-testimonial-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* quote text */
.mmg-testimonial-text {
    margin: 4px 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #111827;
}

/* meta: name + role + brand logo */
.mmg-testimonial-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.mmg-testimonial-person {
    display: flex;
    flex-direction: column;
}

.mmg-testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
}

.mmg-testimonial-role {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #6B7280;
}

/* brand logo bottom-right of card */
.mmg-testimonial-brand {
    flex-shrink: 0;
}

.mmg-testimonial-brand-logo {
    display: block;
    max-width: 120px;       /* adjust to match logo */
    height: auto;
    object-fit: contain;
}

/* arrows */
.mmg-testimonials-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mmg-testimonials-arrow:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

/* --- Dots under the card --- */
.mmg-testimonials-dots {
    margin-top: 54px;                 /* space under card */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;                         /* spacing between dots */
}

/* base dot */
.mmg-testimonials-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;

    background-color: rgba(255, 255, 255, 0.28);  /* soft grey on dark bg */
    opacity: 0.5;

    transition:
        background-color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* active dot – brighter and slightly larger */
.mmg-testimonials-dot.is-active {
    background-color: #ffffff;
    opacity: 1;
    transform: scale(1.4);
}

/* optional: hover feedback */
.mmg-testimonials-dot:hover {
    opacity: 0.85;
}

/* =========
   TESTIMONIALS – RESPONSIVE
   ========= */

@media (max-width: 991.98px) {
    .mmg-testimonials-section {
        padding: 70px 0 80px;
    }

    .mmg-testimonials-heading {
        font-size: 22px;
        text-align: center;
    }

    .mmg-testimonials-slider {
        gap: 10px;
    }

    .mmg-testimonial-card {
        padding: 16px 18px;
    }
}

@media (max-width: 767.98px) {
    .mmg-testimonials-slider {
        flex-direction: row;
    }

    .mmg-testimonials-viewport {
        flex: 1 1 auto;
    }

    .mmg-testimonial-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mmg-testimonial-photo-wrap {
        width: 100%;
        flex: 0 0 auto;
    }

    .mmg-testimonial-photo {
        min-height: 200px;
    }

    .mmg-testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .mmg-testimonial-brand-logo {
        max-width: 110px;
    }
}

@media (max-width: 575.98px) {
    .mmg-testimonials-section {
        padding: 56px 0 70px;
    }

    .mmg-testimonial-card {
        padding: 14px 14px 18px;
    }
}
















/* =========
   READY TO GET MOMENTUM SECTION
   ========= */

.mmg-cta-section {
    background-color: #ffffff;
    padding: 110px 0 130px; /* big white space like screenshot */
    text-align: center;
}

.mmg-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* main heading */
.mmg-cta-heading {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.3;
    color: #222324;
}

.mmg-cta-heading span {
    font-weight: 600;          /* bolder “momentum?” */
}

/* sub text */
.mmg-cta-subtitle {
    margin: 14px auto 32px;
    max-width: 540px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6B7280;
}

/* CTA button */
.mmg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 28px;
    border-radius: 999px;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;

    background: linear-gradient(90deg, #00C48C, #19D9A4);
    box-shadow: 0 12px 28px rgba(0, 196, 140, 0.45);

    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;

    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        filter 0.18s ease-out;
}

.mmg-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0, 196, 140, 0.52);
    filter: brightness(1.03);
}

.mmg-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 196, 140, 0.4);
}

/* label text inside button */
.mmg-cta-btn-label {
    white-space: nowrap;
}

/* circular arrow area on the right side of button */
.mmg-cta-btn-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmg-cta-btn-icon i {
    font-size: 12px;
    color: #ffffff;
}

/* =========
   ANIMATION – fade up on scroll
   ========= */

/* initial state: slightly down + transparent */
.mmg-cta-animate {
    opacity: 0;
    transform: translateY(28px);
}

/* when in view */
.mmg-cta-animate.is-inview {
    animation: mmgFadeUp 0.8s ease-out forwards;
}

@keyframes mmgFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========
   RESPONSIVE
   ========= */

@media (max-width: 767.98px) {
    .mmg-cta-section {
        padding: 80px 0 90px;
        margin-top: 241px;
    }

    .mmg-cta-heading {
        font-size: 32px;
    }

    .mmg-cta-subtitle {
        font-size: 13px;
    }

    .mmg-cta-btn {
        padding: 12px 24px;
        font-size: 10px;
    }
}












/* =========
   FOOTER
   ========= */

.mmg-footer-section {
    background-color: #111214;
    color: #E5E7EB;
    padding: 56px 0 32px;
    font-family: 'Poppins', sans-serif;
}

/* DESKTOP / BASE LAYOUT
   --------------------- */
/* newsletter full width on top,
   then row: [logo | link columns],
   then bottom line */
.mmg-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.2fr);
    grid-template-areas:
        "newsletter newsletter"
        "brand      links"
        "bottom     bottom";
    column-gap: 72px;
    row-gap: 32px;
}

/* grid areas */
.mmg-footer-newsletter {
    grid-area: newsletter;
    max-width: 680px;
    margin: 0 auto 8px;
    text-align: center;
}

.mmg-footer-brand {
    grid-area: brand;
    align-self: flex-start;
}

.mmg-footer-links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));  /* Important | Services | Follow Us */
    column-gap: 48px;
    row-gap: 16px;
    align-self: flex-start;
}

.mmg-footer-bottom {
    grid-area: bottom;
    border-top: 1px solid #272A30;
    padding-top: 16px;
    font-size: 11px;
    color: #6B7280;
    text-align: center;
}

/* ===== Brand (logo) ===== */

.mmg-footer-logo-main {
    display: block;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.16em;
    color: #00C48C;
}

.mmg-footer-logo-sub {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: #D1D5DB;
}

/* ===== Newsletter ===== */

.mmg-footer-heading {
    margin: 0 0 22px;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.4;
    color: #F9FAFB;
}

.mmg-footer-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mmg-footer-input-wrap {
    flex: 0 0 320px;
    max-width: 100%;
}

.mmg-footer-input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #4B5563;
    background-color: transparent;
    font-size: 13px;
    color: #F9FAFB;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mmg-footer-input::placeholder {
    color: #6B7280;
}

.mmg-footer-input:focus {
    border-color: #00C48C;
    background-color: #15171A;
}

/* "SUBSCRIBE ↗" */
.mmg-footer-submit {
    border: none;
    background: none;
    padding: 0;
    color: #00C48C;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mmg-footer-submit-arrow {
    font-size: 12px;
}

.mmg-footer-submit:hover {
    color: #11d29c;
    transform: translateY(-1px);
}

/* ===== Columns (Important Links, Services, Follow Us) ===== */

.mmg-footer-column-title {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #E5E7EB;
}

.mmg-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmg-footer-list li + li {
    margin-top: 6px;
}

.mmg-footer-list a {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.18s ease;
}

.mmg-footer-list a:hover {
    color: #ffffff;
}

/* Follow Us (desktop text list) */
.mmg-footer-follow-list {
    margin-top: 4px;
}

/* Mobile icon row (hidden on desktop) */
.mmg-footer-social-icons {
    display: none;
    margin-top: 10px;
    gap: 6px;
}

.mmg-footer-social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #00C48C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00C48C;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mmg-footer-social-icons a:hover {
    background-color: #00C48C;
    color: #111214;
    transform: translateY(-1px);
}

/* Bottom text */
.mmg-footer-bottom p {
    margin: 0;
}

/* =========
   FOOTER – RESPONSIVE
   ========= */

@media (max-width: 991.98px) {
    /* Stack sections vertically on tablet & mobile */
    .mmg-footer-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "newsletter"
            "links"
            "bottom";
        row-gap: 28px;
    }

    .mmg-footer-newsletter {
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .mmg-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
    }

    .mmg-footer-heading {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .mmg-footer-section {
        padding: 36px 0 26px;
    }

    .mmg-footer-inner {
        row-gap: 20px;
    }

    /* In your mobile design, heading is hidden; only input visible */
    .mmg-footer-heading {
        display: none;
    }

    .mmg-footer-form {
        margin-top: 4px;
        justify-content: flex-start;
    }

    .mmg-footer-links {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .mmg-footer-column-title {
        margin-top: 10px;
        margin-bottom: 6px;
    }

    /* show icon row, hide follow text list on mobile */
    .mmg-footer-social-icons {
        display: flex;
        flex-wrap: wrap;
    }

    .mmg-footer-follow-list {
        display: none;
    }

    .mmg-footer-bottom {
        padding-top: 10px;
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .mmg-footer-input-wrap {
        flex: 1 1 100%;
    }

    .mmg-footer-form {
        align-items: flex-start;
    }
}