﻿:root {
    --primary-color: #3e7fb6;
    --bg-color: #ffffff;
    --bg-secondary: #f7f9fc;
    --text-color: #2d2d2d;
    --heading-color: #111827;
    --card-bg: #ffffff;
    --navbar-bg: rgba(255,255,255,.95);
    --footer-bg: #111827;
    --footer-text: #d1d5db;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}
/*=================================
            FONTS
=================================*/

@font-face {
    font-family: 'thmanyah';
    src: url('../Fonts/thmanyahsans-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'thmanyah';
    src: url('../Fonts/thmanyahsans-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'thmanyah';
    src: url('../Fonts/thmanyahsans-Bold.woff2') format('woff2');
    font-weight: 700;
}

* {
    font-family: 'thmanyah', sans-serif;
}

body.dark-mode {
    --bg-color: #101827;
    --bg-secondary: #1b2431;
    --text-color: #d1d5db;
    --heading-color: #ffffff;
    --card-bg: #1f2937;
    --navbar-bg: rgba(16,24,39,.95);
    --footer-bg: #0b1120;
    --footer-text: #d1d5db;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
}

body {
    font-family: "Segoe UI", sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    transition: background-color .3s ease, color .3s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

a {
    transition: .3s;
}

/*=================================
            NAVBAR
=================================*/

.mm-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 20px 0;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: .3s;
}

body.dark-mode .mm-navbar {
    background: rgba(20,20,20,.85);
    border-color: rgba(255,255,255,.08);
}

.navbar-brand img {
    height: 62px;
    transition: .3s;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    position: relative;
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 18px !important;
    border-radius: 50px;
    transition: .3s;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 6px;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        border-radius: 50px;
        transform: translateX(-50%);
        transition: .3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 60%;
    }

    .nav-link.active {
        color: var(--primary-color);
    }


/*==========================
        RIGHT ICONS
==========================*/

.mm-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mm-nav-icon,
.mm-dark-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    border-radius: 50%;
    color: var(--heading-color);
    font-size: 18px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
}

    .mm-nav-icon i,
    .mm-dark-btn i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1em;
        height: 1em;
        line-height: 1;
    }

    .mm-nav-icon:hover,
    .mm-dark-btn:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px);
    }

    .mm-nav-icon i,
    .mm-dark-btn i {
        display: block;
        line-height: 1;
    }

    .mm-nav-icon .bi-translate {
        transform: translateY(1px);
    }

/*==========================
        TOGGLER
==========================*/

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    font-size: 30px;
    color: var(--primary-color);
}


/*==========================
        MOBILE
==========================*/

@media (max-width:991px) {

    .mm-navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 55px;
    }

    .navbar-collapse {
        background: var(--card-bg);
        margin-top: 20px;
        padding: 25px;
        border-radius: 30px;
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 16px !important;
        border-radius: 15px;
    }

        .nav-link:hover {
            background: rgba(62,127,182,.08);
        }

    .navbar-collapse .mm-nav-actions {
        margin-top: 20px;
        justify-content: center;
    }
}

/* =========================
        FOOTER
========================= */

.mm-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 70px 0 25px;
}

.mm-footer-brand img {
    height: 60px;
    width: auto;
    margin-bottom: 22px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px;
}

.mm-footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 360px;
    margin: 0;
    color: var(--footer-text);
}

.mm-footer h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

    .mm-footer h5::after {
        content: "";
        width: 38px;
        height: 3px;
        background: var(--primary-color);
        position: absolute;
        left: 0;
        bottom: -9px;
        border-radius: 20px;
    }

.mm-footer-links,
.mm-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mm-footer-links li {
        margin-bottom: 12px;
    }

    .mm-footer-links a,
    .mm-footer-contact a {
        color: var(--footer-text);
        text-decoration: none;
        transition: .3s;
    }

        .mm-footer-links a:hover,
        .mm-footer-contact a:hover {
            color: var(--primary-color);
            padding-left: 4px;
        }

    .mm-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 15px;
        color: var(--footer-text);
    }

    .mm-footer-contact i {
        color: var(--primary-color);
        font-size: 18px;
        margin-top: 2px;
    }

