.smm-hero-section {
    width: 100%;
    padding: 30px;
    overflow: hidden;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    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);
}

.why-ssm-section {
    text-align: center;
}

.why-smm-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-ssm-container p {
    color: var(--gray);
    font-size: 1rem;
}

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

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

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

.smm-subcard .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 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}


/* offer section */
.smm-offer-section {
    text-align: center;
}

.smm-offer-section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.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-title {
    color: #3f3636;
    font-weight: 600;
    margin-bottom: 12px;
    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;
    }

    .why-smm-container,
    .smm-offer-section-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .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;
    }

    .why-smm-subcard .why-smm-subcard-content p {
        font-size: 0.95rem;
    }
}

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

    .why-ssm-section {
        padding: 30px;
    }

    .smm-offer-section{
        padding: 30px;
    }
    
    .smm-hero-section-text {
        font-size: 0.95rem;
    }

    .why-smm-container,
    .smm-offer-section-container {
        flex-direction: column;
        align-items: center;
    }

    .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;
    }

    .smm-offer-card-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .smm-offer-card-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

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

    .why-smm-subcard .why-smm-subcard-content p {
        font-size: 0.95rem;
    }
}

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

    .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;
    }

    .smm-offer-card-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .smm-offer-card-description {
        font-size: 0.9rem;
    }

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

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

    .why-smm-subcard .why-smm-subcard-content p {
        font-size: 0.9rem;
    }

    /* .smm-hero-section {
      padding: 15px 10px;
      flex-direction: column;
      text-align: center;
    } */

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

    /* .background-shape {
      width: 100%;
      height: 200px;
      top: 0;
      left: 0;
      transform: rotate(180deg);
    } */

    .smm-hero-section-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}