
:root {
    --ssmc-green: #159447;
    --ssmc-green-dark: #08753a;
    --ssmc-green-light: #eaf8ef;
    --ssmc-green-soft: #f4fbf6;

    --ssmc-white: #ffffff;
    --ssmc-black: #14231a;
    --ssmc-text: #526158;
    --ssmc-muted: #7a8780;

    --ssmc-border: #e2eee6;
    --ssmc-shadow: 0 15px 45px rgba(20, 90, 48, 0.08);
    --ssmc-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--ssmc-white);
    color: var(--ssmc-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.ssmc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ssmc-hero {
    position: relative;
    min-height: 700px;
    padding:55px 0 90px;
    background:
        radial-gradient(circle at 85% 20%, rgba(21,148,71,.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
    overflow: hidden;
}

.ssmc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.ssmc-hero-content {
    max-width: 650px;
}

.ssmc-small-label,
.ssmc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ssmc-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ssmc-small-label i,
.ssmc-section-label i {
    font-size: 14px;
}

.ssmc-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    color: var(--ssmc-black);
    margin-bottom: 25px;
}

.ssmc-hero h1 span,
.ssmc-section-heading h2 span,
.ssmc-company-intro h3 span {
    color: var(--ssmc-green);
}

.ssmc-hero p {
    max-width: 610px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ssmc-text);
    margin-bottom: 32px;
}


.ssmc-hero-buttons,
.ssmc-cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ssmc-primary-btn,
.ssmc-outline-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.ssmc-primary-btn {
    color: #fff;
    background: var(--ssmc-green);
    box-shadow: 0 10px 25px rgba(21,148,71,.20);
}

.ssmc-primary-btn:hover {
    background: var(--ssmc-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(21,148,71,.25);
}

.ssmc-outline-btn {
    color: var(--ssmc-green-dark);
    border: 1px solid var(--ssmc-border);
    background: #fff;
}

.ssmc-outline-btn:hover {
    color: #fff;
    background: var(--ssmc-green);
    border-color: var(--ssmc-green);
    transform: translateY(-3px);
}


.ssmc-hero-points {
    display: flex;
    gap: 25px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.ssmc-hero-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ssmc-black);
    font-size: 13px;
    font-weight: 700;
}

.ssmc-hero-points i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ssmc-green-light);
    color: var(--ssmc-green);
}


.ssmc-hero-visual {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssmc-hero-circle {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: linear-gradient( 145deg, #43b36b, #3bdc19b5 );
    border: 1px solid #dcefe2;
    box-shadow:
        0 30px 80px rgba(21,148,71,.10),
        inset 0 0 50px rgba(21,148,71,.04);
}

.ssmc-family-visual {
    position: absolute;
    width: 280px;
    min-height: 300px;
    padding: 35px 25px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ssmc-border);
    box-shadow: 0 25px 60px rgba(20,90,48,.12);
    text-align: center;
}

.ssmc-family-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: var(--ssmc-green-light);
    color: var(--ssmc-green);
    font-size: 34px;
}

.ssmc-family-visual h3 {
    font-family: "Playfair Display", serif;
    color: var(--ssmc-black);
    font-size: 28px;
    margin-bottom: 7px;
}

.ssmc-family-visual p {
    color: var(--ssmc-muted);
    font-size: 13px;
}

.ssmc-growth-chart {
    height: 80px;
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 9px;
}

.ssmc-growth-chart span {
    width: 25px;
    min-height: 20px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(
        to top,
        var(--ssmc-green-dark),
        var(--ssmc-green)
    );
}

/* Floating cards */

.ssmc-floating-card {
    position: absolute;
    z-index: 4;
    min-width: 205px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--ssmc-border);
    border-radius: 15px;
    box-shadow: var(--ssmc-shadow);
}

.ssmc-floating-card > i {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--ssmc-green);
    background: var(--ssmc-green-light);
    font-size: 18px;
}

.ssmc-floating-card strong {
    display: block;
    color: var(--ssmc-black);
    font-size: 13px;
    margin-bottom: 3px;
}

.ssmc-floating-card span {
    color: var(--ssmc-muted);
    font-size: 11px;
}

