/* ===== MWC Services Section ===== */
.mwc-services-section {
    background: #f8faf9;
    padding: 72px 0;
    font-family: 'Inter', sans-serif
}

.mwc-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 52px;
    gap: 32px;
    flex-wrap: wrap
}

.mwc-services-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #114A43;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.mwc-services-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #114A43;
    display: inline-block
}

.mwc-services-title {
    font-family: 'Onest', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #114a43;
    line-height: 1.2;
    margin: 0;
    max-width: 420px
}

.mwc-services-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 380px;
    margin: auto 0;
    padding-top: 32px
}

.mwc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.mwc-service-card {
    position: relative;
    background: #fefefe;
    border: 1.5px solid #e2ede9;
    border-radius: 16px;
    padding: 28px 24px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .35s ease, transform .3s ease;
    z-index: 0;
    border-bottom: 5px solid green;
}

.mwc-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #114A43;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    border-radius: 14px
}

.mwc-service-card:hover::before {
    transform: translateY(0)
}

.mwc-service-card:hover {
    border-color: #114A43;
    transform: translateY(-4px)
}

.mwc-service-card>* {
    position: relative;
    z-index: 1
}

.mwc-service-icon {
    width: 64px;
    height: 64px;
    background: var(--m-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .35s ease
}

.mwc-service-card:hover .mwc-service-icon {
    background: rgba(255, 255, 255, .15)
}

.mwc-service-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    color:#fefefe;
    transition: filter .35s ease
}

.mwc-service-card:hover .mwc-service-icon img {
    filter: brightness(0) invert(1)
}

.mwc-service-card h3 {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0e0e0e;
    margin: 0 0 8px;
    transition: color .35s ease
}

.mwc-service-card:hover h3 {
    color: #fefefe
}

.mwc-service-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 18px;
    transition: color .35s ease
}

.mwc-service-card:hover p {
    color: rgba(254, 254, 254, .8)
}

.mwc-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #114A43;
    background: transparent;
    border: 1.5px solid #114A43;
    border-radius: 8px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all .35s ease;
    font-family: 'Inter', sans-serif
}

.mwc-service-btn a{
    color:#114a43;
}

.mwc-service-card:hover .mwc-service-btn {
    background: #fefefe;
    border-color: #fefefe;
    color: #114A43
}

@media(max-width:768px) {
    .mwc-services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mwc-services-header {
        flex-direction: column
    }
}

@media(max-width:480px) {
    .mwc-services-grid {
        grid-template-columns: 1fr
    }
}



/* ===== MWC Tools Section ===== */
.mwc-tools-section {
    background: #0d2b27;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden
}

.mwc-tools-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(17, 74, 67, .4) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(17, 74, 67, .3) 0%, transparent 50%);
    z-index: 0
}

.mwc-tools-inner {
    position: relative;
    z-index: 1
}

.mwc-tools-heading {
    font-family: 'Onest', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 600;
    color: #fefefe;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 56px
}

.mwc-tools-heading span {
    color: #01cd38;
    font-weight: 700
}

.mwc-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.mwc-tool-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 36px 20px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
    cursor: pointer;
    z-index: 0
}

.mwc-tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #114A43;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    border-radius: 20px
}

.mwc-tool-card:hover::before {
    transform: translateY(0)
}

.mwc-tool-card:hover {
    transform: translateY(-6px);
    border-color: #114A43
}

.mwc-tool-card>* {
    position: relative;
    z-index: 1
}

.mwc-tool-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid #01cd38;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: rgba(17, 74, 67, .4);
    transition: border-color .35s ease, background .35s ease
}

.mwc-tool-card:hover .mwc-tool-icon-wrap {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1)
}

.mwc-tool-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
   filter: invert(59%) sepia(98%) saturate(400%) hue-rotate(95deg) brightness(1.1);
    transition: filter .35s ease
}

.mwc-tool-card:hover .mwc-tool-icon-wrap img {
    filter: brightness(0) invert(1)
}

.mwc-tool-title {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fefefe;
    margin: 0 0 10px;
    transition: color .35s ease
}

.mwc-tool-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    margin: 0 0 22px;
    min-height: 58px;
    transition: color .35s ease
}

.mwc-tool-card:hover .mwc-tool-desc {
    color: rgba(255, 255, 255, .8)
}

.mwc-tool-btn {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fefefe;
    background: transparent;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all .3s ease;
    font-family: 'Inter', sans-serif
}

.mwc-tool-card:hover .mwc-tool-btn {
    background: #fefefe;
    border-color: #fefefe;
    color: #114A43
}

@media(max-width:900px) {
    .mwc-tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:500px) {
    .mwc-tools-grid {
        grid-template-columns: 1fr
    }
}