@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Roboto", sans-serif; */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

.spacer1px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 1px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer5px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 5px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer15px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 15px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer10px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 10px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer20px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 20px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer30px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 30px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer50px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 50px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

.spacer80px {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 50px;
    background: none;
    margin: 0px 0px 0px 0px;
    width: 100%;
    border: none;
}

:focus-visible {
    outline: 3px solid #000;
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    border-radius: 6px;
}

.container-fluid {
    padding: 0 80px;
}

/*p{
    font-style:italic;
    color:#555;
}*/



.banner_sec_train {
    position: relative;
}

    .banner_sec_train img {
        width: 100%;
        object-fit: cover;
        height: 400px;
    }

.breadcumb_sec_new {
    position: absolute;
    bottom: 0px;
    z-index: inherit;
    background: #ff043a;
    left: 75px;
    padding: 0 50px;
    border-radius: 4px 4px 0 0;
}

    .breadcumb_sec_new h6 {
        position: relative;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
    }

.about_tabs_sec {
    background: linear-gradient(to right, rgb(224, 234, 252), rgb(207, 222, 243));
    padding: 30px 0;
}

.about_tabs_sec_inner {
    position: relative;
    padding: 10px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px #00000029;
    transition: all 0.4s ease;
}

    .about_tabs_sec_inner ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .about_tabs_sec_inner ul li {
            position: relative;
            display: block;
            border-radius: 10px;
            text-align: center;
        }

            .about_tabs_sec_inner ul li a {
                padding: 15px 15px;
                border-radius: 10px;
                font-size: 14px;
                font-weight: 600;
                color: #1e4eab;
                display: flex;
                align-items: center;
                flex-direction: column;
                position: relative;
                gap: 10px;
                text-align: center;
                font-family: 'Lato';
                text-decoration: none;
            }

            .about_tabs_sec_inner ul li:hover a:before {
                opacity: 0;
            }

            .about_tabs_sec_inner ul li a:before {
                position: absolute;
                content: '';
                height: 20px;
                width: 20px;
                bottom: 0;
                transform: rotate(46deg);
                bottom: -10px;
                z-index: 1;
                background: linear-gradient(117deg, #0052bf, #e11c23);
                opacity: 0;
            }

            .about_tabs_sec_inner ul li:hover a {
                background: linear-gradient(135deg, #354e7e, #5fa8fc);
                color: #fff;
            }

            .about_tabs_sec_inner ul li a img {
                width: 45px;
            }

            .about_tabs_sec_inner ul li.active a,
            .about_tabs_sec_inner ul li:hover a {
                background: linear-gradient(135deg, #354e7e, #5fa8fc);
                color: #fff;
            }

                .about_tabs_sec_inner ul li.active a:before {
                    opacity: 1;
                }



/* First tab visible initially */
.tabs-primary {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Second tab hidden initially */
.tabs-secondary {
    transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    top: 145px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transition: all 0.4s ease;
    border-radius: 0;
    visibility: hidden;
}

/* When activated */
.tabs-primary.hide {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.tabs-secondary.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}



@keyframes slideDownFromTop {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpToTop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-60px);
        opacity: 0;
    }
}


.right_tab_single {
    display: none;
    animation: fadeIn 0.4s ease;
}

    .right_tab_single.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.right_tab_single {
    position: relative;
}

.tab_content_area {
    position: relative;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    margin: 20px 0 0 0;
}

.right_tab_single_head {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .right_tab_single_head h6 {
        position: relative;
        font-size: 30px;
        color: #3b4a9a;
        font-weight: 600;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        /* .right_tab_single_head h6:after {
    position: absolute;
    content: '';
    top: 10px;
    background: url(../images/wave.png);
    height: 70px;
    width: 70px;
    background-size: cover;
    right: 48%;
} */

        .right_tab_single_head h6:before {
            position: relative;
            left: -20px;
            height: 2px;
            width: 100px;
            background: #3b4a9a;
            border-radius: 5px;
            content: '';
            top: 0;
        }

        .right_tab_single_head h6:after {
            position: relative;
            right: -20px;
            height: 2px;
            width: 100px;
            background: #3b4a9a;
            border-radius: 5px;
            content: '';
            top: 0;
        }

.new_head {
    position: relative;
}

/* .new_head.right_tab_single_head h6:before {
    left: 25%;
}

.new_head.right_tab_single_head h6:after {
    right: 25%;
} */


.right_tab_single_head p {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    font-family: 'Lato';
}

.right_tab_single_head {
    position: relative;
}

.right_tab_single_body {
    position: relative;
    /*    margin-top: 25px;*/
}

    .right_tab_single_body p {
        position: relative;
        font-size: 14px;
        font-weight: 500;
        color: #555;
        font-family: 'Lato';
        text-align: justify;
        font-style: italic;
    }

.pare_link_sec {
    position: relative;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .pare_link_sec a {
        position: relative;
        font-size: 16px;
        font-weight: 600;
        /*        color: #684603;*/
        color: #ef3c61;
        display: flex;
        align-items: center;
        gap: 5px;
        font-style: italic;
        text-decoration: underline;
    }

a.pare_link_sec_btn {
    background: #fff;
    padding: 0px 10px;
    border-radius: 0px 0 10px 0;
    color: #ef3c61;
    text-decoration: none;
}

.pare_link_sec_btn img {
    width: 30px
}

.ab_img_sec {
    position: relative;
    padding: 20px 0 0 0;
    width: 80%;
    margin: 0 auto;
}

    .ab_img_sec img {
        width: 100%;
        object-fit: cover;
    }

.mt_0 {
    margin-top: 0px;
}

.pt_0 {
    padding-top: 0px;
}

.board_directors_sec {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.board_directors_sec_single {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    height: auto;
}

    .board_directors_sec_single img {
        width: 100%;
        display: block;
        border-radius: 20px;
        height: 180px;
        object-fit: cover;
    }

.main_dic_head .board_directors_sec_single_img img {
    height: 315px;
}

.overlay {
    content: '';
    position: absolute;
    inset: 0;
    transition: 0.35s;
    border-radius: 5px;
}

.single_content_sec {
    border-top: none;
    border-radius: 8px;
    margin-top: -0;
    padding: 0 5px 10px;
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 11;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}


.board_directors_sec_single_img {
    position: relative;
    border: 2px dotted #2e4d8b;
    padding: 5px;
    border-radius: 20px;
}

.single_content_sec {
    position: relative;
}

    .single_content_sec h6 {
        position: relative;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #1246ab;
        margin: 0;
        min-height: auto;
        padding: 10px 0 5px 0;
        font-family: math;
    }

    .single_content_sec h5 {
        position: relative;
        font-size: 12px;
        font-weight: 600;
        color: #444;
        text-align: center;
        margin: 0px;
        line-height: inherit;
        font-family: 'Lato';
    }

    .single_content_sec p {
        position: relative;
        font-size: 12px !important;
        font-weight: 600;
        color: #444;
        text-align: center;
        margin: 0px;
        line-height: inherit;
        font-family: 'Lato';
    }

.main_dic_head {
    width: 300px;
    height: auto;
    margin: 40px auto 20px;
    left: 0px;
}

.dis_flex_sec_dir {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 30px;
}

    .dis_flex_sec_dir .board_directors_sec_single {
        flex: 0 0 200px;
    }

.board_directors_sec_single a {
    text-decoration: none;
}

.dis_flex_sec_dir .board_directors_sec_single img {
    height: 230px;
}

.skill_sec_text {
    position: relative;
    font-style: italic;
    color: #102d67 !important;
    font-weight: 600 !important;
}








/* .board_directors_sec_single:hover .single_content_sec{position: absolute;top: 35px;transition: 0.5s ease-in-out;}
.board_directors_sec_single:hover .overlay{background: #ffffffad;border-radius: 8px;} */

.right_tab_single_pdf_viewer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

.single_pdf_viewer {
    position: relative;
    padding: 15px;
    border-radius: 10px;
    background: #dce7fa;
    border: 1px dashed #5ea5f7;
}

.single_pdf_viewer_left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .single_pdf_viewer_left h5 {
        font-size: 15px;
        font-weight: 600;
        color: #000;
        font-family: 'Lato';
    }

.single_pdf_viewer img {
    width: 25px;
}

.single_pdf_viewer_right {
    position: relative;
    right: 0;
    top: 0;
    padding-top: 10px;
}

    .single_pdf_viewer_right ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .single_pdf_viewer_right ul li a {
            position: relative;
            display: inline-block;
            color: #3b4a9a;
            font-weight: 500;
            font-size: 14px;
            font-family: 'Roboto';
        }

.doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-left: 5px solid #1f3c88;
    background: #fff;
    text-decoration: none;
    color: #000;
    box-shadow: 0 8px 20px rgb(0 0 0 / 56%);
    transition: 0.3s;
    width: 50%;
    margin: 0 auto;
    margin-top: 30px;
    border-right: 5px solid #1f3c88;
    margin-bottom: 40px;
}

    .doc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

.doc-icon {
    font-size: 40px;
}

.doc-action {
    color: #1f3c88;
    font-weight: 600;
}

.skill_dev_body_sec {
    position: relative;
}

.skill_dev_body_sec_single {
    position: relative;
}

.skill_dev_body_sec {
    position: relative;
    margin: 30px 0 0 0;
}

.skill_dev_body_sec_single {
    position: relative;
    display: block;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.skill_dev_body_sec_single_left {
    position: relative;
}

    .skill_dev_body_sec_single_left h4 {
        position: relative;
        font-size: 22px;
        line-height: 30px;
        color: #354e7e;
        font-weight: 500;
        font-family: lato;
        margin-bottom: 20px;
    }

    .skill_dev_body_sec_single_left p {
        position: relative;
        font-size: 16px;
        font-weight: 400;
        color: #555;
        text-align: justify;
        font-family: 'Lato';
    }

.skill_dev_body_sec_single_right_single p.img-desc {
    text-align: center;
    margin: 5px 0 0 0;
}

.slick-prev:hover, .slick-prev:active, .slick-prev:focus, .slick-next:hover, .slick-next:active, .slick-next:focus {
    background: #fff !important;
}

.skill_dev_body_sec_single_right {
    position: relative;
}

.skill_dev_body_sec_single_right_single {
    position: relative;
    overflow: hidden;
}

    .skill_dev_body_sec_single_right_single img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        height: 300px;
        transition: 0.5s ease-in-out;
        overflow: hidden;
    }

        .skill_dev_body_sec_single_right_single img:hover {
            transform: scale(1.06);
            transition: 0.5s ease-in-out;
            overflow: hidden;
            border-radius: 10px;
        }

.skill_dev_body_sec_single_right .slick-prev {
    left: 0;
    border-radius: 0px;
    transition: all linear 0.2s;
    top: 50%;
    background: #fff;
}

.skill_dev_body_sec_single_right .slick-next {
    right: 0;
    border-radius: 0px;
    transition: all linear 0.2s;
    top: 50%;
    background: #fff;
}

/* .skill_dev_body_sec_single .row{display: flex;align-items: center;} */
.skill_sticky {
    position: sticky !important;
    top: 170px;
    height: fit-content;
}

.skill_dev_body_sec:before {
    content: '';
    background: url(../AboutNHSRCLContent/images/skill-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 70px;
    width: 70px;
    display: block;
    position: absolute;
    top: -70px;
    opacity: 0.5;
    animation: rotateIcon 12s linear infinite;
    display: none;
}


.skill_dev_body_sec:after {
    content: '';
    background: url(../AboutNHSRCLContent/images/skill-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 70px;
    width: 70px;
    display: block;
    position: absolute;
    bottom: -50px;
    right: 0;
    opacity: 0.5;
    animation: rotateIcon 12s linear infinite;
    display: none;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.new_tab_cont_bg_img {
    position: relative;
}

.make_in_india_sec {
    position: relative;
    margin-top: 0px;
}

    .make_in_india_sec h2 {
        position: relative;
        margin: 5px 0 25px 0;
        padding: 0;
        color: #354e7e;
        font-size: 20px;
        font-weight: 500;
        display: inline-block;
        font-style: italic;
    }

        .make_in_india_sec h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            background: #d3a06c;
            height: 10px;
            width: 150px;
            opacity: 0;
            border-radius: 10px;
        }

        .make_in_india_sec h2 span {
            font-size: 25px;
            font-weight: 700;
            color: #e28964;
        }

.title {
    font-size: 28px;
    font-weight: 600;
}

/* Slider container MUST have width & height */
.text-slider {
    display: inline-block;
    position: relative;
    height: 1.4em;
    /* FIX */
    min-width: 170px;
    /* FIX */
    overflow: hidden;
    vertical-align: bottom;
}

    /* All texts */
    .text-slider span {
        position: absolute;
        left: 0;
        bottom: -100%;
        opacity: 0;
        transition: all 0.6s ease;
        font-weight: 700;
        white-space: nowrap;
    }

        /* Active text */
        .text-slider span.active {
            bottom: 0;
            opacity: 1;
        }

        /* Optional colors */
        .text-slider span:nth-child(1) {
            color: #d3308c;
        }

        .text-slider span:nth-child(2) {
            color: #ff6b00;
        }

        .text-slider span:nth-child(3) {
            color: #138808;
        }

.make_in_india_sec p {
    position: relative;
}

.make_in_india_sec h6 {
    position: relative;
    color: #555;
    font-family: 'Lato';
    margin: 0 0 10px 0;
    font-size: 16px;
    text-align: justify;
}

.make_in_india_sec ul {
    position: relative;
    display: block;
}

    .make_in_india_sec ul li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 10px 0;
        font-size: 14px;
        color: #555;
        padding-left: 20px;
        font-weight: 500;
        padding-left: 20px;
        font-family: 'Lato';
        text-align: justify;
        font-style: italic;
    }

        .make_in_india_sec ul li:before {
            content: '\f054';
            position: absolute;
            left: 0;
            font-family: 'FontAwesome';
            top: 2px;
            font-weight: 400 !important;
            color: #5a0303;
            animation: arrowMove 1.2s infinite ease-in-out;
        }

@keyframes arrowMove {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(6px);
        opacity: 0.6;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/*.make_in_india_sec ol {
    position: relative;
    display: block;
    padding-left: 30px;
}*/
.make_in_india_sec ol {
    position: relative;
    display: block;
    padding-left: 0px;
}

    .make_in_india_sec ol li {
        position: relative;
        display: block;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 10px 0;
        font-size: 14px;
        color: #555;
        font-weight: 500;
        padding-left: 20px;
        font-family: 'Lato';
        font-style: italic;
    }

        .make_in_india_sec ol li span {
            font-weight: 700;
            color: #354e7e;
            font-size: 16px;
            font-family: 'Lato';
        }

        .make_in_india_sec ol li:before {
            /*content: '\f054';*/
            position: absolute;
            left: 0;
            font-family: 'FontAwesome';
            top: 2px;
            font-weight: 400 !important;
            color: #5a0303;
            animation: arrowMove 1.2s infinite ease-in-out;
        }

.make_in_india_sec h5 {
    position: relative;
    margin: 30px 0 30px 0;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #354e7e;
}

    .make_in_india_sec h5 a {
        border-bottom: 1px dashed #ff0000;
    }

.make_in_grid_sec {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.make_in_grid_sec_left {
    position: relative;
    padding: 0px;
    background: #fff;
    *box-shadow: 0 4px 8px rgb(0 0 0 / 34%);
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

    .make_in_grid_sec_left::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../AboutNHSRCLContent/images/bg-img-make.png) center top / cover no-repeat;
        opacity: 0;
        /* ðŸ”¥ control opacity here */
        z-index: 0;
    }

/*    .make_in_grid_sec_left:hover {
        transform: scale(0.9);
    }*/

.external_link_sec {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 20px 0;
}

    .external_link_sec a {
        position: relative;
        font-size: 20px;
        font-weight: 600;
        color: #f68e13;
        text-decoration: underline;
    }

.make_sec_cont {
    position: relative;
}

    .make_sec_cont h3 {
        position: relative;
        color: #354e7e;
        font-weight: 600;
        margin: 0 0 20px 0;
        font-size: 20px;
        font-family: 'Lato';
        font-style: italic;
    }

    .make_sec_cont ul {
        position: relative;
        margin: 10px 0 25px 0;
    }

        .make_sec_cont ul li {
            position: relative;
            display: block;
            align-items: center;
            justify-content: flex-start;
            margin: 0 0 5px 0;
            font-size: 14px;
            color: #555;
            font-weight: 500;
            padding-left: 20px;
            font-family: 'Lato';
        }

            .make_sec_cont ul li span {
                font-weight: 700;
                color: #354e7e;
                font-size: 14px;
            }

            .make_sec_cont ul li:before {
                content: '\f054';
                position: absolute;
                left: 0;
                font-family: 'FontAwesome';
                top: 2px;
                font-weight: 400 !important;
                color: #5a0303;
                animation: arrowMove 1.2s infinite ease-in-out;
            }

.link_grid_sec {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

    .link_grid_sec a {
        position: relative;
        border: 1px dotted #3601ef;
        padding: 5px 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #354e7e;
        font-weight: 600;
        font-family: 'Lato';
    }

        .link_grid_sec a i {
            padding-left: 10px;
            color: #e11b22;
            font-weight: 600 !important;
            animation: arrowMove 1.2s infinite ease-in-out;
        }

@keyframes arrowMoveD {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.6;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.make_imp_sec {
    position: relative;
    margin: 30px 0 0 0;
}

    .make_imp_sec h5 {
        position: relative;
        margin: 20px 0;
        font-size: 20px;
        font-weight: 500;
        font-style: italic;
        color: #354e7e;
    }

    .make_imp_sec ul {
        display: block;
    }

        .make_imp_sec ul li {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin: 0px;
        }

            .make_imp_sec ul li span {
                position: relative;
                display: block;
                font-size: 14px;
                font-weight: 600;
                color: #ff0008;
                min-width: 100px;
                margin-bottom: 5px;
            }

            .make_imp_sec ul li a {
                position: relative;
                font-size: 15px;
                color: #653cfc;
            }

                .make_imp_sec ul li a:after {
                    content: '\f0c1';
                    position: absolute;
                    font-family: 'FontAwesome';
                    right: -20px;
                    animation: arrowMove 1.2s infinite ease-in-out;
                    font-weight: 600;
                }

            .make_imp_sec ul li:before {
                display: none;
            }



.honors_sec_new {
    position: relative;
}

.honors_sec_new_single {
    position: relative;
    margin-bottom: 10px;
}

    .honors_sec_new_single h4 {
        position: relative;
        font-size: 20px;
        font-weight: 600;
        color: #354e7e;
        line-height: 30px;
        font-family: 'Lato';
        font-style: italic;
    }

    .honors_sec_new_single p {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: #555;
        text-align: justify;
        font-family: 'Lato';
        font-style: italic;
    }

.honors_head {
    position: relative;
    z-index: 11;
}

    .honors_head:after {
        position: absolute;
        content: '';
        background: url(../AboutNHSRCLContent/images/trophy.png);
        height: 100px;
        width: 100px;
        top: -60px;
        left: 0;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.5;
        z-index: -1;
        display: none;
    }

.honor_img_sec {
    position: relative;
    display: grid;
    /*    grid-template-columns: 1fr 1fr;*/
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.honor_img_sec_single {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

    .honor_img_sec_single img {
        width: 100% !important;
        object-fit: cover;
        border-radius: 10px;
        height: 100%;
        transition: 0.5s ease-in-out;
        overflow: hidden;
        border: none;
    }

        .honor_img_sec_single img:hover {
            transform: scale(1.1);
            border-radius: 10px;
            border: none;
        }

.honors_sec_new_single ul {
    display: block;
}

    .honors_sec_new_single ul li {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #555;
        margin: 0 0 5px;
        position: relative;
        padding-left: 20px;
        font-family: 'Lato';
    }

        .honors_sec_new_single ul li:before {
            content: '\f05a';
            position: absolute;
            left: 0;
            font-family: 'FontAwesome';
            top: 2px;
            font-weight: 400 !important;
            color: #5a0303;
            animation: arrowMove 1.2s infinite ease-in-out;
        }

/* .new_csr_head{position: relative;}
.new_csr_head .right_tab_single_head h6:before{left: 25%;}
.new_csr_head .right_tab_single_head h6:after{right: 25%;} */

.social_sec_new {
    position: relative;
    margin-top: 40px;
}

.social_sec_new_head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .social_sec_new_head h5 {
        position: relative;
        font-size: 22px;
        color: #354e7e;
        font-weight: 600;
        margin: 0;
        padding: 0;
        font-family: 'Lato';
        text-align: justify;
        font-style: italic;
    }

        .social_sec_new_head h5:after {
            position: absolute;
            content: '';
            background: url(../AboutNHSRCLContent/images/ribbon.png);
            left: 0;
            top: 5px;
            background-size: contain;
            z-index: 11;
            width: 50px;
            height: 50px;
            background-repeat: no-repeat;
            display: none;
        }

    .social_sec_new_head h4 {
        position: relative;
        font-size: 22px;
        color: #354e7e;
        font-weight: 600;
        margin: 20px 0 0 0;
        padding: 0 50px 0 0;
        font-style: italic;
    }

        .social_sec_new_head h4:after {
            position: absolute;
            right: 0;
            top: 8px;
            content: '';
            height: 5px;
            width: 42px;
            background: #85ff00;
            display: none;
        }

.social_sec_new_body {
    position: relative;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social_sec_new_body_left {
    position: relative;
    margin-top: 10px;
    flex: 0 0 50%;
}

    .social_sec_new_body_left p {
        position: relative;
        font-size: 14px;
        text-align: justify;
        color: #555;
        font-weight: 500;
        font-family: 'Lato';
        font-style: italic;
    }

.social_sec_new_body_right {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

    .social_sec_new_body_right img {
        border-radius: 10px;
    }

.social_sec_new_body_left ul li a {
    color: #000;
    border-bottom: 1px dashed #075cff;
    margin: 4px 0;
    position: relative;
    display: inline-block;
}

.intro_img_sec {
    position: absolute;
    top: 20px;
    right: 0;
}

    .intro_img_sec img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
    }

    .intro_img_sec p {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        background: #fff;
        text-align: center;
        color: #e64c3c;
        margin: 0;
        padding: 8px 0;
        font-size: 13px;
        font-weight: 600;
    }

.intro_img_sec_1 {
    position: absolute;
    top: 45%;
    right: 20%;
}

    .intro_img_sec_1 img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
    }

    .intro_img_sec_1 p {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        background: #fff;
        text-align: center;
        color: #e64c3c;
        margin: 0;
        padding: 8px 0;
        font-size: 13px;
        font-weight: 600;
    }


.shapee_icons {
    position: absolute;
    right: 30%;
    top: 10%;
    opacity: 0.5;
    animation: rotateIcon 12s linear infinite;
}

    .shapee_icons img {
        width: 130px;
        display: none;
    }

.new_view {
    grid-template-columns: repeat(3, 1fr) !important;
}

    .new_view .single_pdf_viewer_right {
        top: 0px;
    }

.social_ini_sec {
    position: relative;
    margin-top: 30px;
}

.social_ini_sec_body {
    position: relative;
    margin-top: 30px;
}

.social_ini_sec_body_single {
    position: relative;
    margin-bottom: 20px;
}


    .social_ini_sec_body_single h6 {
        position: relative;
        font-size: 20px;
        font-weight: 500;
        color: #354e7e;
        line-height: 1.4;
        padding-left: 0px;
        font-family: 'Lato';
        font-style: italic;
    }

.tailor_sec_right_single_cont h6 {
    position: relative;
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #102d67 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-style: italic;
}

.head_slide {
    position: relative;
}

    .head_slide:before {
        content: '';
        position: absolute;
        background-position: center center;
        background: url(../AboutNHSRCLContent/images/fast-forward.png);
        height: 25px;
        width: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        left: 0px;
        top: 0px;
        animation: arrowMove 1.2s infinite ease-in-out;
        
    }

.social_ini_sec_body_single p {
    font-size: 14px !important;
    font-weight: 400;
    color: #555;
    font-family: 'Lato' !important;
    font-style:italic;
}

/* .social_ini_sec_body_single ul{display: block;} */
.social_ini_sec_body_single ul li {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    padding-left: 20px;
    font-family: 'Lato';
    font-style: italic;
}

    .social_ini_sec_body_single ul li:before {
        content: '\f192';
        position: absolute;
        font-family: fontAwesome;
        left: 0;
        font-size: 13px;
        top: 2px;
        color: #000000;
    }

.social_ini_sec_body_single_grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    align-items: flex-start;
    display: flex;
    gap: 40px;
}

.social_ini_sec_body_single_grid_left {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 30px;
    display: block;
}

    .social_ini_sec_body_single_grid_left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        border: none;
        position: relative;
    }

.img_sec_new {
    position: relative;
    width: 220px;
    overflow: hidden;
}

    .img_sec_new:after {
        content: '';
        position: absolute;
        left: 0px;
        top: -100%;
        height: 100%;
        width: 100%;
        background: #3b4a9a;
        z-index: 99;
        border-radius: 50%;
        opacity: 0.9;
        transition: 0.5s ease-in-out;
    }


.img_sec_new_cont {
    position: relative;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.5s ease-in-out;
    padding: 0px;
    bottom: 0;
    background: #fff;
    width: 100%;
    border-radius: 0 0 10px 10px;
}
#docs-internal-guid-a4a60f32-7fff-e751-0be4-03ccd48c3858 {
    text-transform: lowercase;
}

    .img_sec_new_cont p {
        font-size: 16px;
        font-weight: 600;
        color: #102d67 !important;
        z-index: 99;
        text-align: center;
        font-style:italic;
        margin:10px 0;
        font-weight:600 !important;
    }

/*.img_sec_new:hover .img_sec_new_cont {
    top: 25%;
    transition: 0.5s ease-in-out;
}

.img_sec_new:hover::after {
    transition: 0.5s ease-in-out;
    top: 0;
}
*/
.new_img_sec {
    left: 50%;
}

.social_slide_img {
    position: relative;
    margin-top: 30px;
}

.social_slide_img_single {
    position: relative;
}

.social_slide_img_single_img {
    position: relative;
}

    .social_slide_img_single_img img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        height: 300px;
    }

.social_slide_img_single_img_cont_sec {
    position: relative;
    background: #fff;
    min-height: auto;
    padding: 0;
    border-radius: 10px;
    margin-top: 10px;
}

    .social_slide_img_single_img_cont_sec h6 {
        position: relative;
        margin: 0px 0 0 0;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        color: #102d67 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-style:italic;
    }

.atmanirbhar-slider .slick-slide {
    margin: 10px;
}

.skill_dev .slick-slide {
    margin: 10px;
}

.atmanirbhar-slider .slick-prev,
.slick-next {
    bottom: 32%;
}

.tailor_sec_right {
    position: relative;
    overflow:hidden;
}

.tailor_sec_right_single {
    position: relative;
}

.tailor_sec_right_single_img {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .tailor_sec_right_single_img img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        height: 300px;
    }

.tailor_sec_right_single_cont {
    position: relative;
    bottom: 0px;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
}

.tailor-slider {
    height: 350px;
}

    .tailor-slider .slick-slide {
        height: auto;
    }


    .tailor-slider .slick-track {
        transition: transform 0.6s ease-in-out;
    }

.social_ini_sec_body_single_grid_right span {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Lato' !important;
    text-align: justify;
    font-style:italic;
}

.social_ini_sec_body_single_grid_right p {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Lato' !important;
    text-align: justify;
    font-style: italic;
}

.tailor_sec_left p {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Lato' !important;
    text-align: justify;
    font-style: italic;
}

.social_ini_sec_body_single_grid_left {
    flex: 0 0 50%;
}

.social_ini_sec_body_single_grid_right {
    flex: 0 0 50%;
    padding: 0 0px;
}
/* 
.tailor-slider .slick-dots {
    position: absolute;
    bottom: 30%;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    display: block !important;
    right: -100%;
    left: auto;
} */
.new_img_list {
    left: 0px;
}

.swechha_img_sec {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .swechha_img_sec img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgb(0 0 0 / 51%);
        margin-top: 25px;
    }

.const_para {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    left: 0;
    background: transparent;
    color: #102d67 !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    text-align: center;
    font-weight: 600 !important;
}

.new_corporate_sec {
    position: relative;
    align-items: center;
    display:flex;
    justify-content:center;
}

    .new_corporate_sec.social_ini_sec_body_single ul li:before {
        display: none;
    }

.csr-table {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: "Segoe UI", sans-serif;
}

/* Header */
.csr-header {
    display: grid;
    grid-template-columns: 80px 1fr 160px;
    background: linear-gradient(90deg, #294f8a, #3f6fb5);
    color: #fff;
    font-weight: 600;
    padding: 14px 20px;
    font-size: 14px;
}

    .csr-header:last-child {
        text-align: right;
    }

.text_right {
    text-align: right;
}

/* Rows */
.csr-row {
    display: grid;
    grid-template-columns: 80px 1fr 160px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e8ecf3;
}

    .csr-row:last-child {
        border-bottom: none;
    }

/* Serial No */
.csr-no {
    width: 34px;
    height: 34px;
    background: #4da3ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Name Column */
.csr-name strong {
    display: block;
    color: #1f3c6b;
    font-size: 15px;
}

.csr-name span {
    font-size: 13px;
    color: #666;
}

/* Designation */
.csr-role {
    text-align: center;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
}

/* Badge Styles */
.chairman {
    background: #ff7a18;
    color: #fff;
}

.member {
    background: #ff9f43;
    color: #fff;
}

.member-outline {
    border: 1px solid #3f6fb5;
    color: #3f6fb5;
    background: transparent;
}

/* Responsive */
@media(max-width: 768px) {
    .csr-header {
        display: none;
    }

    .csr-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .csr-role {
        margin-left: 0;
    }
}

.ht_10px {
    height: 20px;
}

.modern_ambulance_grid_sec {
    position: relative;
    margin-top: 20px;
    display: block;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    overflow:hidden;
}

.modern_ambulance_grid_sec_single {
    position: relative;
}

    .modern_ambulance_grid_sec_single img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        border: none;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

/* .hsr_head .right_tab_single_head h6:before{left: 25%;}
.hsr_head .right_tab_single_head h6:after{right: 25%;} */
.hsr_inn_main_sec {
    position: relative;
    margin-top: 30px;
}

.hsr_inn_main_sec_single {
    position: relative;
    margin-bottom: 0px;
}

.hsr_inn_main_sec_single_head {
    position: relative;
}

    .hsr_inn_main_sec_single_head h6 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 22px;
        font-weight: 600;
        color: #354e7e;
        padding-left: 35px;
        margin-bottom: 25px;
        font-family: 'Lato';
        font-style: italic;
        font-style: italic;
    }

    .hsr_inn_main_sec_single_head p {
        position: relative;
        font-size: 15px;
        font-weight: 500;
        text-align: justify;
    }

.hsr_inn_main_sec_single_body {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.hsr_inn_main_sec_single_right {
    position: relative;
    overflow: hidden;
    z-index: 11;
}

    .hsr_inn_main_sec_single_right img {
        width: auto;
        position: relative;
    }

img.img_1 {
    border-radius: 10px;
    z-index: 99;
}

img.img_2 {
    position: relative;
    left: 35%;
    bottom: 50px;
    border-radius: 10px;
    border: 10px solid #fff;
    z-index: 99;
}

.sticky_main {
    position: sticky !important;
    top: 0;
    height: fit-content;
}

.hsr_inn_main_sec_single_right:after {
    position: absolute;
    top: 58px;
    right: 96px;
    content: "";
    width: 75%;
    height: 60%;
    background: transparent;
    border: 2px dashed #3b4a9a;
    border-radius: 20px;
    z-index: 0;
    -webkit-animation: moveVertical 3000ms infinite ease-in-out;
    animation: moveVertical 3000ms infinite ease-in-out;
    display: none;
}



@-webkit-keyframes moveVertical {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes moveVertical {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.hsr_inn_main_sec_single_left {
    position: relative;
}

    .hsr_inn_main_sec_single_left p {
        position: relative;
        font-size: 14px;
        font-weight: 500;
        font-family: 'Lato';
        color: #555;
        text-align: justify;
    }

    .hsr_inn_main_sec_single_left ul {
        position: relative;
    }

        .hsr_inn_main_sec_single_left ul li {
            position: relative;
        }

            .hsr_inn_main_sec_single_left ul li span {
                font-weight: 600;
                color: #003196;
                text-align: justify;
            }

    .hsr_inn_main_sec_single_left ul {
        list-style: none;
        padding-left: 0;
        counter-reset: item;
    }

        .hsr_inn_main_sec_single_left ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            counter-increment: item;
            font-size: 15px;
            color: #555;
            font-family: 'Lato';
            text-align: justify
        }

            .hsr_inn_main_sec_single_left ul li::before {
                content: counter(item) ".";
                position: absolute;
                left: 0;
                top: 0;
                font-weight: 600;
                color: #003196;
                font-size: 16px;
            }

.hsr_inn_main_new_sec {
    position: relative;
    text-align: center;
}

    .hsr_inn_main_new_sec img {
        width: auto;
        object-fit: cover;
    }

.miss_1 {
    position: relative;
    width: 400px !important;
    height: 400px !important;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    right: -10%;
}

img.miss_2 {
    width: 40%;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 5px solid #fff;
}

.vision_body_sec {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
}

.vision_body_sec_left {
    position: relative;
    background: url(../AboutNHSRCLContent/images/Vision-bg-11.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px 0 0 10px;
    display:none;
}

.vision_body_sec_right {
    position: relative;
/*    background: linear-gradient(135deg, #354e7e, #5fa8fc);*/
background:none;
    padding: 0px;
    border-radius: 0 10px 10px 0;
}

    .vision_body_sec_right p {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Lato';
        color: #555;
        text-align: justify;
    }

.hsr_logo_main_sec {
    position: relative;
}


.content-section {
    padding: 0px 0;
}

.section_title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
    text-align:center;
}

.main_title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 10px;
    font-family: 'Lato';
    text-align: center;
}

.description_new {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
    font-family: 'Lato';
    text-align: justify;
}

.logo_section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    align-items: center;
}

.logo_wrapper {
    width: 50%;
    margin: 30px auto -70px;
    text-align: center;
}

    .logo_wrapper img {
        width: 100%;
        object-fit: cover;
    }

.event_sec_new {
    position: relative;
    margin-top: 30px;
}

.event_sec_new_left {
    position: relative;
}

.hsr_inn_main_sec_single_head {
    position: relative;
}

.event_sec_new_body {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.event_sec_new_left {
    position: relative;
}

    .event_sec_new_left p {
        position: relative;
        font-size: 14px;
        color: #555;
        font-family: 'Lato';
        text-align: justify;
    }

        .event_sec_new_left p span {
            color: #3b4a9a;
            font-weight: 600;
        }

.event_sec_new_right {
    position: relative;
    display: flex;
    gap: 30px;
}

    .event_sec_new_right:after {
        position: absolute;
        content: '';
        background: url(../AboutNHSRCLContent/images/bg-sc.png);
        width: 400px;
        height: 350px;
        background-repeat: no-repeat;
        z-index: 0;
        top: -10px;
    }

.ev_img_1 {
    width: 270px;
    height: 370px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    top: 80px;
    z-index: 99;
}

.ev_img_2 {
    width: 270px;
    height: 370px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 99;

}

.event_img_sec {
    width: 100%;
    position: relative;
    border-radius: 10px;
}

    .event_img_sec img {
        width: 100%;
        border-radius: 10px;
    }

.event_sec_new_body {
    position: relative;
    align-items: center;
}

.photo_gal_sec_new {
    position: relative;
    margin-top: 30px;
}

.photo_gal_sec_new_body {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0px;
    margin-top: 30px;
    text-align: center;
}

.photo_gal_sec_new_single {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

    .photo_gal_sec_new_single img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

/*    .photo_gal_sec_new_single:after {
        content: '';
        position: absolute;
        background: #375080;
        height: 100%;
        width: 100%;
        top: -100%;
        left: 0;
        z-index: 99;
        transition: 0.5s ease-in-out;
    }

    .photo_gal_sec_new_single:hover::after {
        top: 0;
    }*/

/*.photo_gal_sec_new_single_cont {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    padding: 15px;
    bottom: -150%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 3px solid transparent;
    outline-offset: -10px;
    transition: 0.5s ease-in-out;
    display:none;
}*/


.photo_gal_sec_new_single_cont {
    position: absolute;
    z-index: 999;
    top: auto;
    left: 0;
    padding: 15px;
    bottom: 8px;
    align-items: center;
    justify-content: center;
    outline: 3px solid transparent;
    outline-offset: -10px;
    transition: 0.5s ease-in-out;
    display: flex;
    background: #607eb8;
    height: fit-content;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    right: 0;
    left: 0;
}

    .photo_gal_sec_new_single_cont p {
        position: relative;
        color: #fff;
        font-weight: 500;
        margin: 0px;
        text-align: center;
        font-size: 16px;
        transition: 0.5s ease-in-out;
        font-family: 'Lato';
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

.photo_gal_sec_new_single:hover .photo_gal_sec_new_single_cont {
    bottom: 0;
    outline: 3px solid #fff;
    transition: 0.5s ease-in-out;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    right: 0;
    left: 0;
}

.research_body_sec {
    position: relative;
}





.publications-container {
    max-width: 100%;
    margin: 0 auto;
}

.papers-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.paper-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

    .paper-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #1e3a8a, #3b82f6);
        border-radius: 12px 0 0 12px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .paper-card:hover {
        box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
        transform: translateY(-4px);
    }

        .paper-card:hover::before {
            opacity: 1;
        }

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.paper-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-category {
    background: #dbeafe;
    color: #1e40af;
}

.badge-year {
    background: #fef3c7;
    color: #92400e;
    display: none;
}

.paper-title {
    font-size: 20px;
    color: #1e3a8a;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    font-family: 'Lato';
}

    .paper-title a {
        color: #1e3a8a;
        text-decoration: none;
        transition: color 0.3s;
        font-family: 'Lato';
    }

        .paper-title a:hover {
            color: #3b82f6;
        }

.authors-box {
    background: #f9fafb;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid #3b82f6;
}

.authors {
    font-size: 16px;
    color: #3F51B5;
    margin-bottom: 6px;
    font-family: 'Lato';
    font-weight: 600;
}

    .authors strong {
        color: #1f2937;
        font-weight: 600;
    }

.institution {
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato';
}

    .institution::before {
        content: '👤';
        font-size: 14px;
        display: none;
    }

.abstract-section {
    margin: 20px 0;
}

.abstract-label {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.abstract-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-family: 'Lato';
}

.paper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    gap: 20px;
    flex-wrap: wrap;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .read-more-btn:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    }

.stats {
    display: flex;
    gap: 20px;
    display: none;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.stat-icon {
    font-size: 16px;
}

.research_body_sec {
    position: relative;
    margin: 50px 0 0 0;
}


.miss_vis_main_sec {
    position: relative;
}

.miss_vis_main_sec_single {
    position: relative;
}



.main_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    padding: 40px;
}

.section_card {
    text-align: center;
    position: relative;
    padding: 30px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .section_card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        /* background: linear-gradient(180deg, #1e3a8a, #3b82f6); */
        border-radius: 12px 0 0 12px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .section_card:nth-child(2)::before {
        background: linear-gradient(180deg, #db0f19, #db0f19);
    }

    .section_card:nth-child(1)::before {
        background: linear-gradient(180deg, #6f42c1, #6f42c1);
    }

    .section_card:hover {
        box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
        transform: translateY(-4px);
    }

        .section_card:hover::before {
            opacity: 1;
        }

/* Circle with dashed border */
.circle_wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    position: relative;
}

.dashed_circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission_dashed {
    border-color: #dc3545;
}

.vision_dashed {
    border-color: #6f42c1;
}

/* Solid circle inside */
.solid_circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 8px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.mission_solid {
    border-color: #dc3545;
}

.vision_solid {
    border-color: #6f42c1;
}

/* Icon inside circle */
.circle_icon {
    width: 50px;
}

    .circle_icon img {
        width: 100%;
        object-fit: cover;
    }

.mission_icon {
    color: #dc3545;
}

.vision_icon {
    color: #6f42c1;
}

/* Title section */
.title_section {
    margin-bottom: 10px;
}

.title_label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0px;
    font-style: oblique;
    font-family: 'Roboto'
}

.title_highlight {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Roboto';
}

.mission_highlight {
    color: #dc3545;
}

.vision_highlight {
    color: #6f42c1;
}

/* Decorative line */
.decorative_line {
    width: 120px;
    height: 2px;
    margin: 0 auto 20px auto;
    position: relative;
    background: #ddd;
}

    .decorative_line::before {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background: #dc3545;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.vision_line::before {
    background: #6f42c1;
}

/* Small icon */
.small_icon {
    width: 40px;
    margin: 20px auto;
    opacity: 0.6;
}

    .small_icon img {
        width: 100%;
    }

.mission_small {
    color: #dc3545;
}

.vision_small {
    color: #6f42c1;
}

/* Content text */
.content_text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    padding: 0 20px;
}

.mission_list {
    list-style: none;
    text-align: left;
}

.mission_item {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 18px !important;
    font-size: 15px !important;
    line-height: 1.8;
    color: #555 !important;
    font-weight: 400;
    font-style: italic !important;
}

    .mission_item::before {
        content: '◆';
        position: absolute;
        left: 0;
        color: #dc3545;
        font-size: 14px;
        top: 0px;
    }
.vis_it{
    position:relative;
}
.vis_it::before {
    color: #6f42c1;
    content: '◆';
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 0px;
    display:none;
}

/* Divider line between sections */
.vertical_divider {
    position: absolute;
    width: 2px;
    height: 80%;
    background: #e0e0e0;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 968px) {
    .main_container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vertical_divider {
        display: none;
    }

    .content_text {
        padding: 0;
    }
}


.doc-content h3 {
    position: relative;
    font-size: 23px;
    margin: 0 0 10px 0;
    font-family: 'Lato';
    font-weight: 600;
    color: #000;
}

.doc-content p {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Lato';
    position: relative;
    color: #555;
}

.doc-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.skill_dev .social_slide_img_single_img_cont_sec {
    min-height: 75px;
}




.atmanirbhar-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    bottom: -10px;
}

    .atmanirbhar-slider .slick-dots li {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 10px;
        height: 10px
    }

        /* base dot */
        .atmanirbhar-slider .slick-dots li button {
            width: 25px;
            height: 10px;
            background: rgba(0, 0, 0, 0.48);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 0 !important;
        }

        /* active pill */
        .atmanirbhar-slider .slick-dots li.slick-active {
            width: 25px;
            background: none;
            border: none;
            transition: 0.5s ease-in-out;
        }

            /* progress fill */
            .atmanirbhar-slider .slick-dots li.slick-active button::after {
                content: "";
                position: absolute;
                inset: 0;
                background: #000;
                animation: dotProgress 2s linear forwards;
                border-radius: 50px;
                border: 1px solid #9d8e8e;
                width: 100%;
                transition: 0.5s ease-in-out;
            }

        /* remove default slick dot */
        .atmanirbhar-slider .slick-dots li button::before {
            display: none;
        }

/* keyframes */
@keyframes dotProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.atmanirbhar-slider .slick-dots li button.progress::after {
    animation: dotProgress 2s linear forwards;
    transition: 0.5s ease-in-out;
}

.atmanirbhar-slider .slick-dots li:before {
    display: none;
}





.skill-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    bottom: 0px;
}

    .skill-slider .slick-dots li {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 10px;
        height: 10px
    }

        /* base dot */
        .skill-slider .slick-dots li button {
            width: 25px;
            height: 10px;
            background: rgba(0, 0, 0, 0.48);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 0 !important;
        }

        /* active pill */
        .skill-slider .slick-dots li.slick-active {
            width: 25px;
            background: none;
            border: none;
            transition: 0.5s ease-in-out;
        }

            /* progress fill */
            .skill-slider .slick-dots li.slick-active button::after {
                content: "";
                position: absolute;
                inset: 0;
                background: #000;
                animation: dotProgress 2s linear forwards;
                border-radius: 50px;
                border: 1px solid #9d8e8e;
                width: 100%;
                transition: 0.5s ease-in-out;
            }

        /* remove default slick dot */
        .skill-slider .slick-dots li button::before {
            display: none;
        }

/* keyframes */
@keyframes dotProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.skill-slider .slick-dots li button.progress::after {
    animation: dotProgress 2s linear forwards;
    transition: 0.5s ease-in-out;
}

.skill-slider .slick-dots li:before {
    display: none;
}






.honor_img_sec .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    bottom: 0px;
}

    .honor_img_sec .slick-dots li {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 10px;
        height: 10px
    }

        /* base dot */
        .honor_img_sec .slick-dots li button {
            width: 25px;
            height: 10px;
            background: rgba(0, 0, 0, 0.48);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 0 !important;
        }

        /* active pill */
        .honor_img_sec .slick-dots li.slick-active {
            width: 25px;
            background: none;
            border: none;
            transition: 0.5s ease-in-out;
        }

            /* progress fill */
            .honor_img_sec .slick-dots li.slick-active button::after {
                content: "";
                position: absolute;
                inset: 0;
                background: #000;
                animation: dotProgress 2s linear forwards;
                border-radius: 50px;
                border: 1px solid #9d8e8e;
                width: 100%;
                transition: 0.5s ease-in-out;
            }

        /* remove default slick dot */
        .honor_img_sec .slick-dots li button::before {
            display: none;
        }

/* keyframes */
@keyframes dotProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.honor_img_sec .slick-dots li button.progress::after {
    animation: dotProgress 2s linear forwards;
    transition: 0.5s ease-in-out;
}

.honor_img_sec .slick-dots li:before {
    display: none;
}


.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.custom-prev {
    left: 0px;
}

.custom-next {
    right: 0px;
}

    .custom-prev i,
    .custom-next i {
        font-size: 20px;
        color: #000;
        line-height: 30px;
        font-weight: 600;
    }



.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-content {
    max-width: 500px;
    max-height: 500px;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
    width: 500px;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 115, 64, 0.45);
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .lightbox-close:hover {
        background: rgba(255,255,255,0.2);
        transform: rotate(90deg);
    }

.irp_new_img_sec {
    position: relative;
}

    .irp_new_img_sec img {
        width: 100%;
        object-fit: cover;
        height: 300px;
    }
    .irp_new_img_sec p {
        text-align: center;
        margin: 5px 0 0 0;
        font-style: italic;
        color: #102d67 !important;
        font-weight: 600 !important;
    }

    .cosila_initi {
        position: relative;
    }

    .cosila_initi .new_img_sec {
        left: 0px;
    }

    .cosila_initi .img_sec_new {
        width: 100%;
    }

    .cosila_initi .social_ini_sec_body_single_grid_left img {
        width: 100%;
        height: 300px;
        border-radius: 10px;
        border: none;
    }

    .cosila_initi .social_ini_sec_body_single_grid_left {
        flex: 0 0 50%;
        overflow: hidden;
    }

    .cosila_initi .img_sec_new::after {
        display: none;
    }

    .cosila_initi .social_ini_sec_body_single_grid_left {
        margin-top: 0px;
    }

.tailor_sec_new_after .tailor_sec_left {
    position: relative;
    flex: 0 0 50%;
}

.entrepuner_sec_new .social_ini_sec_body_single_grid_left img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

.entrepuner_sec_new .social_ini_sec_body_single_grid_left {
    overflow: hidden;
}

.affected_pople_sec_new .social_ini_sec_body_single_grid_left img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

.affected_pople_sec_new .img_sec_new {
    width: 100%;
}

.affected_pople_sec_new .new_img_list {
    left: 0px;
}

.affected_pople_sec_new {
    display: flex;
    gap: 50px;
}

    .affected_pople_sec_new div {
        flex: 0 0 48%;
        overflow: hidden;
    }

.gallery-item img {
    transition: 0.5s ease-in-out;
}

    .gallery-item img:hover {
        transition: 0.5s ease-in-out;
        transform: scale(1.02);
    }

.social_slide_img_single_img img {
    transition: 0.5s ease-in-out;
}

    .social_slide_img_single_img img:hover {
        transition: 0.5s ease-in-out;
        transform: scale(1.07)
    }

#innovation-logo {
    top: 30px;
}

.hsr_innovtions {
    position: relative;
    display: flex;
    gap: 30px;
}

    .hsr_innovtions .hsr_inn_main_sec_single_right {
        flex: 0 0 50%;
        margin: 0px;
    }

        .hsr_innovtions .hsr_inn_main_sec_single_right img {
            border-radius: 10px;
            
        }
    .hsr_innovtions .hsr_inn_main_sec_single_right {
        display: none;
    }
        /*line breakeup form paragraph*/
        .skill-desc {
            line-height: 1.8;
            color: #555;
            font-size: 15px;
            white-space: normal;
        }

    .skill-desc p {
        margin: 0 0 18px 0;
    }

        .skill-desc p:last-child {
            margin-bottom: 0;
        }

.new_cls_hid_sec_irp .social_slide_img {
    overflow:hidden;
    margin:0px !important;
}
.amb_left{
    text-align:justify;
}
.new_cls_att{
    overflow:hidden;
    margin:0px !important;
}
.row_rev {
    flex-direction: row-reverse;
}
.text_blue_sec{
    font-size: 16px !important;
    font-weight: 400;
    color: #102d67 !important;
    font-family: 'Lato' !important;
    font-style: italic;
    text-align: center;
    margin: 10px 0 0 0;
}
.vission_Mission_item{
    font-style:italic !important;
}
@media screen and (min-width: 1911px) and (max-width: 2200px) {
    .vission_Mission_item {
        font-size: 18px !important;
    }
}

.events_img_new_img img{
    border-radius:10px;
}
    .events_img_new_img img:hover {
        transition: 0.5s ease-in-out;
        transform: scale(1.02) !important;
    }
.event_img_sec img {
    border-radius: 10px;
}
    .event_img_sec img:hover {
        transition: 0.5s ease-in-out;
        transform: scale(1.02) !important;
    }