.mm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 45px;
    padding-top: 22px;
    text-align: center;
}

    .mm-footer-bottom p {
        margin: 0;
        font-size: 14px;
        color: #9ca3af;
    }

/* Footer Responsive */

@media (max-width: 767px) {
    .mm-footer {
        text-align: center;
        padding-top: 55px;
    }

    .mm-footer-brand p {
        margin: 0 auto;
    }

    .mm-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mm-footer-contact li {
        justify-content: center;
    }
}
/*=================================
            HERO
=================================*/

.mm-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(62,127,182,.16), transparent 32%), radial-gradient(circle at bottom right, rgba(62,127,182,.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: background-color .4s ease, color .4s ease;
}

body.dark-mode .mm-hero {
    background: radial-gradient(circle at center, rgba(62,127,182,.12), transparent 35%), radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}

.mm-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    margin: auto;
    padding: 140px 15px 100px;
}

    .mm-hero-content::before {
        content: "";
        width: 360px;
        height: 360px;
        background: rgba(62,127,182,.16);
        filter: blur(120px);
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

.mm-hero-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 38px;
}

.mm-hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.mm-gradient-text {
    background: linear-gradient(135deg, #3e7fb6 0%, #7ab6eb 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s linear infinite;
    position: relative;
}

    .mm-gradient-text::after {
        content: "";
        color: #3e7fb6;
        -webkit-text-fill-color: #3e7fb6;
        animation: blinkCursor .8s infinite;
        margin-left: 5px;
    }

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes blinkCursor {
    50% {
        opacity: 0;
    }
}

.dark-logo {
    display: none;
}

body.dark-mode .light-logo {
    display: none;
}

body.dark-mode .dark-logo {
    display: inline-block;
}

.mm-hero h1 {
    color: var(--heading-color);
    font-size: 70px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.mm-hero p {
    color: var(--text-color);
    opacity: .86;
    font-size: 20px;
    line-height: 1.9;
    max-width: 850px;
    margin: auto auto 40px;
}

body.dark-mode .mm-hero h1 {
    color: #ffffff;
}

body.dark-mode .mm-hero p {
    color: rgba(255,255,255,.82);
}

.mm-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(62,127,182,.28);
    transition: .3s ease;
}

    .mm-btn:hover {
        background: #5b98cb;
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(62,127,182,.35);
    }


/*=================================
            STARS
=================================*/

#stars,
#stars2,
#stars3 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* Light mode dots */
#stars {
    width: 3px;
    height: 3px;
    box-shadow: 120px 200px rgba(30,90,160,.6), 300px 600px rgba(30,90,160,.6), 500px 900px rgba(30,90,160,.6), 1000px 400px rgba(30,90,160,.6), 1500px 700px rgba(62,127,182,.30), 1800px 1200px rgba(30,90,160,.6), 70px 1300px rgba(30,90,160,.6), 420px 1550px rgba(62,127,182,.25), 850px 1750px rgba(62,127,182,.28), 1250px 1500px rgba(62,127,182,.24), 1650px 300px rgba(62,127,182,.30), 1950px 980px rgba(62,127,182,.25);
    animation: animStar 50s linear infinite;
}

#stars2 {
    width: 4px;
    height: 4px;
    box-shadow: 200px 800px rgba(62,127,182,.25), 700px 500px rgba(62,127,182,.22), 1200px 1100px rgba(62,127,182,.24), 1700px 900px rgba(62,127,182,.20), 400px 1400px rgba(62,127,182,.23), 950px 1650px rgba(62,127,182,.20);
    animation: animStar 100s linear infinite;
}

#stars3 {
    width: 5px;
    height: 5px;
    box-shadow: 400px 700px rgba(62,127,182,.18), 900px 300px rgba(62,127,182,.18), 1400px 800px rgba(62,127,182,.16), 1800px 1500px rgba(62,127,182,.14);
    animation: animStar 150s linear infinite;
}

    /* Repeat stars for endless animation */
    #stars::after,
    #stars2::after,
    #stars3::after {
        content: " ";
        position: absolute;
        top: 2000px;
        background: transparent;
        box-shadow: inherit;
    }

