/* ===============================
   REMOVE HORIZONTAL SCROLL (GLOBAL)
================================ */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

:root {
    --bs-primary: #8a2be2;      /* Updated Purple - brighter and more vibrant */
    --bs-secondary: #ffd700;    /* Updated Gold - brighter yellow */
    --bs-dark: #4b0082;         /* Updated Deep Purple - indigo tone */
    --bs-light: #f9f5ff;        /* Updated Soft Light Background - slightly more purple tint */
    --bs-white: #ffffff;
    --bs-body: #d8cfe6;         /* Updated Light muted text - slightly warmer purple-gray */
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

/* ===============================
   MM GLOBAL NAVBAR – FINAL FIX
================================ */

.mm-header {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    z-index: 1030;
    position: sticky;
    top: 0;
}

/* ===============================
   CONTAINER FIX (HEIGHT ISSUE SOLVED)
================================ */
.mm-header .container-fluid {
    min-height: 70px;               /* FIXED HEIGHT */
    padding: 0 40px !important;
    display: flex;
    align-items: center;
}

/* ===============================
   LEFT LOGO
================================ */
.mm-nav-left {
    display: flex;
    align-items: center;
}

.mm-logo {
    height: 65px;                   /* CONTROL LOGO SIZE */
    width: auto;
    display: block;
}

/* ===============================
   RIGHT NAV
================================ */
.mm-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* ===============================
   NAV LINKS (DESKTOP)
================================ */
.navbar-nav {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #1f2937 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    margin: 0 4px;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link.active {
    color: #7c3aed !important;
    font-weight: 600;
}

/* UNDERLINE EFFECT */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* ===============================
   CTA BUTTON
================================ */
.mm-btn-quote {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #ffffff !important;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mm-btn-quote:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(124,58,237,0.3);
}

/* ===============================
   TOGGLER FIX
================================ */
.mm-toggler {
    border: none;
    font-size: 20px;
    color: var(--bs-primary) !important;
}

.mm-toggler:focus {
    box-shadow: none;
}

/* ===============================
   MOBILE MENU FINAL FIX
================================ */
@media (max-width: 991px) {

    /* Make navbar container clean */
    .mm-header .container-fluid {
        justify-content: space-between;
    }

    /* FULL WIDTH MOBILE MENU */
    .mm-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 0;
        padding: 22px 20px;
        border-radius: 0 0 16px 16px;
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    /* Nav list full width */
    .mm-header .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
    }

    .mm-header .nav-item {
        width: 100%;
    }

    /* Links clean & aligned */
    .mm-header .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        text-align: left;
    }

    /* REMOVE underline on mobile */
    .mm-header .nav-link::after {
        display: none !important;
    }

    /* CTA button full width */
    .mm-header .mm-btn-quote {
        width: 100%;
        text-align: center;
        margin-top: 18px;
        padding: 12px 0;
    }

    /* Toggler icon alignment */
    .mm-toggler {
        margin-left: auto;
    }
}


/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }



    /* ===============================
   FIX HERO / HEADER CAROUSEL
================================ */

.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item,
.header-carousel-item {
    height: 100vh;
}

.header-carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/***********************************
  MM GLOBAL – ABOUT SECTION THEME
************************************/

/************************************
  MM GLOBAL – ABOUT SECTION BASE
************************************/

.mm-about-section {
    position: relative;
    padding: 110px 0;
    background: #f8f7fb;
    overflow: hidden;
}

/* Decorative Background Shape */
.mm-about-shape {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(74, 31, 99, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    z-index: 0;
}

/************************************
  LEFT IMAGE BLOCK
************************************/

.mm-about-image-wrapper {
    position: relative;
    z-index: 2;
}

.mm-about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 31, 99, 0.18);
}

.mm-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mm-about-image:hover img {
    transform: scale(1.06);
}

/* Image Badge */
.mm-about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #4a1f63;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/************************************
  STATS BELOW IMAGE (NEW)
************************************/

.mm-about-stats-row {
    margin-top: 25px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    padding: 20px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(74, 31, 99, 0.18);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #4a1f63;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 13.5px;
    margin: 0;
    color: #555555;
}


/************************************
  RIGHT CONTENT
************************************/

.mm-about-content {
    position: relative;
    z-index: 2;
}

.mm-about-content h6 {
    color: #4a1f63;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mm-about-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.mm-about-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 22px;
}

/************************************
  INFO STRIP
************************************/

.mm-about-info-strip {
    margin: 28px 0;
}

.mm-about-info-strip div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mm-about-info-strip span {
    width: 26px;
    height: 26px;
    background: #4a1f63;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
}

