.emailmarketing-hero-section {
    width: 100%;
    padding: 20px 20px;
    overflow: hidden;
    align-items: center;
    display: flex;
    position: relative;
}

.emailmarketing-hero-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
}

.emailmarketing-hero-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 100%);
    border-radius: 50%;
}

.emailmarketing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* why section */
.emailmarketing-why-section {
    text-align: center;
}

.emailmarketing-why-section p{
    font-size: 1rem;
    color: var(--gray);
}
.emailmarketing-why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 150, 255, 0.15);
}

.emailmarketing-why-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.08), rgba(255, 159, 67, 0.06));
    transform: rotate(25deg);
    z-index: 0;
}

.emailmarketing-why-card .icon {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #0096ff;
    background: rgba(0, 150, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.emailmarketing-why-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.emailmarketing-why-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.emailmarketing-why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 150, 255, 0.25);
    border-color: var(--secondary);
}
/* services section */
.emailmarketing-services-section {
    text-align: center;
}

.emailmarketing-service-card {
    background: rgb(249, 253, 255);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.2);
}

    /* .emailmarketing-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    } */

.emailmarketing-service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.emailmarketing-service-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.emailmarketing-service-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* process section */
.emailmarketing-process-section {
    text-align: center;
}

.emailmarketing-process-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    /* border: 1px solid var(--primary); */
    box-shadow: 0 4px 10px rgba(39, 176, 229, 0.6);
    position: relative;
}

.emailmarketing-process-card .step-number {
    position: absolute;
    top: -10px;
    left: -15px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.3);
}

.emailmarketing-process-card .icon {
    font-size: 24px;
    color: var(--primary);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.emailmarketing-process-card .icon img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    display: block;
    filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(-15deg) brightness(95%) contrast(105%);
}


.emailmarketing-process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.emailmarketing-process-card p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .emailmarketing-hero-section {
        padding: 50px 20px;
        text-align: start;
    }
}

@media (max-width: 992px) {
    .emailmarketing-hero-section {
        text-align: center;
        padding: 50px 20px;
    }
}

@media (max-width: 576px) {
    .emailmarketing-hero-section {
        text-align: center;
        padding: 50px 20px;
    }

    .main-illustration {
        max-width: 400px;
    }

    .emailmarketing-process-card {
        margin: 10px;
    }

    .emailmarketing-hero-section::after {
        width: 280px;
        height: 280px;
    }
}