.ssmc-card-top {
    top: 40px;
    right: 0;
}

.ssmc-card-bottom {
    bottom: 35px;
    left: 0;
}

/* Decorative glow */

.ssmc-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ssmc-glow-one {
    width: 300px;
    height: 300px;
    top: -130px;
    left: -100px;
    background: rgba(21,148,71,.05);
    filter: blur(20px);
}

.ssmc-glow-two {
    width: 250px;
    height: 250px;
    right: -100px;
    bottom: -100px;
    background: rgba(21,148,71,.06);
    filter: blur(20px);
}

.ssmc-trust-bar {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid var(--ssmc-border);
    border-bottom: 1px solid var(--ssmc-border);
}

.ssmc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ssmc-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px;
}

.ssmc-trust-item > i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--ssmc-green-light);
    color: var(--ssmc-green);
}

.ssmc-trust-item strong {
    display: block;
    color: var(--ssmc-black);
    font-size: 13px;
    margin-bottom: 3px;
}

.ssmc-trust-item span {
    color: var(--ssmc-muted);
    font-size: 11px;
}

.ssmc-section {
    padding: 100px 0;
    background: #fff;
}

.ssmc-company-section,
.ssmc-products-section {
    background: var(--ssmc-green-soft);
}

.ssmc-section-heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.ssmc-section-heading h2 {
    font-family: "Playfair Display", serif;
    color: var(--ssmc-black);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 17px;
}

.ssmc-section-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ssmc-text);
}


.ssmc-company-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.ssmc-company-image {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, #e7f7ec, #ffffff);
    border: 1px solid var(--ssmc-border);
}

.ssmc-building-card {
    width: 100%;
    max-width: 300px;
    padding: 38px 25px;
    text-align: center;
    border-radius: 25px;
    background: #fff;
    border: 1px solid var(--ssmc-border);
    box-shadow: var(--ssmc-shadow);
}

.ssmc-building-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: var(--ssmc-green);
    color: #fff;
    font-size: 30px;
}

.ssmc-building-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--ssmc-black);
    font-size: 25px;
}

.ssmc-building-card p {
    margin-top: 5px;
    font-size: 11px;
    color: var(--ssmc-green);
    font-weight: 800;
    letter-spacing: 1px;
}

.ssmc-building-lines {
    height: 1px;
    background: var(--ssmc-border);
    margin: 25px 0 18px;
}

.ssmc-building-card > span {
    font-size: 12px;
    color: var(--ssmc-muted);
}

.ssmc-company-intro > span {
    color: var(--ssmc-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ssmc-company-intro h3 {
    margin: 10px 0 17px;
    color: var(--ssmc-black);
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.2;
}

.ssmc-company-intro p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.ssmc-company-list {
    display: grid;
    gap: 14px;
    margin-bottom: 25px;
}

.ssmc-company-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ssmc-black);
    font-size: 14px;
    font-weight: 600;
}

.ssmc-company-list i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ssmc-green);
    background: var(--ssmc-green-light);
    font-size: 11px;
}

.ssmc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ssmc-green);
    font-weight: 800;
    font-size: 14px;
}

.ssmc-text-link:hover {
    color: var(--ssmc-green-dark);
}


.ssmc-mission-section {
    background: var(--ssmc-green);
}

.ssmc-heading-light .ssmc-section-label,
.ssmc-heading-light h2,
.ssmc-heading-light p {
    color: #fff;
}

.ssmc-heading-light .ssmc-section-label {
    opacity: .9;
}

.ssmc-heading-light h2 span {
    color: #c9f3d7;
}

.ssmc-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ssmc-mission-card {
    position: relative;
    padding: 35px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    overflow: hidden;
}

.ssmc-mission-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--ssmc-green-light);
    color: var(--ssmc-green);
    font-size: 22px;
    margin-bottom: 20px;
}

.ssmc-card-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #dcefe2;
    font-size: 42px;
    font-weight: 800;
}

.ssmc-mission-card h3 {
    color: var(--ssmc-black);
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin-bottom: 12px;
}

.ssmc-mission-card p {
    line-height: 1.75;
    font-size: 14px;
    margin-bottom: 20px;
}

