
/* prerequisit */

:root{
    --comn-white-color: white;
    --comn-black-color: black;
    --comn-text-color: #5C6680;
    --comn-para-fs: 16px;
    --comn-yellow-color: #FFC600;
    --comn-head-color: #07294D;


}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}
a{
    text-decoration: none;
}
h1 , h2 , h3 , h4 , h5 , p , ul , li , a {
    padding: 0;
    margin-bottom: 0;
} 
ul li {
    list-style: none;
    margin-bottom: 0;
}
section{
    padding: 100px 0; 
}

 /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> banner-section-css <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
 
 .site-header{
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     position: relative;
 }
 .site-branding{
     display: flex;
     align-items: center;
 }
 a:hover{
     text-decoration: none !important;
 }
.menu-item:nth-child(2) {
    border-left: 2px solid black;
    margin-left: 10px;
    padding-left: 10px;
}
 .menu-item a{
     text-decoration: none;
     color: var(--comn-black-color);
     font-size: 18px;
     font-weight: 600;
 }
 .menu-bar{
     display: none;
 }
 
 .main-navigation{
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-left: 100px;
 }
 .header_btn{
     padding: 0;
     background-color: transparent;
     border: none;
 }
 .header_btn a{
     font-size: 18px;
     background-color: var(--comn-head-color);
     color: var(--comn-white-color);
     border: 2px solid var(--comn-head-color);
     border-radius: 20px;
     padding: 10px 30px;
     transition: 0.25s linear;
}
.header_btn a:hover{
    background-color: transparent;
    color: var(--comn-head-color);
    
}
.banner__section{
    padding: 0;
    min-height: 70vh;
    background-image: url("../images/nda-banner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.countdown__container{
    position: relative;
    height: 70vh;
}
.countdown__container .countdown__wrapper{
    padding: 20px 0 ;
    position: absolute;
    width: 100%;
    bottom: 0px;
    transform: translateY(100px);
    
}
.count_card{
    padding: 30px 25px;
    background-color: var(--comn-white-color);
    border-radius: 8px;
    border-bottom: 3px solid var(--comn-yellow-color);
    text-align: center;
    box-shadow: 0 0 20px 0 rgb(190 190 190 / .5);
}
.count_num{
    color: var(--comn-head-color);
    font-size: 40px;
    font-weight: 600;
}
.count_text{
    font-size: 18px;
    font-weight: 500;
    color: var(--comn-black-color);
}

.main-navigation.toggled ul {
    position: absolute;
    background-color: var(--comn-head-color);
    border-radius: 10px;
    margin: 0 20px;
    width: 90%;
    top: 75px;
    left: 0px;
    padding: 10px;
    z-index: 99;
}
.main-navigation.toggled ul li{
    padding-left: 10px;
}
.main-navigation.toggled ul li a{
    color: white;
}
.menu-menu-1-container {
    margin-left: auto;
    margin-right: 20px;
}

 /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nda-form-section-css <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.nda_form_section{
    padding-top: 140px;
    padding-bottom: 0;
}

.comn_heading{
    font-family: "Archivo",Sans-serif;
    color: var(--comn-head-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight{
    color: var(--comn-yellow-color);
}
.icon_list{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.icon_wrap{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--comn-head-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon_wrap i{
    font-size: 12px;
    color: var(--comn-white-color);
}
.text_wrap{
     margin-left: 20px;
}
.text_wrap p{
    color: var(--comn-text-color);
    font-family: "Archivo",Sans-serif;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 0 !important;
}
.request_form_wrapper {
    position: relative;
    background-color: var(--comn-head-color);
    border-radius: 10px;
    padding: 30px 35px;
    width: 90%;
    height: max-content;
}
.form_head{
    color: var(--comn-white-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
}

.request_form_wrapper input ,
.request_form_wrapper select , 
.request_form_wrapper form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    border: none;
     color: var(--comn-text-color);
    font-family: "Archivo",Sans-serif;
    font-size: 19px;
    font-weight: 500;
}
.loader {
    display: none;
}
.loader.show{
    display: block;
}
.loader {
  height: 0;
  width: 0;
  padding: 10px;
  border: 5px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  position: absolute;
  left: 47%;
  bottom: 10px;
  -webkit-animation: rotate 2s infinite linear;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

.request_form_wrapper p{
    margin-bottom: 0 !important;
}
.nda_from_content_wrapper .col-12.col-lg-5.d-flex{
    justify-content: flex-end;
}
.request_form_wrapper form input[type="submit"]{
    background-color: var(--comn-yellow-color);
    color: var(--comn-white-color);
    margin-bottom: 15px;
    cursor: pointer;
}

.button_wrapper{
    display: flex;
    margin-top: 40px;
}

.button_wrapper .btn{
    padding: 10px 20px;
    border-radius: 10px;
    width: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.button_wrapper .btn a{
     color: var(--comn-white-color);
     font-family: "Archivo", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3.5px;
}
.button_wrapper .call_btn{
    background-color: var(--comn-head-color);
    margin-right: 20px;
}
.button_wrapper .whatsap_btn{
    background-color: #009125;
}
.form_control{
        margin-bottom: 30px;
}
.form_control .error_msg{
    color: red;
    display: none;
}
.error {
        border: 2px solid red !important;
 }
.success {
        border: 2px solid green !important;
}
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> social_rating_section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.social_rating_section{
    padding: 60px 0 50px 0;
}
    /* .social_rating_img img{
        width: 200px;
        height: 200px;
        object-fit: contain;
    } */

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nda-selection-section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.nda-selection-section{
    padding: 0;
}
.nda_head_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.underline{
    width: 30%;
    height: 1px;
    background-color: var(--comn-yellow-color);
    margin-bottom: 20px;
}
.nda_head_wrapper p {
    color: var(--comn-black-color);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.selected_students_wrapper{
    margin-top: 40px;
}
.students_row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.students_col{
    border-radius: 10px;
    width: calc(90%  / 5);
    margin-bottom: 25px;
    height: 100%;
}
.students_card{
    min-height: 328px;
    background-color: #01077F;
     border-radius: 10px;
}
.student_img img{
    width: 100%;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}
.student_details{
    color: white;
    padding: 20px;
}
.student_name{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.student_qualification{
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nda-course-section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.nda_course_wrapper{
    margin-top: 40px;
}
.course_card{
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    transition: 0.25s ease;
}
.course_card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.course_img img{
    border-radius: 10px;
    border: 2px solid var(--comn-white-color);
    width: 100%;
}
.course_content{
    margin-top: 20px;
}
.course_title{
    color: var(--comn-white-color);
    font-family: "Archivo", Sans-serif;
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}
.course_info{
    color: var(--comn-white-color);
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}
.course_content ul li{
    list-style: disc;
    text-align: left;
}
.enroll_btn button{
    font-size: 16px;
    background-color: var(--comn-head-color);
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--comn-white-color);
    transition: 0.25s ease;
    border: 2px solid var(--comn-head-color);
    font-weight: 600;
}
.enroll_btn button:hover{
    background-color: var(--comn-white-color);
    color: var(--comn-head-color);
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> popup form <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.btn-close{
    padding: 0px 10px;
    border-radius: 5px;
}
.modal-body{
    display: flex;
    justify-content: center;
    padding: 0px;
}
.modal-body .request_form_wrapper{
    background-color: var(--comn-text-color);
}
.modal-dialog {
    max-width: 800px;
}
.modal-content{
    border-radius: 10px;
}
.modal-title {
    line-height: 1;
    font-size: 26px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> why choose bda section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.why_shoose_bda_section{
    padding-top: 0px;
}
.why_choose_bda_wrapper{
    margin-top: 25px;
}
.why_choose_bda_card{
    background-color: var(--comn-head-color);
    border-radius: 10px;
    padding: 20px;
    transition: 0.25s ease;
    height: 100%;
    margin: 0;
    border: 3px solid var(--comn-head-color);
}
.why_choose_bda_card:hover{
    background-color: transparent;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(44, 29, 142, 0.3) 0px 3px 7px -3px;
}
.why_choose_bda_card:hover .bda_title h3{
    color: var(--comn-head-color);
}
.why_choose_bda_card:hover .bda_img{
    background-color: var(--comn-head-color);
}
.bda_img{
    background-color: var(--comn-white-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
}
.bda_img img{
    width: 100%;
    border-radius: 10px;
    background-color: var(--comn-white-color);
}
.bda_title h3{
    color: var(--comn-white-color);
    font-family: "Archivo", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}
.why_choose_bda_card.row.align-items-center {
    margin-left: 0px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> join-batch-section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.join_batch_section{
    background-image: url("../images/Untitled-design-2024-01-06T125609.647.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 60px 0;
}

.overlay_effect{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--comn-black-color);
    opacity: 0.8;
    z-index: 1;
}
.content_wrapper{
    position: relative;
    z-index: 2;
}
.content_wrapper h1{
    font-family: "Archivo", Sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: center;
}
.content_wrapper h2{
    font-family: "Archivo", Sans-serif;
    font-size: 33px;
    font-weight: 800;
    color: #FFC600;
    text-align: center;
}
.enroll_btn {
    display: flex;
    justify-content: center;
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> experts_section <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.experts_details{
    padding: 30px 20px;
    border-radius: 0 0 10px 10px;
}
.ssb_experts_cards{
    border-radius: 10px;
    background-color: rgba(245,245,245,0.97);
    height: 100%;
}
.experts_img img{
    border-radius: 10px 10px 0 0;
    width: 100%;
}
.experts_title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.experts_desc{
    color:#7A7A7A;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.our_team_section{
    padding-top: 0;
}
.sutdents_col{
    height: 100%;
}
/*.our_team_section .students_col{*/
/*    width: calc(96% / 5);*/
/*}*/
.our_team_section .student_name{
    color: var(--comn-black-color);
    font-size: 18px;
}
.our_team_section .student_qualification{
    font-size: 15px;
    color: #7A7A7A;
}
.our_team_section .students_card{
    background-color: rgba(245,245,245,0.97);
}

.life_at_bda_section{
    padding: 0;
}

.testimonial_img img{
    border: 2px solid black;
}

.callback_section{
    position: relative;
    display: flex;
}
.background_color_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: var(--comn-head-color);
    z-index: 1;
}
.background_img_overlay{
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image:  url("../images/Untitleddesign.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.23;
}
.callback_content_wrapper{
    position: relative;
    z-index: 2;
}
.callback_head{
    color: var( --comn-white-color);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}
.callback_para{
    color: var(--comn-white-color);
    font-size: 16px;
    font-weight: 400px;
    margin-bottom: 30px;
}
.contact_info{
    display: flex;
    margin-bottom: 20px;
}
.info_img{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
}
.info_img i{
    color: #FFC600;
    font-size: 25px;
}
.info_title{
    color: var(--comn-white-color);
    font-size: 24px;
    margin-bottom: 10px;
}
.info_details{
    margin-left: 20px;
}
.info_details p{
    font-size: 16px;
    color: var(--comn-white-color);
}
.callback_section .request_form_wrapper{
    position: relative;
    z-index: 2;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> thankyou page css <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
 .thankyou_section{
            background-color:#01077F;
        }
        .thankyou_section h2{
            color: white;
            font-size: 34px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
        }
        .thankyou_section h2 span{
            color: #FFC600;
        }
        .thankyou_section p{
            color: white;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }
        .thankyou_section p::after{
            position: absolute;
            content: " ";
            bottom: -5%;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            border-radius: 10px;
            background-color: #FFC600;
        }


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> media query <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

@media only screen and (max-width: 1200px){
    section{
        padding: 80px 0;
    }
    .count_card{
        padding: 20px;
    }
    .count_num{
        font-size: 36px;
    }
    .count_text{
        font-size: 14px;
    }
    .comn_heading {
    font-size: 40px;
    }
   .form_head {
    font-size: 25px;
    }
    .text_wrap p {
    font-size: 16px;
}
.text_wrap{
     margin-left: 10px;
}
.request_form_wrapper input, .request_form_wrapper select, .request_form_wrapper form button {
    font-size: 16px;
}
.button_wrapper .btn {
    padding: 10px;
}
.button_wrapper .btn a {
    font-size: 14px;
}
.students_col{
    width: calc(90%  / 3);
}
.background_color_overlay{
    width: 100%;
}
.background_img_overlay{
    width: 100%;
}
}

@media only screen and (max-width: 992px){
    section{
        padding: 60px 0;
    }
     .count_card{
        padding: 10px;
    }
     .count_num{
        font-size: 26px;
    }
     .count_text{
        font-size: 12px;
    }
     .comn_heading {
    font-size: 36px;
    }
    .nda_form_section {
    padding-top: 100px;
    }
    .nda_head_wrapper p{
        font-size: 18px;
    }
    .course_title {
    font-size: 20px;
    }
    .students_card {
    margin-bottom: 25px;
}
    .why_choose_bda_wrapper:last-of-type{
        margin-top: 0px;
    }
    .why_choose_bda_wrapper .col-12.col-lg-4{
        margin-bottom: 20px;
    }
     .countdown__container .countdown__wrapper {
    transform: translateY(70px);
}
.nda_course_wrapper .col-12.col-md-6.col-lg-4 {
    margin-bottom: 20px;
}
.students_col{
    width: calc(90%  / 2);
}
.ssb_experts_wrapper .col-12.col-md-6.col-lg-3{
    margin-bottom: 20px;
}
.main-navigation {
    margin-left: 15px;
}
.menu-item {
    margin-left: 0;
}
.menu-item a{
    color: white !important;
}
.bda_img img {
    width: 100px;
}
.menu-item:nth-child(2) {
    border-left: none;
    margin-left: 0px;
    padding-left: 0px;
}
.callback_section .request_form_wrapper {
    background-color: #838282;
}
.menu-toggle{
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 15px;
}
.content_wrapper h1 {
    font-size: 36px;
}
.content_wrapper h2 {
    font-size: 30px;
}
}

@media only screen and (max-width: 768px){
    section{
        padding: 40px 0;
    }
    .countdown__container .countdown__wrapper {
    position: relative;
    transform: translateY(253px);
    padding-left: 20px;
}
.countdown__container {
    position: relative;
    height: 212px;
}
.comn_heading {
    font-size: 30px;
}
.course_title {
    font-size: 18px;
}    
.course_info {
    font-size: 15px;
}
.enroll_btn a {
    font-size: 15px;
}
 .nda_form_section {
    padding-top: 190px;
}
.button_wrapper {
    margin-top: 30px;
}
.request_form_wrapper {
    margin-top: 30px;
    width: 100%;
}
.nda_from_content_wrapper .col-12.col-lg-5.d-flex {
    justify-content: center;
}
.students_col{
    width: calc(100% / 1);
}
.why_choose_bda_card {
    padding: 15px;
}
.bda_title h3 {
    font-size: 16px;
}
 .nda_head_wrapper p{
        font-size: 16px;
    }
    .header_btn a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .banner__section{
    /*min-height: 120px;*/
    background-image: url("../images/mobile-bg.webp");
    min-height: 250px;
    background-position: right;
}
.countdown__wrapper > div:nth-child(3),
.countdown__wrapper > div:nth-child(4) {
  display: none;
}
.button_wrapper .call_btn {
    margin-right: 0px;
}
.button_wrapper {
    gap: 5px;
    flex-wrap: wrap;
}
.content_wrapper h1 {
    font-size: 32px;
}
.content_wrapper h2 {
    font-size: 24px;
}
.students_row .students_col:last-child {
    margin-bottom: 0;
}
.students_row .students_col:last-child .students_card{
    margin-bottom: 0px;
}
.modal-body .request_form_wrapper{
    width: 95%;
    margin: 20px 0px;
}
.menu-menu-1-container{
    display: none;
}
}



@media only screen and (max-width: 576px){


}