@font-face {
    font-family: SatoshiRegular;
    src: url(fonts/satoshi/Satoshi-Regular.woff2);
}

@font-face {
    font-family: SatoshiMedium;
    src: url(fonts/satoshi/Satoshi-Medium.woff2);
}

@font-face {
    font-family: SatoshiBold;
    src: url(fonts/satoshi/Satoshi-Bold.woff2);
}

@font-face {
    font-family: SatoshiBlack;
    src: url(fonts/satoshi/Satoshi-Black.woff2);
}

.incubator-section * {
    box-sizing: border-box;
}

.incubator-section {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    width: 100%;
}

.incubator-section .container {
    width: 100%;
    margin: 0 auto;
}

.incubator-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.incubator-section .container .incubator-section-header h2 {
    font-family: 'SatoshiBlack';
    color: #000;
    font-size: 22px;
    margin-bottom: 28px;
    line-height: 121%;
    letter-spacing: -0.16px;
}

.incubator-section .container .incubator-section-header p {
    color: #000;
    font-family: 'SatoshiRegular';
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 60px auto;
    max-width: 600px;
}

.hero-card {
    position: relative;
    width: 100%;
    /* min-height: 600px; */
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #567057 40%,
            /* #604b32 40%, */
            /* #CDA36D 70%, */
            #ABC1B4 100%)
}

.hero-card .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.hero-overlay .sub-heading {
    font-family: 'SatoshiMedium';
    color: #ffffff;
    opacity: 0.9;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.hero-overlay .main-heading {
    font-family: 'SatoshiBold';
    color: #ffffff;
    font-size: clamp(28px, 5vw, 42px);
    max-width: 550px;
    line-height: 1.2;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.feature-item .custom-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
}

.feature-item .feature-title {
    font-family: 'SatoshiBold';
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.feature-item .feature-desc {
    font-family: 'SatoshiRegular';
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.8;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-badge {
    color: #ffffff;
}

.partner-badge p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 14px;
}

.partner-badge .logo-text {
    font-family: 'SatoshiBold';
    font-size: 20px;
    letter-spacing: 2px;
}

.apply-btn {
    background-color: #d4f06d;
    color: #000;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'SatoshiBold';
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background-color: #e2ff7a;
}

.hero-left {
    width: 100%;
    padding-bottom: 0;
}

.hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-right img {
    /* width: 100%; */
    /* height: auto; */
    object-fit: contain;
    display: block;
}

.person-wrapper {
    position: relative;
    display: inline-block;
}

/* .person-wrapper img {
    max-height: 520px;
    width: auto;
    display: block;
} */

/* Floating Glass Button */
.person-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(91 83 83 / 41%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 240px;
    border: 1px solid #fff;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
}

.person-badge h4 {
    margin: 0;
    font-family: 'SatoshiBold';
    font-size: 16px;
    color: #fff;
}

.person-badge span {
    font-family: 'SatoshiMedium';
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.85;
}

.hero-person {
    width: 160px;
}

@media only screen and (min-width: 375px) {
    .incubator-section .container .incubator-section-header h2 {
        font-size: 26px;
    }

    .incubator-section {
        padding: 56px 24px;
    }

    .incubator-section .container .incubator-section-header p {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .incubator-section .container {
        max-width: 720px;
    }

    .feature-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .incubator-section .container .incubator-section-header p {
        font-size: 18px;
    }
}



@media (min-width: 1000px) {
    .incubator-section .container {
        max-width: 900px;
    }

    .incubator-section .container .incubator-section-header h2 {
        font-size: 32px;
    }

    .incubator-section .container .incubator-section-header p {
        font-size: 18px;
    }

    .hero-overlay {
        /* flex-direction: row;
        align-items: stretch; */
        padding: 60px;
    }

    .hero-left {
        width: 95%;
        /* padding-bottom: 120px; */
    }

    .hero-right {
        width: 40%;
        display: flex;
        align-items: flex-end;
        /* justify-content: flex-end; */
    }

    /* .hero-right img {
        width: auto;
        max-width: 100%;
    } */

    /* .hero-card {
        min-height: 600px;
    } */

    .feature-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .incubator-section .container {
        max-width: 1024px;
    }

    .feature-row {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1400px) {
    .incubator-section .container {
        max-width: 1260px;
    }
}

@media (min-width: 1600px) {
    /* .feature-item {
        padding: 32px;
    } */

    .incubator-section .container .incubator-section-header h2 {
        font-size: 40px;
    }

    .incubator-section .container .incubator-section-header p {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    /* .feature-row {
        grid-template-columns: 1fr;
    } */

    .hero-overlay {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .hero-overlay {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
    }

    /* .hero-card {
        min-height: auto;
    } */

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-right img {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        display: block;
    }

}