﻿/* ==========================================
   SECTION 4: AREAS OF SOCIAL COMMITMENT
   ========================================== */

/* 1. पूरे सेक्शन का सफ़ेद बॉक्स (White Box Container) */

.section4-container {
    width: 100%;
    margin: 5px auto;
    max-width: 1220px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0px 28px #5788f5c4;
    /*box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);*/
}

/* 2. HEADER TEXT ALIGNMENT */
.concept-header-container {
    text-align: center;
    padding: 0px;
    max-width: 1000px;
    margin: 0 auto;
}

.sub-heading-tag {
    color: #e67e22;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(230, 126, 34, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
}

.main-concept-title {
    /*color: #0b2239;
    font-size: 28px;
    font-weight: 800;
    /*letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-top:0;
    text-transform: uppercase;*/

    font-size: 30px;
    font-weight: 700;
    color: #202020;
    line-height: 1.2;
    margin-bottom: 8px;
    margin-top: 0;
}

.concept-subtitle {
    /*color: #5a6a80;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;*/

        margin: auto;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

/* 3. PARTNER COMMITMENT CARD BOX */
.partner-commitment-card {
    /*background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-left: 5px solid #e67e22;
    border-right: 5px solid #e67e22;*/
        background: linear-gradient(135deg, #fde7e6 0%, #fff8f7 100%);
    border: 1px solid #f1423a;
        box-shadow: 0 0 15px #94aadbc4;
    padding: 17px 25px 25px 25px;
    border-radius: 12px;
    margin: 10px auto 25px;
    maxi-width: 1200px;
    text-align: center;
}

.partner-commitment-card h3 {
    color: #0b2239;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partner-commitment-card p {
    color: #1b2028;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}

.partner-commitment-card p strong {
    color: #d9534f;
    font-size: 17px;
}

.section-main-heading {
    /*color: #0b2239;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom:5px;
    text-align: center;*/

    text-align: center;
    font-size: 25px;
    color: #222;
    margin-bottom: 15px;
    margin-top: 15px;
}

.section-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
}

/* 4. 5 CARDS LAYOUT (एक लाइन में व्यवस्थित) */
.social-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 35px;
    width: 100%;
}

.social-box {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px; /* ऊपर की पैडिंग 20px से घटाकर 12px कर दी गई है */
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 0 15px #94aadbc4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /*border-top: 4px solid #0b2239;*/
}

/*.social-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 34, 57, 0.12);
    border-top-color: #e67e22;
}*/

.social-box h4 {
    color: #0b2239;
    font-size: 19px;
    font-weight: 800;
    margin-top: 0;           /* ऊपर का फ़ालतू गैप पूरी तरह हटा दिया */
    margin-bottom: 8px;      /* नीचे का गैप हल्का कम किया */
    position: relative;
    padding-bottom: 6px;
}

.social-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: #ff0000;
    border-radius: 2px;
}

.social-box p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* 5. BOTTOM BANNER */
.section4-quote blockquote {
    background: linear-gradient(135deg, #0b2239 0%, #1a365d 100%);
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    padding: 22px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(11, 34, 57, 0.2);
    margin: 0;
    line-height: 1.6;
}


/*==================================================
    SECTION 4 RESPONSIVE CSS
==================================================*/

/* Large Desktop */
@media (min-width:1400px){

    .section4-container{
        max-width:1320px;
        padding:35px 45px 60px;
    }

    .main-concept-title{
        font-size:34px;
    }

    .concept-subtitle{
        font-size:18px;
    }

    .partner-commitment-card h3{
        font-size:32px;
    }

    .partner-commitment-card p{
        font-size:34px;
    }

    .social-box h4{
        font-size:22px;
    }

    .social-box p{
        font-size:20px;
    }

    .section4-quote blockquote{
        font-size:30px;
    }

}

/* Laptop */
@media (max-width:1199px){

    .section4-container{
        max-width:1140px;
        padding:25px 25px 45px;
    }

    .social-grid{
        gap:12px;
    }

    .social-box h4{
        font-size:18px;
    }

    .social-box p{
        font-size:16px;
    }

}

/* Tablet */
@media (max-width:991px){

    .section4-container{
        padding:22px;
        border-radius:16px;
    }

    .concept-header-container{
        padding:10px;
    }

    .main-concept-title{
        font-size:26px;
    }

    .concept-subtitle{
        font-size:15px;
    }

    .partner-commitment-card{
        padding:18px;
    }

    .partner-commitment-card h3{
        font-size:24px;
    }

    .partner-commitment-card p{
        font-size:22px;
        line-height:1.5;
    }

    .section-main-heading{
        font-size:22px;
    }

    .social-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .social-box{
        padding:18px 15px;
    }

    .social-box h4{
        font-size:18px;
    }

    .social-box p{
        font-size:15px;
    }

    .section4-quote blockquote{
        font-size:20px;
        padding:20px;
    }

}

/* Mobile */
@media (max-width:767px){

    .section4-container{
        padding:18px;
        border-radius:14px;
        margin:20px auto;
    }

    .sub-heading-tag{
        font-size:11px;
        padding:6px 14px;
        letter-spacing:1px;
    }

    .main-concept-title{
        font-size:22px;
        line-height:1.4;
    }

    .concept-subtitle{
        font-size:14px;
        line-height:1.5;
    }

    .partner-commitment-card{
        max-width:350px;
        padding:15px;
    }

    .partner-commitment-card h3{
        font-size:20px;
    }

    .partner-commitment-card p{
        font-size:18px;
        line-height:1.5;
    }

    .partner-commitment-card p strong{
        font-size:16px;
    }

    .section-main-heading{
        font-size:20px;
    }

    .social-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }

    .social-box{
        padding:16px;
        max-width:350px;
    }

    .social-box h4{
        font-size:18px;
    }

    .social-box p{
        font-size:15px;
        line-height:1.6;
    }

    .section4-quote blockquote{
        font-size:18px;
        padding:18px;
        line-height:1.6;
        max-width:350px;
    }

}

/* Small Mobile */
@media (max-width:575px){

    .section4-container{
        padding:15px;
    }

    .main-concept-title{
        font-size:20px;
    }

    .concept-subtitle{
        font-size:13px;
    }

    .partner-commitment-card h3{
        font-size:18px;
    }

    .partner-commitment-card p{
        font-size:16px;
    }

    .section-main-heading{
        font-size:18px;
    }

    .social-box h4{
        font-size:17px;
    }

    .social-box p{
        font-size:14px;
    }

    .section4-quote blockquote{
        font-size:16px;
        padding:15px;
    }

}

/* Extra Small Mobile */
@media (max-width:360px){

    .section4-container{
        padding:12px;
    }

    .sub-heading-tag{
        font-size:10px;
        padding:5px 10px;
    }

    .main-concept-title{
        font-size:18px;
    }

    .concept-subtitle{
        font-size:12px;
    }

    .partner-commitment-card h3{
        font-size:16px;
    }

    .partner-commitment-card p{
        font-size:15px;
    }

    .section-main-heading{
        font-size:17px;
    }

    .social-box h4{
        font-size:16px;
    }

    .social-box p{
        font-size:13px;
    }

    .section4-quote blockquote{
        font-size:15px;
        padding:14px;
    }

}