.ssmc-mission-card ul {
    list-style: none;
    display: grid;
    gap: 11px;
}

.ssmc-mission-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ssmc-black);
    font-size: 13px;
    font-weight: 600;
}

.ssmc-mission-card li i {
    color: var(--ssmc-green);
}

.ssmc-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ssmc-sector-card {
    padding: 30px;
    border: 1px solid var(--ssmc-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(20,90,48,.05);
    transition: .3s ease;
}

.ssmc-sector-card:hover {
    transform: translateY(-7px);
    border-color: #bce3c9;
    box-shadow: 0 20px 45px rgba(20,90,48,.10);
}

.ssmc-sector-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.ssmc-sector-top span {
    color: #a1aea5;
    font-size: 12px;
    font-weight: 800;
    background: green;
    border-radius: 9px;
    padding: 7px;
}

.ssmc-sector-top i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--ssmc-green);
    background: var(--ssmc-green-light);
    font-size: 21px;
}

.ssmc-sector-card h3 {
    color: var(--ssmc-black);
    font-size: 21px;
    margin-bottom: 12px;
}

.ssmc-sector-card p {
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 22px;
}

.ssmc-sector-card a {
    color: var(--ssmc-green);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.ssmc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ssmc-product-card {
    position: relative;
    padding: 30px 25px;
    min-height: 270px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ssmc-border);
    overflow: hidden;
    transition: .3s ease;
}

.ssmc-product-card:hover {
    transform: translateY(-7px);
    border-color: #b9e2c6;
    box-shadow: var(--ssmc-shadow);
}

.ssmc-product-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--ssmc-green);
    background: var(--ssmc-green-light);
    font-size: 22px;
    margin-bottom: 20px;
}

.ssmc-product-card > span {
    position: absolute;
    right: 20px;
    top: 22px;
    color: #c5d2c9;
    font-weight: 800;
    font-size: 14px;
    background: green;
    border-radius: 9px;
    padding: 6px;
}

.ssmc-product-card h3 {
    color: var(--ssmc-black);
    font-size: 20px;
    margin-bottom: 10px;
}

.ssmc-product-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ssmc-product-card a {
    color: var(--ssmc-green);
    font-size: 12px;
    font-weight: 800;
}

.ssmc-benefits-wrapper {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 65px;
    align-items: center;
}

.ssmc-benefits-content h2 {
    color: var(--ssmc-black);
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.15;
    margin: 10px 0 18px;
}

.ssmc-benefits-content h2 span {
    color: var(--ssmc-green);
}

.ssmc-benefits-content > p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 28px;
}

.ssmc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ssmc-benefit-item {
    position: relative;
    padding: 25px;
    border: 1px solid var(--ssmc-border);
    border-radius: 18px;
    background: #fff;
    transition: .3s ease;
}

.ssmc-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ssmc-shadow);
}

.ssmc-benefit-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    font-weight: 800;
    color: #c1ccc5;
}

.ssmc-benefit-item > i {
    color: var(--ssmc-green);
    font-size: 20px;
    margin-bottom: 14px;
}

.ssmc-benefit-item h4 {
    color: var(--ssmc-black);
    font-size: 15px;
    margin-bottom: 8px;
}

.ssmc-benefit-item p {
    font-size: 12px;
    line-height: 1.65;
}


.ssmc-stats-section {
    padding: 70px 0;
    background: var(--ssmc-green);
}

.ssmc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ssmc-stat-item {
    text-align: center;
    color: #fff;
    padding: 15px;
}

.ssmc-stat-item > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 15px;
    background: rgba(255,255,255,.15);
    font-size: 20px;
}

.ssmc-stat-item strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.ssmc-stat-item span {
    font-size: 12px;
    opacity: .9;
}


.ssmc-cta-section {
    padding: 100px 0;
    background: var(--ssmc-green-soft);
}

.ssmc-cta-box {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    padding: 65px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        #08753a,
        #159447
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ssmc-cta-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.ssmc-cta-content .ssmc-section-label {
    color: #d5f5df;
}

.ssmc-cta-content h2 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.12;
    margin-bottom: 18px;
}

.ssmc-cta-content h2 span {
    color: #c8f3d5;
}

