/* Role Statement Section */
.role-statement-section {
    background: url("../images/platform-bg.png") no-repeat;
    background-size: 100% 100%;
    padding:150px;
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 230, 184, 0.1) 100%);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 30px;
    position: relative;
}

.notice-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 230, 184, 0.2) 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.notice-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
}

.notice-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.notice-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.notice-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.notice-content strong {
    color: #2c3e50;
    font-weight: 700;
}

/* NBFC Partner Section */
.nbfc-section {
    background: #f8f9fa;
}

.partner-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    width: 500px;
    height: 600px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.bpo-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 230, 184, 0.08) 100%);
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.nbfc-card {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 192, 203, 0.15) 100%);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.partner-logo {
    text-align: center;
    margin-bottom: 25px;
}

.p-logo-icon.large {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #00d4aa 0%, #00e6b8 100%); */
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.partner-role {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.responsibilities h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.responsibilities .checklist {
    margin: 0;
}

.arrow-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
}

/* Cooperation Section */
.cooperation-section {
    background: white;
}

.cooperation-section .section-subtitle {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: justify;
    font-size: 15px;
    line-height: 1.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partner-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .arrow-separator {
        transform: rotate(90deg);
    }

    .notice-box {
        flex-direction: column;
        text-align: center;
    }

    .notice-icon {
        margin: 0 auto;
    }

    .notice-content p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .partner-card {
        padding: 30px 20px;
    }

    .notice-box {
        padding: 30px 20px;
    }

    .notice-content h3 {
        font-size: 20px;
    }

    .partner-card h3 {
        font-size: 18px;
    }
}
