/* General Container */
.incubation-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 30%, #e9f0fa 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overview Section */
.incubation-overview {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.incubation-overview:hover {
    transform: translateY(-5px);
}

.incubation-content h2 {
    font-size: 34px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.incubation-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .incubation-overview {
        padding: 30px;
        max-width: 90%;
    }

    .incubation-content h2 {
        font-size: 28px;
    }

    .incubation-content p {
        font-size: 16px;
    }
}


/* General Section Styling */
.incubation-info-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.incubation-heading {
    margin-top: 40px;
    margin-bottom: 40px;
}

.incubation-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.incubation-heading p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Incubation Modes Styling */

.incubation-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.incubation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.incubation-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.incubation-card p {
    font-size: 16px;
    color: #555;
}

/* Steps to Become an Incubatee */
.incubation-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.step-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    transition: transform 0.3s ease;
}

.step-box:hover {
    transform: scale(1.02);
}

.step-number-box {
    font-size: 24px;
    font-weight: bold;
    background: #ff6b6b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.step-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.step-details p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-box {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .step-number-box {
        margin-bottom: 10px;
    }
}