.ssmc-cta-content p {
    max-width: 590px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.ssmc-cta-box .ssmc-primary-btn {
    background: #fff;
    color: var(--ssmc-green-dark);
}

.ssmc-cta-box .ssmc-primary-btn:hover {
    background: #edf9f1;
}

.ssmc-cta-login {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.ssmc-cta-icon {
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    font-size: 70px;
    position: relative;
    z-index: 2;
}

.ssmc-cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.ssmc-cta-one {
    width: 350px;
    height: 350px;
    right: -120px;
    top: -180px;
}

.ssmc-cta-two {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -130px;
}


@media (max-width: 1100px) {

    .ssmc-hero-grid {
        gap: 40px;
    }

    .ssmc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ssmc-benefits-wrapper {
        gap: 40px;
    }
}

@media (max-width: 900px) {

    .ssmc-hero {
        padding: 80px 0;
    }

    .ssmc-hero-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-hero-content {
        max-width: 750px;
        margin: 0 auto;
        text-align: center;
    }

    .ssmc-hero-buttons,
    .ssmc-hero-points {
        justify-content: center;
    }

    .ssmc-hero-visual {
        min-height: 480px;
    }

    .ssmc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ssmc-company-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-company-image {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .ssmc-benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .ssmc-benefits-content {
        text-align: center;
    }

    .ssmc-benefits-content .ssmc-section-label {
        justify-content: center;
    }

    .ssmc-benefits-content .ssmc-primary-btn {
        margin: auto;
    }

    .ssmc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .ssmc-sector-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }
}

@media (max-width: 650px) {

    .ssmc-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ssmc-section {
        padding: 70px 0;
    }

    .ssmc-hero {
        padding: 65px 0;
    }

    .ssmc-hero h1 {
        font-size: 39px;
    }

    .ssmc-hero p {
        font-size: 14px;
    }

    .ssmc-hero-points {
        gap: 12px;
    }

    .ssmc-hero-points > div {
        font-size: 11px;
    }

    .ssmc-hero-visual {
        min-height: 390px;
    }

    .ssmc-hero-circle {
        width: 290px;
        height: 290px;
    }

    .ssmc-family-visual {
        width: 225px;
        min-height: 250px;
        padding: 25px 15px;
    }

    .ssmc-family-icon {
        width: 62px;
        height: 62px;
        font-size: 25px;
    }

    .ssmc-family-visual h3 {
        font-size: 23px;
    }

    .ssmc-floating-card {
        min-width: 160px;
        padding: 10px;
    }

    .ssmc-floating-card > i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .ssmc-floating-card strong {
        font-size: 11px;
    }

    .ssmc-floating-card span {
        font-size: 9px;
    }

    .ssmc-card-top {
        top: 10px;
        right: 0;
    }

    .ssmc-card-bottom {
        bottom: 10px;
        left: 0;
    }

    .ssmc-trust-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-trust-item {
        padding: 5px;
    }

    .ssmc-section-heading {
        margin-bottom: 38px;
    }

    .ssmc-section-heading h2 {
        font-size: 34px;
    }

    .ssmc-company-image {
        min-height: 330px;
        padding: 25px;
    }

    .ssmc-company-intro h3 {
        font-size: 30px;
    }

    .ssmc-mission-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-mission-card {
        padding: 27px 22px;
    }

    .ssmc-products-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ssmc-benefits-content h2 {
        font-size: 34px;
    }

    .ssmc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ssmc-stat-item strong {
        font-size: 28px;
    }

    .ssmc-stat-item span {
        font-size: 10px;
    }

    .ssmc-cta-section {
        padding: 70px 0;
    }

    .ssmc-cta-box {
        padding: 40px 25px;
        text-align: center;
        justify-content: center;
    }

    .ssmc-cta-content {
        width: 100%;
    }

    .ssmc-cta-content h2 {
        font-size: 35px;
    }

    .ssmc-cta-buttons {
        justify-content: center;
    }

    .ssmc-cta-icon {
        display: none;
    }
}

@media (max-width: 400px) {

    .ssmc-hero h1 {
        font-size: 34px;
    }

    .ssmc-hero-buttons {
        flex-direction: column;
    }

    .ssmc-primary-btn,
    .ssmc-outline-btn {
        width: 100%;
    }

    .ssmc-hero-points {
        flex-direction: column;
        align-items: center;
    }

    .ssmc-hero-visual {
        transform: scale(.9);
        margin-left: -5%;
        margin-right: -5%;
    }
}


.ssmc-footer {
    position: relative;
    background: #f7fcf8;
    border-top: 1px solid #dfeee4;
    color: #536158;
    padding-top: 70px;
}

/* Main Footer Grid */

.ssmc-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .9fr 1.15fr;
    gap: 45px;
    padding-bottom: 55px;
}


.ssmc-footer-about {
    max-width: 360px;
}


/*.ssmc-logo {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    margin-bottom: 20px;*/
/*}*/

.ssmc-logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #159447;
    color: #fff;
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(21, 148, 71, .18);
}