#stars::after {
    width: 1px;
    height: 1px;
}

#stars2::after {
    width: 2px;
    height: 2px;
}

#stars3::after {
    width: 3px;
    height: 3px;
}

/* Dark mode white stars */
body.dark-mode #stars,
body.dark-mode #stars::after {
    box-shadow: 120px 200px #fff, 300px 600px #fff, 500px 900px #fff, 1000px 400px #fff, 1500px 700px #fff, 1800px 1200px #fff, 70px 1300px #fff, 420px 1550px #fff, 850px 1750px #fff, 1250px 1500px #fff, 1650px 300px #fff, 1950px 980px #fff;
}

body.dark-mode #stars2,
body.dark-mode #stars2::after {
    box-shadow: 200px 800px #fff, 700px 500px #fff, 1200px 1100px #fff, 1700px 900px #fff, 400px 1400px #fff, 950px 1650px #fff;
}

body.dark-mode #stars3,
body.dark-mode #stars3::after {
    box-shadow: 400px 700px #fff, 900px 300px #fff, 1400px 800px #fff, 1800px 1500px #fff;
}

/* Animation */
@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-2000px);
    }
}

/* Dark mode stars */
body.dark-mode #stars {
    box-shadow: 120px 200px #FFF, 300px 600px #FFF, 500px 900px #FFF, 1000px 400px #FFF, 1500px 700px #FFF, 1800px 1200px #FFF, 70px 1300px #FFF, 420px 1550px #FFF, 850px 1750px #FFF, 1250px 1500px #FFF, 1650px 300px #FFF, 1950px 980px #FFF;
}

body.dark-mode #stars2 {
    box-shadow: 200px 800px #FFF, 700px 500px #FFF, 1200px 1100px #FFF, 1700px 900px #FFF, 400px 1400px #FFF, 950px 1650px #FFF;
}

body.dark-mode #stars3 {
    box-shadow: 400px 700px #FFF, 900px 300px #FFF, 1400px 800px #FFF, 1800px 1500px #FFF;
}


/*=================================
        HERO RESPONSIVE
=================================*/

@media(max-width: 991px) {
    .mm-hero h1 {
        font-size: 50px;
    }

    .mm-hero p {
        font-size: 18px;
    }

    .mm-hero-logo {
        max-width: 220px;
    }
}

@media(max-width: 767px) {
    .mm-hero-content {
        padding: 120px 15px 80px;
    }

    .mm-hero-logo {
        max-width: 180px;
        margin-bottom: 30px;
    }

    .mm-hero h1 {
        font-size: 38px;
    }

    .mm-hero p {
        font-size: 16px;
        line-height: 1.8;
    }

    .mm-btn {
        padding: 14px 32px;
    }
}
/*=================================
        ABOUT PREVIEW
=================================*/

.mm-about-preview {
    padding: 120px 0;
    background: var(--bg-color);
}

.mm-section-tag {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mm-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.mm-about-preview p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 20px;
}

.mm-about-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 80px 50px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .mm-about-card::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(62,127,182,.1);
        border-radius: 50%;
        top: -80px;
        right: -80px;
    }