.mm-about-info-strip p {
    margin: 0;
    font-size: 15px;
    color: #333333;
}

/************************************
  BUTTON
************************************/

.mm-about-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #4a1f63;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mm-about-btn:hover {
    background: #3a184e;
    color: #ffffff;
    transform: translateY(-2px);
}

/************************************
  WOW CUSTOM ANIMATIONS
************************************/

/* Slide UP (Left Image) */
.mm-slide-up {
    animation-name: mmSlideUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide LEFT (Right Content) */
.mm-slide-left {
    animation-name: mmSlideLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/************************************
  RESPONSIVE
************************************/

@media (max-width: 991px) {

    .mm-about-section {
        padding: 80px 0;
    }

    .mm-about-content h2 {
        font-size: 30px;
    }

    .mm-about-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .mm-about-stats-row {
        gap: 12px;
    }

    .stat-card {
        min-width: 120px;
        padding: 16px 18px;
    }

    .stat-card h3 {
        font-size: 22px;
    }
}



/* Section Background */
.about {
    background: #f9f8fc !important;
}

/* Section Heading */
.about h4.text-primary {
    color: #6f2dbd !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about h1 {
    color: #0f1b3d !important;
    font-weight: 700;
}

/* Paragraph */
.about p {
    color: #4a5568 !important;
    line-height: 1.8;
}

/* Left border paragraph accent */
.about .text.ps-4 {
    border-left: 4px solid #6f2dbd;
}

/* Check icons */
.about i.fa-check-circle {
    color: #f5c542 !important;
}

/* CTA Buttons */
.about .btn-primary {
    background: linear-gradient(135deg, #6f2dbd, #8b5cf6) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(111,45,189,0.3);
}

.about .btn-primary:hover {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

.about .btn-outline-primary {
    border: 2px solid #6f2dbd !important;
    color: #6f2dbd !important;
}

.about .btn-outline-primary:hover {
    background: #6f2dbd !important;
    color: #fff !important;
}

/* About Images */
.about-img img {
    border-radius: 18px !important;
    box-shadow: 0 20px 40px rgba(15,27,61,0.15);
}

/***********************************
  COUNTERS
************************************/

.about .bg-primary {
    background: linear-gradient(135deg, #6f2dbd, #8b5cf6) !important;
}

.about .bg-dark {
    background: #0f1b3d !important;
}

.about .counter-value {
    font-weight: 800;
}

.about .bg-primary p,
.about .bg-dark p {
    font-weight: 500;
    letter-spacing: 0.4px;
}

/***********************************
  RESPONSIVE TWEAKS
************************************/
@media (max-width: 768px) {
    .about h1 {
        font-size: 2rem;
    }

    .about .btn {
        margin-bottom: 12px;
    }
}



/* FORCE WHITE TEXT INSIDE COUNTER CARDS */
.about .bg-primary *,
.about .bg-dark * {
    color: #ffffff !important;
}

/* Optional: slightly softer white for paragraph text */
.about .bg-primary p,
.about .bg-dark p {
    opacity: 0.9;
}



/************************************
  MM GLOBAL – OPERATIONS SECTION
************************************/

.mm-operations-section {
    padding: 110px 0;
    background: #faf8fd;
}

/* Heading */
.mm-section-subtitle {
    color: #6b2e8a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mm-section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.mm-section-desc {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
}

/************************************
  OPERATION CARDS
************************************/

.mm-operation-cards {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mm-op-card {
    position: relative;
    padding: 34px 36px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #f3e9fb,
        #f8f2ff
    );
    box-shadow: 0 22px 55px rgba(107, 46, 138, 0.18);
    transition: all 0.4s ease;
}

.mm-op-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 75px rgba(107, 46, 138, 0.28);
}

/* Step Tag */
.mm-op-tag {
    position: absolute;
    top: -14px;
    left: 30px;
    background: #6b2e8a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* Card Text */
.mm-op-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #3a184e;
    margin-bottom: 12px;
}

.mm-op-card p {
    font-size: 15px;
    color: #4f4f4f;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* List */
.mm-op-card ul {
    padding-left: 18px;
    margin: 0;
}

.mm-op-card ul li {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 6px;
}

/************************************
  RIGHT IMAGE
************************************/

.mm-operations-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(107, 46, 138, 0.25);
}

.mm-operations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/************************************
  ANIMATIONS
************************************/

/* Slide UP */
.mm-slide-up {
    animation-name: mmSlideUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide RIGHT */
.mm-slide-right {
    animation-name: mmSlideRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideRight {
    from {
        opacity: 0;
        transform: translateX(90px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/************************************
  RESPONSIVE
************************************/

@media (max-width: 991px) {
    .mm-section-title {
        font-size: 32px;
    }

    .mm-operations-section {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .mm-section-title {
        font-size: 26px;
    }

    .mm-op-card {
        padding: 26px;
    }
}




/*** Testimonial Start ***/

.testimonial .testimonial-carousel {
    position: relative;
}

/* ===============================
   TESTIMONIAL CARD
================================ */

.testimonial-item {
    background: #ffffff;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Quote icon */
.testimonial-item .fa-quote-left {
    min-width: 42px;
    opacity: 0.9;
}


/* ===============================
   OWL DOTS (YOUR STYLE – UNCHANGED)
================================ */

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}


/* ===============================
   TESTIMONIAL SMALL ROUND IMAGE
================================ */

.testimonial-avatar {
    width: 52px;          /* SMALL SIZE */
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 2px;
    border: 2px solid var(--bs-primary);
    transition: transform 0.3s ease;
}

/* Subtle hover */
.testimonial-item:hover .testimonial-avatar {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 575px) {
    .testimonial-avatar {
        width: 46px;
        height: 46px;
    }
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 575px) {
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-item p {
        font-size: 15px;
    }
}

/*** Testimonial End ***/


/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/


.service-img img {
    height: 220px;
    object-fit: cover;
}





/* =====================================================
   FORCE OVERRIDE BOOTSTRAP PRIMARY COLOR
   MM GLOBAL BRANDING
===================================================== */

/* Text primary */
.text-primary,
a.text-primary,
.text-primary i,
.text-primary span {
    color: #6b2e8a !important; /* Logo Purple */
}




/* Background primary */
.bg-primary {
    background-color: #6b2e8a !important;
}

/* Border primary */
.border-primary {
    border-color: #6b2e8a !important;
}




.btn-primary {
    background-color: #6b2e8a !important;
    border-color: #6b2e8a !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #56236f !important; /* darker purple */
    border-color: #56236f !important;
}


.text-gold {
    color: #d4af37 !important;
}

.bg-gold {
    background-color: #d4af37 !important;
}




/*** Why Choose Us ***/
.why-choose {
    background: linear-gradient(
        120deg,
        rgba(107, 46, 138, 0.03),
        rgba(212, 175, 55, 0.05)
    );
}

.why-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Number Badge */
.why-box span {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(107, 46, 138, 0.12);
}

/* Title */
.why-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.why-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}

/* Offset Zig-Zag Effect */
.offset-box {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .offset-box {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .why-box {
        padding: 24px;
    }
    .why-box span {
        font-size: 36px;
    }
}



/*** Mission & Vision ***/
.mission-vision {
    background: linear-gradient(
        120deg,
        rgba(107, 46, 138, 0.04),
        rgba(212, 175, 55, 0.06)
    );
}

.mv-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.mv-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Icon */
.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

/* Headings */
.mv-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.mv-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 575px) {
    .mv-box {
        padding: 28px;
    }
}




/*** Service Page CTA ***/
.service-cta {
    padding: 40px 0;
}

.cta-box {
    background: linear-gradient(
        135deg,
        #6b2e8a,
        #4a1f63
    ); /* PURE PURPLE GRADIENT */
    border-radius: 18px;
    padding: 60px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.cta-box h2 {
    font-weight: 600;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    opacity: 0.95;
}

/* Button */
.cta-box .btn {
    font-weight: 500;
    color: #6b2e8a;
}

/* Responsive */
@media (max-width: 767px) {
    .cta-box {
        padding: 45px 20px;
    }
    .cta-box h2 {
        font-size: 24px;
    }
}


/************************************
  WHY CHOOSE MM GLOBAL
************************************/

.mm-why-section {
    padding: 110px 0;
    background: #faf8fd;
}

/* Left Content */
.mm-why-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 18px 0;
    color: #1f1f1f;
}

.mm-why-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Pill */
.mm-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #6b2e8a;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Checklist */
.mm-why-list {
    list-style: none;
    padding: 0;
}

.mm-why-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

/************************************
  RIGHT CARDS
************************************/

.mm-why-cards {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mm-why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(
        135deg,
        #3a184e 0%,
        #4b1f63 45%,
        #6b2e8a 100%
    );
    padding: 28px 30px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(75, 31, 99, 0.45);
    transition: all 0.45s ease;
}

.mm-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 75px rgba(107, 46, 138, 0.28);
}

/* Step Badge */
.mm-step {
    min-width: 42px;
    height: 42px;
    background: #6b2e8a;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mm-card-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.mm-card-body p {
    font-size: 14.8px;
    color: #e6d9f2;
    line-height: 1.6;
    margin: 0;
}


/************************************
  ANIMATIONS (WOW)
************************************/

.mm-slide-left {
    animation-name: mmSlideLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mm-slide-up {
    animation-name: mmSlideUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes mmSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/************************************
  RESPONSIVE
************************************/

@media (max-width: 991px) {
    .mm-why-content h2 {
        font-size: 32px;
    }

    .mm-why-section {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .mm-why-content h2 {
        font-size: 26px;
    }

    .mm-why-card {
        padding: 22px;
    }
}






/************************************
  PRODUCTS / SERVICES SECTION
************************************/

.service {
    background: #f9fafb;
}

/* Card Wrapper */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Card Body */
.service-card-body {
    padding: 22px 22px 26px;
}

/* Title */
.service-card-body h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1f2937;
}

/* Description */
.service-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 14px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(107, 46, 138, 0.12);
    color: #6b2e8a;
    font-weight: 500;
}

/************************************
  LOAD MORE BUTTON
************************************/

#loadMoreBtn {
    font-weight: 500;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
}

/************************************
  RESPONSIVE FIXES
************************************/

@media (max-width: 991px) {
    .service-card img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .service-card img {
        height: 180px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-body h5 {
        font-size: 17px;
    }
}




/* ===============================
   OWL CAROUSEL NAV – MOBILE FIX
================================ */

@media (max-width: 768px) {

    .header-carousel .owl-nav {
        position: absolute;
        bottom: 25px;              /* distance from bottom */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 14px;
        z-index: 20;
    }

    .header-carousel .owl-prev,
    .header-carousel .owl-next {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--bs-primary) !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}



/* ==============================
   MM GLOBAL FULL WIDTH HERO
================================ */

.mm-hero {
    position: relative;
    width: 100vw;                /* FULL SCREEN WIDTH */
    min-height: 420px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Page backgrounds */
.mm-about-hero {
    background-image: url("../img/h-2.webp");
}

.mm-products-hero {
    background-image: url("../img/h-3.webp");
}

.mm-contact-hero {
    background-image: url("../img/h-4.webp");
}

/* Overlay */
.mm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(63, 55, 67, 0.85),
        rgba(74, 31, 99, 0.55)
    );
    z-index: 1;
}

/* Content */
.mm-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 80px 0;
    max-width: 620px;
}

.mm-hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.mm-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 22px;
}

/* Breadcrumb */
.mm-breadcrumb {
    font-size: 14px;
}

.mm-breadcrumb a {
    color: #c9a6e3;
    text-decoration: none;
}

.mm-breadcrumb span {
    color: #ffffff;
    margin: 0 6px;
}


@media (max-width: 991px) {
    .mm-hero-content {
        padding: 60px 20px;
    }

    .mm-hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .mm-hero {
        min-height: 300px;
        background-position: center top;
    }

    .mm-hero-content h1 {
        font-size: 28px;
    }
}


/************************************
  FORCE HERO TEXT COLOR (OVERRIDE)
************************************/

/* Headings */
.mm-about-hero h1,
.mm-about-hero h2,
.mm-about-hero h3,
.mm-about-hero h4,
.mm-about-hero h5,
.mm-about-hero h6 {
    color: #ffffff !important;
}

/* Paragraph & small text */
.mm-about-hero p,
.mm-about-hero span,
.mm-about-hero li {
    color: #ffffff !important;
}

/* Breadcrumb */
.mm-about-hero .mm-breadcrumb,
.mm-about-hero .mm-breadcrumb span {
    color: #ffffff !important;
}

.mm-about-hero .mm-breadcrumb a {
    color: #e6c8ff !important;
    text-decoration: none;
}



/************************************
  SAFE CTA – NO CLASH GUARANTEED
************************************/

.mm-cta-safe {
    padding: 32px 16px;
    background: #4b1f63; /* solid purple */
}

.mm-cta-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.mm-cta-content h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.mm-cta-content p {
    margin: 0;
    font-size: 14.5px;
    color: #4b5563;
    max-width: 520px;
}

/* CTA BUTTON — COMPLETELY ISOLATED */
.mm-cta-action {
    padding: 12px 26px;
    border-radius: 999px;
    background: #4b1f63;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}

/* FORCE ALL STATES */
.mm-cta-action:hover,
.mm-cta-action:focus,
.mm-cta-action:active {
    background: #3a184e;
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none;
}

/************************************
  MOBILE RESPONSIVE
************************************/
@media (max-width: 768px) {
    .mm-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }

    .mm-cta-action {
        width: 100%;
        text-align: center;
    }
}