.ssmc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ssmc-logo-text strong {
    color: #14231a;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .5px;
}

.ssmc-logo-text small {
    margin-top: 5px;
    color: #159447;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ssmc-footer-about > p {
    font-size: 13px;
    line-height: 1.8;
    color: #68756d;
    margin-bottom: 22px;
}

.ssmc-social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ssmc-social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dcece2;
    color: #159447;
    font-size: 14px;
    transition: all .3s ease;
}

.ssmc-social-links a:hover {
    background: #159447;
    color: #fff;
    border-color: #159447;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(21, 148, 71, .18);
}


.ssmc-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ssmc-footer-column h4 {
    position: relative;
    color: #14231a;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.ssmc-footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 10px;
    background: #159447;
}

.ssmc-footer-column > a {
    color: #68756d;
    font-size: 15px;
    margin-bottom: 10px;
    transition: all .25s ease;
}

.ssmc-footer-column > a:hover {
    color: #159447;
    padding-left: 5px;
}


.ssmc-footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
}

.ssmc-footer-contact > div i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #e9f7ee;
    color: #159447;
    font-size: 13px;
}

.ssmc-footer-contact > div span {
    color: #68756d;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 7px;
    word-break: break-word;
}


.ssmc-footer-bottom {
    min-height: 75px;
    padding: 20px 0;
    border-top: 1px solid #dfeee4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ssmc-footer-bottom p {
    color: #7a8780;
    font-size: 11px;
    margin: 0;
}

.ssmc-footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ssmc-footer-bottom a {
    color: #68756d;
    font-size: 11px;
    transition: .25s ease;
}

.ssmc-footer-bottom a:hover {
    color: #159447;
}


@media (max-width: 1000px) {

    .ssmc-footer {
        padding-top: 55px;
    }

    .ssmc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 35px;
    }

    .ssmc-footer-about {
        max-width: 450px;
    }
}

@media (max-width: 600px) {

    .ssmc-footer {
        padding-top: 50px;
    }

    .ssmc-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .ssmc-footer-about {
        max-width: 100%;
    }

    .ssmc-footer-column h4 {
        margin-bottom: 18px;
    }

    .ssmc-footer-column > a {
        margin-bottom: 11px;
    }

    .ssmc-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .ssmc-footer-bottom > div {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}


@media (max-width: 380px) {

    .ssmc-logo-mark {
        width: 43px;
        height: 43px;
        font-size: 17px;
    }

    .ssmc-logo-text strong {
        font-size: 20px;
    }

    .ssmc-footer-about > p {
        font-size: 12px;
    }

    .ssmc-social-links a {
        width: 35px;
        height: 35px;
    }
}


.ssmc-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e7efe9;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 3px 18px rgba(20, 80, 45, 0.05);
}

.ssmc-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


.ssmc-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:12px;
}


.ssmc-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.ssmc-logo-mark {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #159447,
        #08753a
    );
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 7px 18px rgba(21, 148, 71, 0.20);
    transition: all 0.3s ease;
}

.ssmc-logo:hover .ssmc-logo-mark {
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 9px 22px rgba(21, 148, 71, 0.28);
}

.ssmc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.ssmc-logo-text strong {
    color: #14231a;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.ssmc-logo-text small {
    margin-top: 5px;
    color: #159447;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ssmc-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
}