.mm-about-number {
    font-size: 90px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.mm-about-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.mm-about-card p {
    margin: 0;
}

@media(max-width:991px) {

    .mm-about-preview {
        padding: 90px 0;
    }

    .mm-section-title {
        font-size: 38px;
    }

    .mm-about-card {
        padding: 60px 40px;
    }

    .mm-about-number {
        font-size: 70px;
    }
}

@media(max-width:767px) {

    .mm-section-title {
        font-size: 32px;
    }

    .mm-about-card {
        padding: 50px 30px;
    }

    .mm-about-number {
        font-size: 60px;
    }
}
/*=================================
        SERVICES PREVIEW
=================================*/

.mm-services-preview {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.mm-section-desc {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: .85;
    font-size: 17px;
    line-height: 1.9;
}

.mm-service-card {
    height: 100%;
    background: var(--card-bg);
    padding: 45px 35px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

    .mm-service-card::before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        background: rgba(62,127,182,.10);
        border-radius: 50%;
        top: -45px;
        right: -45px;
        transition: .3s ease;
    }

    .mm-service-card:hover {
        transform: translateY(-10px);
    }

        .mm-service-card:hover::before {
            width: 180px;
            height: 180px;
        }

.mm-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(62,127,182,.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
}

.mm-service-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.mm-service-card p {
    color: var(--text-color);
    opacity: .85;
    line-height: 1.8;
    margin: 0;
}

@media(max-width: 991px) {
    .mm-services-preview {
        padding: 90px 0;
    }
}

@media(max-width: 767px) {
    .mm-services-preview {
        padding: 75px 0;
    }

    .mm-service-card {
        padding: 38px 28px;
    }
}
/*=================================
        WORKS PREVIEW
=================================*/

.mm-works-preview {
    padding: 120px 0;
    background: var(--bg-color);
}

.mm-work-card {
    height: 100%;
    background: var(--card-bg);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

    .mm-work-card:hover {
        transform: translateY(-10px);
    }

.mm-work-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .mm-work-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

.mm-work-card:hover .mm-work-img img {
    transform: scale(1.1);
}

.mm-work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .68);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s ease;
}

.mm-work-card:hover .mm-work-overlay {
    opacity: 1;
}

.mm-work-overlay span {
    color: #ffffff;
    font-weight: 700;
    padding: 12px 26px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50px;
}

.mm-work-content {
    padding: 28px 30px 32px;
}

    .mm-work-content h3 {
        font-size: 23px;
        font-weight: 800;
        color: var(--heading-color);
        margin-bottom: 8px;
    }

    .mm-work-content p {
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
    }

@media(max-width: 991px) {
    .mm-works-preview {
        padding: 90px 0;
    }
}

@media(max-width: 767px) {
    .mm-works-preview {
        padding: 75px 0;
    }

    .mm-work-img {
        height: 240px;
    }
}

.mm-work-category {
    margin-top: 50px;
}

.mm-work-category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--heading-color);
    position: relative;
    padding-left: 20px;
}

    .mm-work-category-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 6px;
        height: 36px;
        background: var(--primary-color);
        border-radius: 20px;
    }

.mm-work-card {
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .3s;
}

    .mm-work-card:hover {
        transform: translateY(-8px);
    }

.mm-work-img {
    height: 350px;
    overflow: hidden;
}

    .mm-work-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.mm-work-card:hover img {
    transform: scale(1.05);
}

.mm-work-content {
    padding: 25px;
}

    .mm-work-content h4 {
        font-size: 24px;
        font-weight: 700;
        color: var(--heading-color);
    }

    .mm-work-content p {
        margin: 0;
        color: var(--primary-color);
        font-weight: 600;
    }

@media(max-width:767px) {

    .mm-work-category-title {
        font-size: 26px;
    }

    .mm-work-img {
        height: 260px;
    }
}
/*=================================
            CLIENTS
=================================*/

