.mongodb-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
}

.mongodb-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 70%);
    border-radius: 50%;
    z-index: 0;
}

.mongodb-hero-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.mongodb-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-illustration {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}


/* about section */
.mongodb-about-section {
    text-align: center;
}

.mongodb-about-section p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0 auto;
}

.mongodb-feature-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid var(--primary);
    padding: 15px;
    text-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mongodb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.mongodb-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #27b0e5, #73daff);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mongodb-feature-icon i {
    color: white;
    font-size: 20px;
}

.mongodb-feature-text h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

.mongodb-feature-text p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

/* mongodb-benefits-section */
.mongodb-benefits-section {
    text-align: center;
}

.mongodb-benefits-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
    height: 250px;
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--secondary);
}

.mongodb-benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mongodb-benefits-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); */
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.2);
}

.mongodb-benefits-card .icon img {
    width: 40px;
    height: 40px;
}

.mongodb-benefits-card h5{
    font-weight: 700;
}

.mongodb-benefits-card p{
    font-size: 1rem;
    color: var(--gray);
}

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

.mongodb-process-step {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.mongodb-process-step:hover {
    background: #27b0e514;
    transform: translateY(-5px);
}

.mongodb-process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    left: -19px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mongodb-process-step h5 {
    margin-top: 0;
    position: relative;
    z-index: 2;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mongodb-process-step-desc {
    font-size: 1rem;
    color: var(--gray);
}

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

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

    .main-illustration {
        width: 90%;
    }
}

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

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

    .mongodb-process-step {
        margin: 10px;
    }
}