.ssmc-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 8px;
    color: #526158;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ssmc-nav-link:hover {
    color: #159447;
    background: #f2faf5;
}

.ssmc-nav-link.active {
    color: #159447;
    background: #edf8f1;
}

.ssmc-nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #159447;
    transform: translateX(-50%);
}


.ssmc-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}


.ssmc-login-btn {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #159447;
    background: #ffffff;
    border: 1px solid #cfe4d5;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ssmc-login-btn:hover {
    color: #ffffff;
    background: #159447;
    border-color: #159447;
}


.ssmc-register-btn {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    background: #159447;
    border: 1px solid #159447;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(21, 148, 71, 0.17);
    transition: all 0.3s ease;
}

.ssmc-register-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ssmc-register-btn:hover {
    color: #ffffff;
    background: #08753a;
    border-color: #08753a;
    transform: translateY(-2px);
    box-shadow: 0 10px 23px rgba(21, 148, 71, 0.24);
}

.ssmc-register-btn:hover i {
    transform: translateX(3px);
}


.ssmc-user-box {
    position: relative;
}

.ssmc-user-button {
    min-height: 43px;
    padding: 4px 11px 4px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dcebe1;
    border-radius: 10px;
    background: #ffffff;
    color: #26352c;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssmc-user-button:hover {
    border-color: #b9dbc4;
    background: #f7fcf8;
}

.ssmc-user-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #159447;
    background: #eaf8ef;
    font-size: 14px;
}

.ssmc-user-button > i {
    color: #7b8b82;
    font-size: 10px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.ssmc-user-box:hover .ssmc-user-button > i {
    transform: rotate(180deg);
}


.ssmc-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 205px;
    padding: 7px;
    background: #ffffff;
    border: 1px solid #e2eee6;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(20, 65, 40, 0.13);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.ssmc-user-box:hover .ssmc-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ssmc-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    color: #526158;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.ssmc-user-dropdown a i {
    width: 18px;
    color: #159447;
    font-size: 13px;
    text-align: center;
}

.ssmc-user-dropdown a:hover {
    color: #159447;
    background: #f0faf4;
    padding-left: 15px;
}

.ssmc-user-dropdown .ssmc-logout {
    margin-top: 5px;
    border-top: 1px solid #edf2ef;
    border-radius: 0 0 8px 8px;
    color: #d94b4b;
}

.ssmc-user-dropdown .ssmc-logout i {
    color: #d94b4b;
}

.ssmc-user-dropdown .ssmc-logout:hover {
    color: #c93636;
    background: #fff4f4;
}


.ssmc-menu-button {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcebe1;
    border-radius: 9px;
    background: #ffffff;
    color: #159447;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssmc-menu-button:hover {
    color: #ffffff;
    background: #159447;
    border-color: #159447;
}


@media (max-width: 1100px) {

    .ssmc-header-inner {
        gap: 15px;
    }

    .ssmc-navigation {
        gap: 2px;
    }

    .ssmc-nav-link {
        padding: 0 9px;
        font-size: 13px;
    }

    .ssmc-login-btn,
    .ssmc-register-btn {
        padding-left: 13px;
        padding-right: 13px;
    }
}


@media (max-width: 900px) {

    .ssmc-header-inner {
        min-height: 70px;
    }

    .ssmc-navigation {
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        padding: 10px;
        background: #ffffff;
        border: 1px solid #e1eee5;
        border-radius: 13px;
        box-shadow: 0 15px 35px rgba(20, 65, 40, 0.12);
    }

    .ssmc-navigation.active {
        display: flex;
    }

    .ssmc-nav-link {
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        justify-content: flex-start;
    }

    .ssmc-nav-link.active::after {
        left: auto;
        right: 14px;
        bottom: 50%;
        transform: translateY(50%);
    }

    .ssmc-menu-button {
        display: inline-flex;
    }

    .ssmc-header-actions {
        margin-left: auto;
    }
}