.mm-clients {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.mm-client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

    .mm-client-logo img {
        max-height: 80px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        opacity: .7;
        transition: .3s;
    }

        .mm-client-logo img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

@media(max-width:991px) {

    .mm-clients {
        padding: 90px 0;
    }

    .mm-client-logo img {
        max-height: 60px;
    }
}

@media(max-width:767px) {

    .mm-clients {
        padding: 75px 0;
    }

    .mm-client-logo img {
        max-height: 50px;
    }
}

.mm-client-card {
    height: 140px;
    background: var(--card-bg);
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: .3s ease;
}

body.dark-mode .mm-client-page-card,
body.dark-mode .mm-client-card {
    background: #ffffff;
}

    body.dark-mode .mm-client-page-card img,
    body.dark-mode .mm-client-card img {
        opacity: 1;
        filter: none;
    }

.mm-client-card:hover {
    transform: translateY(-8px);
}

.mm-client-card img {
    max-height: 70px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: .3s ease;
}

.mm-client-card:hover img {
    transform: scale(1.05);
}
/*=================================
        CONTACT PREVIEW
=================================*/

.mm-contact-preview {
    padding: 120px 0;
    background: var(--bg-color);
}

.mm-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mm-contact-btn {
    margin-top: 50px;
}

.mm-contact-card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

    .mm-contact-card:hover {
        transform: translateY(-8px);
    }

    .mm-contact-card i {
        width: 62px;
        height: 62px;
        background: rgba(62,127,182,.12);
        color: var(--primary-color);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 22px;
    }

    .mm-contact-card h3 {
        font-size: 21px;
        font-weight: 800;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

    .mm-contact-card p {
        margin: 0;
        color: var(--text-color);
        line-height: 1.7;
    }

    .mm-contact-card a {
        color: var(--text-color);
        text-decoration: none;
    }

        .mm-contact-card a:hover {
            color: var(--primary-color);
        }

@media(max-width:991px) {
    .mm-contact-preview {
        padding: 90px 0;
    }
}

@media(max-width:767px) {
    .mm-contact-preview {
        padding: 75px 0;
    }

    .mm-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* PAGE HEADER */
.mm-page-header {
    padding: 140px 0 90px;
    background: var(--bg-secondary);
}

    .mm-page-header h1 {
        font-size: 64px;
        font-weight: 900;
        margin-bottom: 18px;
    }

    .mm-page-header p {
        font-size: 18px;
        color: var(--text-color);
        opacity: .8;
    }

/* ABOUT PAGE */
.mm-about-page,
.mm-vm-section,
.mm-objectives-section,
.mm-capabilities-section,
.mm-values-section {
    padding: 110px 0;
}

.mm-about-page {
    background: var(--bg-color);
}

.mm-vm-section,
.mm-capabilities-section {
    background: var(--bg-secondary);
}

.mm-objectives-section,
.mm-values-section {
    background: var(--bg-color);
}

.mm-about-page p,
.mm-info-card p,
.mm-objective-card p,
.mm-large-text {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 17px;
}

.mm-info-card,
.mm-objective-card,
.mm-value-card {
    height: 100%;
    background: var(--card-bg);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 40px 32px;
    transition: .3s ease;
}

    .mm-info-card:hover,
    .mm-objective-card:hover,
    .mm-value-card:hover {
        transform: translateY(-8px);
    }

    .mm-info-icon,
    .mm-objective-card i,
    .mm-value-card i {
        width: 65px;
        height: 65px;
        background: rgba(62,127,182,.12);
        color: var(--primary-color);
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-bottom: 24px;
    }

    .mm-info-card h3,
    .mm-objective-card h3,
    .mm-value-card h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 15px;
    }

.mm-large-text {
    font-size: 20px;
    margin: 0;
}

.mm-value-card {
    text-align: center;
    padding: 38px 20px;
}

    .mm-value-card i {
        margin: 0 auto 20px;
    }

    .mm-value-card h3 {
        font-size: 20px;
        margin: 0;
    }

@media(max-width: 991px) {
    .mm-page-header h1 {
        font-size: 48px;
    }

    .mm-about-page,
    .mm-vm-section,
    .mm-objectives-section,
    .mm-capabilities-section,
    .mm-values-section {
        padding: 85px 0;
    }
}

@media(max-width: 767px) {
    .mm-page-header {
        padding: 110px 0 70px;
    }

        .mm-page-header h1 {
            font-size: 38px;
        }
}
/*=================================
              CTA
=================================*/

.mm-cta-section {
    padding: 0 0 120px;
}

.mm-cta-box {
    background: linear-gradient(135deg,#3e7fb6 0%,#4b8bc1 100%);
    border-radius: 40px;
    padding: 70px;
    overflow: hidden;
    position: relative;
}

    .mm-cta-box::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -150px;
        right: -100px;
    }

    .mm-cta-box h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .mm-cta-box p {
        color: rgba(255,255,255,.9);
        font-size: 18px;
        line-height: 1.9;
        margin: 0;
    }

.mm-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: end;
    flex-wrap: wrap;
}

.mm-btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .mm-btn-outline:hover {
        background: #fff;
        color: #3e7fb6;
    }

@media (max-width:991px) {

    .mm-cta-box {
        padding: 50px;
        text-align: center;
    }

        .mm-cta-box h2 {
            font-size: 38px;
        }

    .mm-cta-buttons {
        justify-content: center;
    }
}

@media (max-width:767px) {

    .mm-cta-box {
        padding: 40px 30px;
    }

        .mm-cta-box h2 {
            font-size: 30px;
        }

    .mm-cta-buttons {
        flex-direction: column;
    }
}
/* SERVICES PAGE */
.mm-services-page {
    padding: 110px 0;
    background: var(--bg-color);
}

.mm-service-detail-card {
    height: 100%;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 45px 35px;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

    .mm-service-detail-card:hover {
        transform: translateY(-8px);
    }

    .mm-service-detail-card h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .mm-service-detail-card p {
        color: var(--text-color);
        line-height: 1.9;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .mm-service-detail-card ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mm-service-detail-card li {
        color: var(--text-color);
        margin-bottom: 13px;
        padding-left: 28px;
        position: relative;
        line-height: 1.6;
    }

        .mm-service-detail-card li::before {
            content: "\F26A";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--primary-color);
        }

@media(max-width: 991px) {
    .mm-services-page {
        padding: 85px 0;
    }
}
/*=================================
        WORKS PAGE
=================================*/

.mm-works-page {
    padding: 110px 0;
    background: var(--bg-color);
}

.mm-works-intro {
    max-width: 950px;
    margin: 0 auto 40px;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 17px;
}

.mm-work-filter {
    background: var(--card-bg);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 22px 30px;
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

    .mm-work-filter button {
        border: none;
        background: transparent;
        color: var(--heading-color);
        font-size: 20px;
        font-weight: 800;
        transition: .3s;
    }

        .mm-work-filter button:hover,
        .mm-work-filter button.active {
            color: var(--primary-color);
        }

    .mm-work-filter span {
        color: var(--heading-color);
        font-weight: 800;
    }

.mm-gallery-card {
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg);
    cursor: pointer;
    position: relative;
}

    .mm-gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s ease;
    }

    .mm-gallery-card:hover img {
        transform: scale(1.08);
    }

.mm-image-modal {
    background: transparent;
    border: none;
    position: relative;
}

    .mm-image-modal img {
        width: 100%;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 18px;
    }

.mm-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 12px;
}

