﻿/*===================================================
  SECTION 1        PART 1
===================================================*/


html,
body {
    margin: 0;
    padding: 0;
    background: #f4f6f8;
}


.section1-container {
    width: 100%;
    margin: auto;
    max-width: 1220px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/*=======================================================
  HEADING
=======================================================*/

.section1-heading {
    text-align: center;
    margin-bottom: 24px;
}

    .section1-heading h1 {
        font-size: 30px;
        font-weight: 700;
        color: #202020;
        line-height: 1.2;
        margin-bottom: 8px;
            margin-top: 0;
    }

    .section1-heading h2 {
       font-size: 20px;
    font-weight: 600;
    color: #004ca7;
    margin: 0;
    }



/*========================================================
  97%   3%
=======================================================*/

/* CLASSIFICATION BOXES CONTAINER */
.classification {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

/* COMMON BOX STYLING */
.classification-box {
    flex: 1;
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    /* धुंधलेपन को हटाकर शार्प बॉर्डर और हल्का बॉर्डर-शैडो दिया गया है */
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .classification-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    /* 97% और 3% नंबर का SHARP & CLEAR लुक */
    .classification-box .number {
        font-size: 52px !important; /* बड़ा और स्पष्ट आकार */
        font-weight: 900 !important; /* एक्स्ट्रा बोल्ड */
        line-height: 1;
        margin-bottom: 12px;
        /* टेक्स्ट शैडो पूरी तरह हटा दी गई है ताकि नंबर धुंधला न दिखे */
        text-shadow: none !important;
        letter-spacing: -1px;
    }

/* 97% वाला नीला बॉक्स (DARK & SHARP BLUE) */
.left-box {
    border-top: 5px solid #0b2239; /* ऊपर डार्क ब्लू बॉर्डर */
}

    .left-box .number {
        /*color: #0b2239 !important;*/ /* गहरा नेवी ब्लू कलर जो एकदम साफ चमकेगा */
        color: #fff !important;
    }

/* 3% वाला बॉक्स (DISTINCT COLOR) */
.right-box {
    border-top: 5px solid #d9534f; /* ऊपर लाल/ऑरेंज बॉर्डर */
}

    .right-box .number {
        color: #ffffff !important; /* गहरा लाल/ऑरेंज कलर */
    }

/* नीचे लिखे टेक्स्ट (LABEL) की स्टायलिंग */
.classification-box .label {
    /*font-size: 16px;
    color: #2c3e50;
    line-height: 1.5;
    font-weight: 500;*/
    font-size: 17px;
    color: #c7e3ff;
    line-height: 1;
    font-weight: 600;
}

    .classification-box .label strong {
        font-size: 18px;
        font-weight: 700;
            color: #dddddd;
        /*color: #1a252f;*/
        display: block;
        margin-bottom: 5px;
    }

.left-box {
    /*background: linear-gradient(180deg,#4da3ff,#1557c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(21,87,192,.25);*/
    background: linear-gradient(180deg, #024083, #1557c0);
}

.right-box {
        background: linear-gradient(359deg, #d9534f, #7e0501);
    /*background: linear-gradient(180deg,#4da3ff,#1557c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(21,87,192,.25);*/
}

.number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.label {
    font-size: 22px;
    line-height: 1.45;
}

    .label strong {
        font-size: 20px;
        display: block;
        margin-bottom: 6px;
    }



/*=======================================================
  FACT SECTION
=======================================================*/

.facts-section {
    margin-bottom: 12px;
}

    .facts-section h3 {
     text-align: center;
    font-size: 25px;
    color: #222;
    margin-bottom: 18px;
    margin-top: 15px;
    }

.fact-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.fact-item {
display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-left: 5px solid #2563eb;
    border-radius: 14px;
    box-shadow: 0 0 15px #94aadbc4;
        margin-bottom: 10px;
}

.fact-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.fact-text {
font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.55;
}

/*========================================================
  IMPACT SECTION
========================================================*/

.impact-section {
    margin-bottom: 16px;
}

    .impact-section h3 {
      text-align: center;
    font-size: 25px;
    color: #222;
    margin-bottom: 18px;
    margin-top: 15px;
    }

    .impact-section ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: box;
        grid-template-columns: repeat(2,1fr);
        gap: 12px 18px;
    }

    .impact-section li {
        background: #e3edf7;
    max-width: 1220px;
    border-left: 5px solid #2563eb;
    border-right: 5px solid #2563eb;
        border-radius: 12px;
        padding: 14px 18px;
        text-align: center;
        font-size: 17px;
        line-height: 1.45;
        font-weight: 500;
        transition: .25s;
    }

        .impact-section li:hover {
            /*transform: translateX(4px);*/
            background: #fff2cf;
        }



/*========================================================
  QUESTION SECTION
========================================================*/

.question-section {
    /*background: linear-gradient(135deg,#1557c0,#2563eb);*/
    border-radius: 12px;
    /*padding: 5px;*/
    margin-top: 10px;
    text-align: center;
    color: #004ca7;
}

    .question-section h3 {
           font-size: 23px;
    font-weight: 700;
        margin-bottom: 0;
        margin-top:0;
    }

    .question-section p {
        max-width: 920px;
        margin: auto;
        font-size: 18px;
        line-height: 1.65;
    }



/*========================================================
  SMALL DESIGN IMPROVEMENTS
========================================================*/

.classification-box {
    transition: .30s;
}

    .classification-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

.fact-item {
    transition: .30s;
}

    .fact-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }


/*========================================================
  LARGE DESKTOP OPTIMIZATION
=======================================================*/

@media (min-width:1400px) {

    .section1 {
        padding: 28px 20px;
    }

    .section1-container {
        max-width: 1320px;
    }

    .section1-heading {
        margin-bottom: 24px;
    }

    .classification {
        margin-bottom: 24px;
    }

    .facts-section {
        margin-bottom: 24px;
    }

    .impact-section {
        margin-bottom: 24px;
    }
}
    /*========================================================
  TABLET
========================================================*/

@media (max-width:992px) {

        .section1 {
            padding: 28px 15px;
        }

        .section1-container {
            padding: 30px;
        }

        .section1-heading {
            margin-bottom: 24px;
        }

            .section1-heading h1 {
                font-size: 30px;
            }

            .section1-heading h2 {
                font-size: 17px;
            }

        .classification {
            flex-direction: column;
            gap: 15px;
            margin-bottom: 24px;
        }

        .classification-box {
            width: 100%;
            padding: 16px 20px;
        }

        .number {
            font-size: 38px;
        }

        .label {
            font-size: 15px;
        }

            .label strong {
                font-size: 17px;
            }

        .facts-section {
            margin-bottom: 24px;
        }

            .facts-section h3 {
                font-size: 26px;
            }

        .fact-list {
            grid-template-columns: 1fr;
        }

        .fact-item {
            padding: 15px;
        }

        .fact-number {
            width: 38px;
            height: 38px;
            min-width: 38px;
        }

        .fact-text {
            font-size: 15px;
        }

        .impact-section {
            margin-bottom: 24px;
        }

            .impact-section h3 {
                font-size: 26px;
            }

            .impact-section ul {
                grid-template-columns: 1fr;
            }

            .impact-section li {
                font-size: 12px;
                padding: 10px 12px;
            }

        .question-section {
            padding: 20px;
        }

            .question-section h3 {
                font-size: 25px;
            }

            .question-section p {
                font-size: 17px;
            }
    }



    /*========================================================
  MOBILE
=======================================================*/

@media (max-width:768px) {

        .section1 {
            padding: 18px 10px;
        }

        .section1-container {
            padding: 22px 18px;
            border-radius: 16px;
        }

        .section1-heading h1 {
            font-size: 26px;
        }

        .section1-heading h2 {
            font-size: 16px;
        }

        .number {
            font-size: 34px;
        }

        .label {
            font-size: 14px;
        }

            .label strong {
                font-size: 16px;
            }

        .facts-section h3,
        .impact-section h3,
        .question-section h3 {
            font-size: 22px;
        }

        .fact-item {
            gap: 10px;
            padding: 13px;
        }

        .fact-number {
            width: 34px;
            height: 34px;
            min-width: 34px;
            font-size: 13px;
        }

        .fact-text {
            font-size: 14px;
            line-height: 1.5;
        }

        .fact-list
 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

        .impact-section li {
            font-size: 14px;
            padding: 10px 12px;
        }

        .question-section {
            border-radius: 14px;
            padding: 0;
        }

            .question-section p {
                font-size: 10px;
                line-height: 1.1;
            }

        .classification {
            gap: 15px;
            margin: 20px 0;
            flex-direction: column !important;
        }

        .classification-box {
            flex: 1;
            max-width: 310px !important;
        }
    }



    /*=======================================================
  FINAL POLISH
=======================================================*/

    .section1 h1,
    .section1 h2,
    .section1 h3 {
        letter-spacing: .2px;
    }

    .classification-box,
    .fact-item,
    .impact-section li,
    .question-section {
        overflow: hidden;
    }

    .section1 img {
        max-width: 100%;
        display: block;
    }

    html {
        scroll-behavior: smooth;
    }

    /*========================================================
    RESPONSIVE CSS
========================================================*/

    /* Large Desktop */
    @media (min-width:1400px) {

        .section1 {
            padding: 30px 20px;
        }

        .section1-container {
            max-width: 1320px;
            padding: 25px 40px 55px;
        }

        .section1-heading h1 {
            font-size: 38px;
        }

        .section1-heading h2 {
            font-size: 28px;
        }

        .classification {
            gap: 30px;
        }

        .classification-box {
            padding: 28px 25px;
        }

        .fact-list {
            grid-template-columns: repeat(3,1fr);
        }
    }

    /* Laptop */
    @media (max-width:1199px) {

        .section1-container {
            max-width: 1140px;
            padding: 22px 30px 45px;
        }

        .classification {
            gap: 20px;
        }

        .classification-box .number {
            font-size: 46px !important;
        }
    }

    /* Tablet */
    @media (max-width:991px) {

        .section1 {
            padding: 25px 15px;
        }

        .section1-container {
            padding: 22px;
            border-radius: 16px;
        }

        .section1-heading h1 {
            font-size: 30px;
        }

        .section1-heading h2 {
            font-size: 22px;
        }

        .classification {
            flex-direction: column;
            gap: 18px;
        }

        .classification-box {
            max-width: 100%;
            width: 100%;
        }

            .classification-box .number {
                font-size: 42px !important;
            }

        .label {
            font-size: 18px;
        }

            .label strong {
                font-size: 18px;
            }

        .fact-list {
            grid-template-columns: 1fr;
        }

        .impact-section ul {
            display: grid;
            grid-template-columns: 1fr;
        }

        .impact-section li {
            font-size: 15px;
        }

        .question-section {
            padding: 20px;
        }

            .question-section h3 {
                font-size: 24px;
            }

            .question-section p {
                font-size: 16px;
                line-height: 1.7;
            }
    }

    /* Mobile */
    @media (max-width:767px) {

        .section1 {
            padding: 18px 10px;
        }

        .section1-container {
            padding: 18px;
            border-radius: 14px;
        }

        .section1-heading {
            margin-bottom: 20px;
        }

            .section1-heading h1 {
                font-size: 24px;
            }

            .section1-heading h2 {
                font-size: 17px;
            }

        .classification {
            gap: 15px;
        }

        .classification-box {
            padding: 18px 15px;
        }

            .classification-box .number {
                font-size: 38px !important;
            }

        .label {
            font-size: 15px;
        }

            .label strong {
                font-size: 16px;
            }

        .facts-section h3,
        .impact-section h3,
        .question-section h3 {
            font-size: 22px;
        }

        .fact-item {
            padding: 14px;
        }
        .fact-list
 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

        .fact-number {
            width: 36px;
            height: 36px;
            min-width: 36px;
            font-size: 15px;
        }

        .fact-text {
            font-size: 14px;
        }

        .impact-section li {
            font-size: 14px;
            padding: 12px;
            max-width:350px;
        }

        .question-section {
            padding: 18px;
            max-width:350px;
        }

            .question-section p {
                font-size: 15px;
                line-height: 1.6;
            }
    }

    /* Small Mobile */
    @media (max-width:575px) {

        .section1-container {
            padding: 15px;
        }

        .section1-heading h1 {
            font-size: 22px;
        }

        .section1-heading h2 {
            font-size: 15px;
        }

        .classification-box .number {
            font-size: 34px !important;
        }

        .label {
            font-size: 14px;
        }

            .label strong {
                font-size: 15px;
            }

        .facts-section h3,
        .impact-section h3,
        .question-section h3 {
            font-size: 20px;
        }

        .question-section p {
            font-size: 14px;
        }
    }

    /* Extra Small Devices */
    @media (max-width:360px) {

        .section1-container {
            padding: 12px;
        }

        .section1-heading h1 {
            font-size: 20px;
        }

        .section1-heading h2 {
            font-size: 14px;
        }

        .classification-box .number {
            font-size: 30px !important;
        }

        .label {
            font-size: 13px;
        }

            .label strong {
                font-size: 14px;
            }

        .fact-text {
            font-size: 13px;
        }

        .impact-section li {
            font-size: 13px;
        }

        .question-section p {
            font-size: 13px;
        }
    }
