.smm-hero-section {
    /* min-height: 70vh; */
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    overflow: hidden;
    align-items: center;
    display: flex;
    position: relative;
}

.smm-hero-section-text {
    font-size: 1rem;
    color: var(--gray);
}

.main-illustration-wrapper {
    flex: 1;
    position: relative;
    z-index: 4;
}

.main-illustration {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 6px 10px rgba(245, 166, 35, 0.15));
    transform: rotate(180deg);
}

.background-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

.background-shape path {
    fill: url(#orangeGradient);
}

/* about section */
.about-ssm-section p{
    font-size: 1rem;
    color: var(--gray);
}

.about-smm-subcard {
    background: #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-smm-subcard .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-smm-subcard .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-smm-subcard .about-smm-subcard-content p {
    margin: 0;
    font-weight: 600;
    color: var(--gray);
    font-size: 1rem;
    text-align: start;
}

/* why choose us section */
.why-smm-subcard {
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-smm-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-smm-subcard .icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.why-smm-subcard .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-smm-subcard .why-smm-subcard-content p {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    text-align: start;
}

/* offer section */
.smm-offer-card {
    flex: 1 1 30%;
    padding: 40px 30px;
    margin: 10px;
    position: relative;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 15%);
}

.smm-offer-card-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.smm-offer-card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f8c8a0;
    z-index: 0;
}

.smm-offer-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.smm-offer-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .main-illustration-wrapper {
        margin-top: 30px;
    }

    .main-illustration {
        width: 100%;
        height: auto;
    }

    .smm-hero-section{
        text-align: start;
    }

    .smm-offer-card {
        flex: 1 1 45%;
        padding: 30px 20px;
    }

    .why-smm-subcard {
        padding: 10px 14px;
        gap: 10px;
    }

    .why-smm-subcard .icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 992px) {
    .main-illustration {
        width: 100%;
        height: auto;
    }

    .smm-hero-section{
        text-align: center;
    }
    .smm-offer-section{
        padding: 30px;
    }

    .smm-offer-card {
        flex: 1 1 100%;
        padding: 25px 20px;
        text-align: center;
    }

    .smm-offer-card-icon img {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .smm-offer-card-number {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .why-smm-subcard {
        padding: 12px 16px;
        gap: 12px;
        width: 100%;
    }

    .why-smm-subcard .icon {
        width: 28px;
        height: 28px;
    }

    .background-shape {
        display: none;
    }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
    .smm-offer-card {
        padding: 20px 15px;
        text-align: center;
    }

    .smm-offer-section{
        padding: 30px;
    }
    .smm-offer-card-number {
        font-size: 1.8rem;
        top: 15px;
        right: 15px;
    }

    .smm-offer-card-icon img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .why-smm-subcard {
        padding: 10px 12px;
        gap: 10px;
        flex-direction: row;
    }

    .why-smm-subcard .icon {
        width: 24px;
        height: 24px;
    }

    .smm-hero-section {
      text-align: center;
    }

    .main-illustration {
        width: 100%;
        height: auto;
    }

    .background-shape {
       display: none;
    }
}