@media(max-width: 991px) {
    .mm-works-page {
        padding: 85px 0;
    }

    .mm-gallery-card {
        height: 260px;
    }
}

@media(max-width: 767px) {
    .mm-work-filter {
        gap: 12px;
        padding: 20px;
    }

        .mm-work-filter button {
            font-size: 16px;
        }

    .mm-gallery-card {
        height: 230px;
    }
}
/*=================================
              CTA
=================================*/

.mm-cta-section {
    padding: 0 0 120px;
}

.mm-cta-box {
    background: linear-gradient(135deg,#3e7fb6 0%,#4b8bc1 100%);
    border-radius: 40px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

    .mm-cta-box::before {
        content: "";
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        position: absolute;
        top: -120px;
        right: -100px;
    }

    .mm-cta-box h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .mm-cta-box p {
        color: rgba(255,255,255,.9);
        font-size: 18px;
        line-height: 1.9;
    }

.mm-cta-buttons {
    display: flex;
    justify-content: end;
    gap: 15px;
    flex-wrap: wrap;
}

.mm-btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

    .mm-btn-outline:hover {
        background: #fff;
        color: var(--primary-color);
    }

@media (max-width:991px) {

    .mm-cta-box {
        text-align: center;
        padding: 50px;
    }

    .mm-cta-buttons {
        justify-content: center;
    }

    .mm-cta-box h2 {
        font-size: 38px;
    }
}

@media (max-width:767px) {

    .mm-cta-box {
        padding: 40px 30px;
    }

        .mm-cta-box h2 {
            font-size: 30px;
        }

    .mm-cta-buttons {
        flex-direction: column;
    }
}
/*=================================
        CLIENTS PAGE
=================================*/

.mm-clients-page {
    padding: 110px 0;
    background: var(--bg-color);
}

.mm-client-page-card {
    height: 180px;
    background: linear-gradient(145deg, var(--card-bg), var(--bg-secondary));
    border-radius: 34px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
}

    .mm-client-page-card::before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        background: rgba(62,127,182,.12);
        border-radius: 50%;
        top: -55px;
        right: -55px;
        transition: .35s ease;
    }

    .mm-client-page-card:hover {
        transform: translateY(-10px);
    }

        .mm-client-page-card:hover::before {
            width: 180px;
            height: 180px;
        }

    .mm-client-page-card img {
        max-height: 90px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
        position: relative;
        z-index: 2;
        transition: .35s ease;
    }

    .mm-client-page-card:hover img {
        transform: scale(1.06);
    }

@media(max-width: 991px) {
    .mm-clients-page {
        padding: 85px 0;
    }

    .mm-client-page-card {
        height: 150px;
        border-radius: 28px;
    }

        .mm-client-page-card img {
            max-height: 75px;
        }
}

@media(max-width: 767px) {
    .mm-client-page-card {
        height: 120px;
        padding: 24px;
    }

        .mm-client-page-card img {
            max-height: 58px;
        }
}
/*=================================
            TEAM PAGE
=================================*/

.mm-team-page {
    padding: 110px 0;
    background: var(--bg-color);
}

.mm-team-card {
    background: var(--card-bg);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 55px 40px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

    .mm-team-card:hover {
        transform: translateY(-8px);
    }

    .mm-team-card h2,
    .mm-team-card h3 {
        color: var(--primary-color);
        font-weight: 300;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .mm-team-card h2 {
        font-size: 48px;
    }

    .mm-team-card h3 {
        font-size: 40px;
    }

    .mm-team-card span {
        font-size: 22px;
        color: var(--text-color);
    }

.mm-team-ceo {
    border: 2px solid rgba(62,127,182,.15);
}

@media(max-width:991px) {

    .mm-team-page {
        padding: 85px 0;
    }

    .mm-team-card h2 {
        font-size: 36px;
    }

    .mm-team-card h3 {
        font-size: 30px;
    }

    .mm-team-card span {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .mm-team-card {
        padding: 40px 25px;
    }

        .mm-team-card h2 {
            font-size: 28px;
        }

        .mm-team-card h3 {
            font-size: 24px;
        }
}
/*=================================
        CONTACT PAGE
=================================*/

.mm-contact-page {
    padding: 110px 0;
    background: var(--bg-color);
}

.mm-contact-info-box {
    height: 100%;
    background: var(--card-bg);
    border-radius: 32px;
    padding: 45px 38px;
    box-shadow: var(--shadow);
}

    .mm-contact-info-box h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .mm-contact-info-box > p {
        color: var(--text-color);
        line-height: 1.8;
        margin-bottom: 35px;
    }

.mm-contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

    .mm-contact-info-item i {
        min-width: 58px;
        height: 58px;
        border-radius: 18px;
        background: rgba(62,127,182,.12);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
    }

    .mm-contact-info-item h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .mm-contact-info-item p {
        margin: 0;
        color: var(--text-color);
        line-height: 1.7;
    }

    .mm-contact-info-item a {
        color: var(--text-color);
        text-decoration: none;
    }

        .mm-contact-info-item a:hover {
            color: var(--primary-color);
        }

.mm-map-box {
    height: 100%;
    min-height: 620px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .mm-map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

@media(max-width: 991px) {
    .mm-contact-page {
        padding: 85px 0;
    }

    .mm-map-box {
        min-height: 450px;
    }
}

@media(max-width: 767px) {
    .mm-contact-info-box {
        padding: 35px 25px;
    }

    .mm-contact-info-item {
        flex-direction: column;
    }

    .mm-map-box {
        min-height: 360px;
    }
}