@media (max-width: 600px) {

    .ssmc-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ssmc-header-inner {
        min-height: 66px;
    }

    .ssmc-logo-mark {
        width: 39px;
        height: 39px;
        border-radius: 10px;
        font-size: 16px;
    }

    .ssmc-logo-text strong {
        font-size: 20px;
    }

    .ssmc-logo-text small {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .ssmc-login-btn,
    .ssmc-register-btn {
        display: none;
    }

    .ssmc-user-button {
        width: 42px;
        height: 42px;
        padding: 4px;
        justify-content: center;
    }

    .ssmc-user-button > span:not(.ssmc-user-icon),
    .ssmc-user-button > i {
        display: none;
    }

    .ssmc-user-icon {
        width: 32px;
        height: 32px;
    }

    .ssmc-user-dropdown {
        right: 0;
        width: 190px;
    }

    .ssmc-navigation {
        top: 66px;
        left: 10px;
        right: 10px;
    }

    .ssmc-menu-button {
        width: 40px;
        height: 40px;
    }
}


@media (max-width: 380px) {

    .ssmc-logo {
        gap: 8px;
    }

    .ssmc-logo-mark {
        width: 36px;
        height: 36px;
    }

    .ssmc-logo-text strong {
        font-size: 18px;
    }

    .ssmc-logo-text small {
        font-size: 6px;
    }

    .ssmc-header-actions {
        gap: 6px;
    }
}

.section-m {
    width: 100%;
    padding: 70px 20px;
    background: #f7faf8;
}

.section-m__container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


.section-m__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.section-m__subtitle {
    display: inline-block;
    margin-bottom: 7px;
    color: #279447;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-m__header h2 {
    margin: 0;
    color: #222;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.section-m__view-all {
    color: #fff;
    background: #188743;
    padding: 11px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.section-m__view-all:hover {
    background: #116c34;
}


.section-m__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e9e5;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}

.product-card__image {
    position: relative;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #eefbf0, #ffffff);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}
.product-card__discount {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    color: #fff;
    background: #ff211b;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.product-card__content h3 {
    margin: 0;
    color: #222;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.product-card__weight {
    margin: 4px 0 13px;
    color: #777;
    font-size: 13px;
}

.product-card__price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 17px;
}

.product-card__price span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
}

.product-card__price .mrp {
    color: #777;
}

.product-card__price .dp {
    color: #e21c18;
}

.product-card__price .bv {
    color: #238b45;
}

.product-card__price strong {
    font-size: 17px;
}


.product-card__bottom {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;
}

.quantity {
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
    border: 1px solid #d9dedb;
    border-radius: 6px;
    background: #fff;
}

.quantity button {
    width: 30px;
    height: 100%;
    padding: 0;
    border: 0;
    color: #555;
    background: #f4f6f5;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease;
}

.quantity button:hover {
    color: #fff;
    background: #188743;
}

.quantity span {
    min-width: 28px;
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.add-cart {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: #168442;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-cart:hover {
    background: #0e6832;
}


@media (max-width: 1100px) {

    .section-m {
        padding: 55px 18px;
    }

    .section-m__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__content {
        padding: 15px;
    }

    .product-card__content h3 {
        font-size: 17px;
    }

    .quantity button {
        width: 27px;
    }

    .quantity span {
        min-width: 24px;
    }

    .add-cart {
        font-size: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 850px) {

    .section-m__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-m__header h2 {
        font-size: 29px;
    }

    .product-card__image {
        height: 230px;
    }
}

@media (max-width: 600px) {

    .section-m {
        padding: 40px 14px;
    }

    .section-m__header {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 25px;
    }

    .section-m__header h2 {
        font-size: 26px;
    }

    .section-m__view-all {
        padding: 9px 17px;
    }

    .section-m__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card__image {
        height: 250px;
    }

    .product-card__content {
        padding: 17px;
    }

    .product-card__content h3 {
        font-size: 18px;
    }

    .add-cart {
        font-size: 13px;
    }
}

@media (max-width: 380px) {

    .section-m {
        padding: 30px 10px;
    }

    .product-card__image {
        height: 220px;
    }

    .product-card__content {
        padding: 14px;
    }

    .product-card__bottom {
        gap: 6px;
    }

    .quantity button {
        width: 26px;
    }

    .quantity span {
        min-width: 22px;
    }

    .add-cart {
        padding: 0 7px;
        font-size: 11px;
    }
}




















