@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


:root {
    --textwhite: rgb(247, 247, 247);
    --btn-color: #585858;
    --main-bg-color: #fff;
    --purple-color: #382c79;
    --yellow-color: #efb31d;
    --orangered-color: #e26c23;
    --red-color: #e22028;
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #dadada;
    --light-gray-color: #eee;
    --light-bg-color: #f7f8fc;
    --nse-purple: #392e7d;
    --nse-orange: #e96f24;
    --nse-red: #e41f28;
    --nse-yellow: #f1b519;
    --nse-light-cyan: #4cd9f5b0;
    --nse-light-purple: #4c3ea7a6;
    --nse-light-orange: #fd7e14c4;
    --nse-light-red: #f33c44a8;
    --nse-light-yellow: #f9c53da8;
    --nse-ex-light-cyan: #0dcaf066;
    --nse-ex-light-purple: #392e7d89;
    --nse-ex-light-orange: #fd7e1461;
    --nse-ex-light-red: #e41f284f;
    --nse-ex-light-yellow: #f1b51952;
    --bg-main-theme: #f3f6f8;
    --bg-secondary-theme: #f7fcff;
    --bs-black: #000;
    --bs-blue: #0d6efd;
    --bs-dark-blue: #5863a6;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0080ff;
    --bs-secondary: #6c757d;
    --bs-success: #18d26b;
    --bs-info: #00b8d4;
    --bs-warning: #ffa800;
    --bs-danger: #ff3f3f;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-light-green: #58baab;
    --card-line-height: 1.2em;
    --card-padding: 1em;
    --card-radius: 0.5em;
    --color-green: #558309;
    --color-gray: #e2ebf6;
    --color-dark-gray: #c4d1e1;
    --radio-border-width: 2px;
    --radio-size: 1.5em;
    --ex-light-purple: #f4effc;
    --shadow-color1: rgba(255, 255, 255, 0.1);
    --shadow-color2: rgba(50, 50, 93, 0.25);
    --shadow-color3: rgba(0, 0, 0, 0.3);
    --inner-gap: 2.5rem;
    --border-radius-btn: 1rem;
    --gradient-color: -webkit-linear-gradient(
      left,
      var(--nse-purple),
      var(--nse-red)
    );
    --gradient-white-color: -webkit-linear-gradient(
      left,
      var(--white-color),
      var(--nse-red)
    );
  }




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Serif", serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

::-webkit-scrollbar{
    width: 5px;
}
::-webkit-scrollbar-track{
    width: 5px;
    background-color: #372C7A;
}
::-webkit-scrollbar-thumb{
    border-radius: 30px;
    width: 5px;
    background-color: #E07122;
}
.heroHeading{
    font-size: 3rem;
}
.headingone{
    font-size: 1.8rem;
}
.headingtwo{
    font-size: 1.6rem;
}

.cardheadingone{
    font-size: 1.3rem;
}
.cardheadingtwo{
    font-size: 1.2rem;
}

.cardparaone{
    font-size: 1rem;
}
.cardparatwo{
    font-size: 0.9rem;
}


.paraone{
    font-size: 1.1rem;
}
.paratwo{
    font-size: 1rem;
    font-weight: 400;
}


.fade{
    background-color: #0000009a !important;
}

#main {
    width: 100%;
    overflow-x: hidden;
}

#page1 {
    min-height: 90vh;
    width: 100vw;
    position: relative;
    z-index: 2;
    /* Ensure it's above any overlapping content */

}

#page1::before {
    content: '';
    /* Required for pseudo-elements */
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    z-index: -1;
    /* Keeps it behind other content */
    background-image: url(../image/NSE\ Academy\ Hero\ Banner\ -\ 1920x1080\ \ \(1\).png);
    background-position: top;
    background-size: cover;
    opacity: 1;
}

#page1 #nav {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2vh 5vw;
    background-color: #fff;
}
#page1 .navMenu{
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;

}
#page1 .navMenu a{
    text-decoration: none;
    color: #000;
}

#page1 #nav img {
    width: 13%;
}

#center {
    min-height: 85vh;
    width: 100%;
    color: #fff;
    padding: 10vh 6vw;
    display: flex;
}
#center .left{
    width: 50%;
    height: 100%;
}
#center .right{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}


.brochure-form {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.brochure-form h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-group input::placeholder {
    color: #aaa;
}

.brochure-form p {
    font-size: 12px;
    color: #666;
    margin: 15px 0;
}

.brochure-form a {
    color: #0056b3;
    text-decoration: none;
}

.brochure-form button {
    background: #3A2D7F;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.brochure-form button:hover {
    background: #003f91;
}

#center h1 {
    width: 100%;
    line-height: 1.1;
}

#center h1 span,
h4 span {
    color: #E07122;
}

.typs {
    margin-top: 3vh;
}

.typs i {
    font-size: 1.5rem;
    font-weight: 200;
}



#center img {
    width: 87%;
    height: 1.5%;

}

#center h3 {
    margin-top: 2.5vh;
    font-weight: 400;
    text-align: left;
}

.btns {
    display: flex;
    gap: 2vw;
    margin-top: 6vh;
}

.btns a, .headerBTN {
    padding: 0.8vw 1.59vw;
    color: #fff !important;
    background-color: #E07122;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    transition: all ease 0.3s;
}

.btns a:hover {
    background-color: #E07122;
    scale: 1.1;
}

#page2 {
    min-height: 50vh;
    width: 100vw;
    background-color: #fff;
    padding: 3vh 6vw;
}

#page2 h3 {
    color: #E07122;

    font-weight: 600;
    text-align: center;
}

#page2 p {

    text-align: justify;
}

#page2 .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    margin-top: 5vw;
}

#page2 .elem {
    width: 45%;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 2px solid rgb(204, 204, 204);
    padding: 0vh 1vw;
    transition: all ease 0.3s;
}

#page2 .elem:hover {
    box-shadow: 5px 5px 2px 3px rgb(200, 201, 201);
}

#page2 .elem i {

    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E07122;

}

#page2 .elem h4 {

    font-weight: 700;
    color: #372C7A;
}

#page3 {
    min-height: 50vh;
    /* Keep this as it ensures the page is tall enough */
    width: 100vw;
    position: relative;
    background-color: #ebebeb;
    padding: 2vw 0vw;
    overflow: visible;
    /* Make sure the page can expand as needed */
}

#page3 h3 {

    color: #E07122;
    padding: 0.5rem 0;
    font-weight: 600;
    text-align: center;
}

.featuredCards {
    width: 100%;
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 6vw;
    justify-content: center;
}

.featuredCards .certified {
    display: flex;
    justify-content: space-between;
    align-items: start;
    align-items: center;
    /* flex-direction: column; */
}

.featuredCards .certifiedDesc {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    /* flex-direction: column; */
}


.serrtificateseven{
    display: flex;
    align-items: center;
    line-height: 1.2;
    gap: 0.5rem;
    color: var(--nse-orange);
    font-weight: 500;
}

.sevencard{
    width: 2.2rem;
    height: 2.2rem;
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    /* background-color: var(--nse-orange); */
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    border-radius: 50%;
    /* color: white; */
    font-weight: 700;
    /* border: 1px solid white; */
    /* outline: 1px solid var(--nse-orange); */
}



.featuredCards .certified h4 {
    line-height: 1.5;
    color: #372C7A;
}



.tab_container {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    /* min-height: 30vh; */
    gap: 1rem;
    padding-block: 2rem;
    justify-content: center;
    position: relative;

}

.wrapSubCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0.5rem;
}

.detailParant,
.detailparant {
    width: 100%;
    max-width: 165px;
    position: relative;
    width: 250px;
}

.subCard {
    flex-grow: 1;
    background: #ffffff;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* margin: 1vh; */
    cursor: pointer;
    /* max-width: 350px; */
    /* width: 100%; */
    min-height: 35vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 5px 5px 5px rgb(187, 187, 187);
    border-radius: 5px;

}
.subCard>h3{
    text-transform: capitalize;
}
.subCard h6{
    color: #5f5e5e;
}
/* 
.subCard h6{
    position: absolute;
    bottom: 25%;
} */
.subCard i {

    padding: 6px 10px;
    border-radius: 50%;
    color: #fff;
    background-color: #E07122;
    margin-top: 3vh;
    position: absolute;
    bottom: 10%;
}

.subCard:hover {
    background: #eaeaea;
}

#page3 .subCard h2 {
    text-align: center;
}

#page3 .subCard h3 {
    color: #000;
    text-align: center;
    min-height: 75px;
    max-height: 90px;

}



.fCard_main a {
    text-align: center;
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background: #E07122;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all ease 0.3s;
}
.fCard_main a:hover{
    background: #fc5000;
}
.fCard_main a:active{
    color: #E07122;
    background-color: #fff;
}
.fCard_main_text>h6{
text-align: center;
}

.newthemedtrack {
    overflow: hidden;
    position: relative; /* Ensure the parent is positioned */
    display: inline-block; /* Prevents extra spacing */
}

.newthemedtrack::after {
    content: 'New Themed Track';
    position: absolute;
    transform: rotate(-90deg);
    width: 100%;
    bottom: 80px;
    left: -155px;
    background-color: #ec601e;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 12px;
    border-radius: 5px;
    z-index: 99;
}

.trandingthemedtrack{
    overflow: hidden;
    position: relative; /* Ensure the parent is positioned */
    display: inline-block; 
}

.trandingthemedtrack::after {
    content: 'Trending Themed Track';
    position: absolute;
    transform: rotate(-90deg);
    width: 100%;
    bottom: 80px;
    left: -155px;
    background-color: #EDB32B;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 12px;
    border-radius: 5px;
    z-index: 99;
}

button.learnMoreBtn:hover {
    background: #ec601e;
}

.detailsDiv {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.tab_container>h2.cardheadingone{
    padding: 0rem 6rem;
}

.tab_container h2 {
    width: 100vw;
    padding: 2vh 0 2vh 6rem;
    font-weight: 600;
    color: #E07122;
    text-align: left;
}

.detailsDiv h3 {
    color: #372C7A;
    text-align: center;
}

.detailsDiv p {
    text-align: justify;
}

.detailsDiv .textDiv {
    padding: 1rem;
}

.detailsDiv .textDiv p strong {
    font-weight: 500;
    color: #473d85;
    text-align: left !important;
}



.heading {
    text-align: left;
    margin: 4vh 0;
}

.heading_underline {
    width: 100%;
    height: 1vh;
    background-color: #eeb222;

}

.heading_underline_disclaimer {
    width: 100%;
    height: 1vh;
    background-color: #eeb222;

}

.About_IIM_Kashipur_body {
    gap: 3rem;
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    padding: 0rem 0;
}

.About_IIM_Kashipur_body_left {
    display: flex;
    flex-direction: column;
}

.About_IIM_Kashipur_left_pera {
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    gap: 3rem;
}

.About_IIM_Kashipur_left_pera_img {
    width: 200%;
}

.About_IIM_Kashipur_left_pera_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;

}


.About_IIM_Kashipur,
.about_nse {
    width: 100%;
    margin: 0rem 0;
    


    /* padding-inline: 2rem; */
}

.home_right_pera_img img {
    width: 300px;
    margin-top: 10px;

}


.home_right_peragraph p {
    line-height: 35px;
    text-align: justify;

}




.about_nse_heading {
    display: flex;
    align-items: start;


}

.about_nse_heading img {
    width: 150px;
    margin-left: 410px;


}

.about_nse_home {
    display: flex;
    gap: 3rem;


}

.about_nse_home_left_pera {
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    line-height: 30px;
    text-align: justify;
}

.about_nse_home_left_pera p {
    line-height: 35px;
}

.about_nse_home_right_pera_img {
    width: 200%;
    border-radius: 10px;
}

.about_nse_home_right_pera_img img {
    width: 100%;
    border-radius: 10px;
}
.disclaimerParant{
    padding: 0.5rem 6rem;
}

.about_nse_disclaimer_list {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;

    text-align: left;
    text-align: justify;
}

.about_nse_disclaimer_list li {
    color: #000000b8;
}

.about_nse_disclaimer_list i {
    color: #E07122;
}

.fCard_main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
    border: 1px solid #00000063;
    border-radius: 10px;
    text-align: center;
    transition: all ease 0.4s;
    border-radius: 10px;
    min-height: 48-px;
    margin-top: 0.5rem;
    
}



.fCard_main_img {
    max-width: 390px;
    height: 210px;
    border-radius: 10px;
}

.fCard_main_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.fCard_main_text {
    padding: 0.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.fCard_main_text h3 {
    color: black !important;
}

.fCard_main_text h3 span {
    color: #E07122;

}


.heading h3 {
    color: #E07122;
    text-wrap: nowrap;
    text-align: center;
}

.fCard_main_button{
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    text-wrap: nowrap;
    justify-content: center;
}

.fCard_main_button .btn{
    background-color: #3A2D7F;
}



/* //////////////////////// updated css  /////////////////// */
.formmodal-content {
    background-color: antiquewhite !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: black !important;
}


.para li {
    list-style: none;
}

.accordion-button {
    /* background-color: #372C7A !important; */
    /* color: white !important; */
    border: 1px solid #372C7A !important;

}

.modal-header {
    background-color: #f5bd3b
}

.accordion-button:focus {
    box-shadow: none !important;
}

.certifiedDesc h5 {
    padding: 4.5px;
}

.accordion {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-radius: 5px;
}

#page4 {
    padding: 1vh 6vw;
}


/* footer starts from here  */
.footer_main {

    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
}

.footer_main .nse_line_footer {

    width: 87.8%;
    height: .6rem;
    margin: 0 auto;
}

.footer_inner {
    gap: 1rem;
    flex-wrap: wrap;
    scale: .9;
    display: flex;
    justify-content: space-between;
}

.footer_inner .text_size3 {
    color: var(--bs-gray);
    font-weight: 400;
}




.social_media ul {
    display: flex;
    gap: 1rem;
}

.social_media ul a {
    text-decoration: none;
}

.instagram {
    color: rgb(240, 9, 59);
}

.youtube {
    color: red;
}




.formmodal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 40%;
    /* Full width */
    height: fit-content;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: rgb(43, 43, 43);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.Formmodal-content {
    background-color: #db0000;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

.formmodal-content label {
    display: flex;
    align-items: flex-start;
}

.formmodal-header {
    background-color: #fff;
    padding: 0 1vw;
}

.formmodal-header img {
    width: 25%;
}

.checkBox {
    margin: 1vh;
}



/* The Close Button */
.close {
    color: #aaa;
    float: right;

    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* / get in touch form starts from here  .........................................................................../ */

.get_in_touch_inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.get_in_touch_inner .section_heading_main {
    color: var(--bs-white);
}

.get_in_touch_innerForm {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get_in_touch_innerForm form {

    z-index: 9;
}

.get_in_touch_innerForm_title h4 {
    color: #392d7d;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

.get_in_touch_innerForm_input {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 20px;
}

.get_in_touch_innerForm_input .form-control {
    border-radius: 0px;
    border: none;
    background-color: #f2f2f3;

    color: #777;
    border-radius: 0.3rem;
}

.get_in_touch_innerForm_input .form-control:focus {
    width: 100%;
    box-shadow: none;
    outline: none;
    background-color: #f2f2f3;
}

.get_in_touch_innerForm_input span {
    display: flex;
    gap: 1.2rem;
}

.get_in_touch_innerForm_input select {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border: none;
    color: #777;
}

.get_in_touch_innerForm_input .form-control::placeholder {
    letter-spacing: 1px;
    color: #777;
}

.get_in_touch_innerForm_input button {
    padding: 0.8rem 1.2rem;
    color: #fff;
    background-color: #392d7d;
    border: none;
    border-radius: 0.4rem;
    font-weight: 500;
}





.About_IIM_Kashipur,
.about_nse {
    padding: 1rem 6vw;
    
}



#page3 .fCardOverview:hover {
    box-shadow: 7px 7px 5px rgb(201, 202, 202);

}

.fCardOverview>h2{
    padding: 0 6rem;
}

#page3 .fCardOverview .elements {
    width: 25%;
    padding: 0.5rem 2rem;
    border-right: 1px solid #acacac;
    display: flex;
    align-items: center;
    text-align: center;
    /* justify-content: center; */
    flex-direction: column;

}


#page3 .fCardOverview .elements h4 {
    color: #fff;
}

#page3 .fCardOverview .elements h6 {

    flex-direction: column;
}

#page3 .fCardOverview .elements h6 span{
    font-size: 1.4rem;
    font-weight: 600;
}

#page3 .fCardOverview .elements h6 span {
    color: #E07122;

}

#page3 .fCardOverview .elements a {
    padding: 5px 15px;
    border: none;
    background-color: #E07122;
    color: #fff;
    border-radius: 5px;
}

#page3 .fCardOverview .elements button:hover {
    background-color: white;
    color: #ec601e;
}

#page3 .fCardOverview .elements:nth-last-child(1) {
    border: none;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.tab_container .cardDetails h3 {
    text-align: center;
    width: 50%;
    margin: 0 auto;

}

.cardDetails {
    width: 100%;
    min-width: 100vw;
    background-color: #fff;
    padding-top: 2rem;
}

.cardDetails p strong {
    color: #E07122;

    font-weight: 600;
}

.cardDetails p {
    
    text-align: justify;
    color: #000;
    padding: 0 6rem;
}

.fCardOverview {
   
    position: relative;
    width: 100%;
    min-width: 100vw;
    display: flex;
    padding: 1rem;

    color: #fff;
    background-color: #3A2D7F;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.fCardOverview.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.modal-body .cardheadingtwo{
    color: #372C7A;
    font-weight: 500;
}


@media (max-width:991px) {
    .about_nse_home {
        flex-direction: column;
    }

    .about_nse_home_right_pera_img,
    .About_IIM_Kashipur_left_pera_img {
        width: 100%;
    }

    .about_nse_home_right_pera_img {
        margin-bottom: 4vh;
    }

    .About_IIM_Kashipur_left_pera {
        flex-direction: column;
        text-align: justify;
    }



    #center .nseLine {
        width: 100%;
        height: 1.1vh;
    }

    .btns button {
        padding: 0.5rem 1rem;
        color: #fff;
        background-color: #E07122;
        border: none;
        border-radius: 3px;
        transition: all ease 0.3s;
    }

 
    #page2 p {
    
        line-height: 1.3;
    }

    #page2 .grid {
        display: flex;
        flex-direction: column;
        gap: 3vw;
        margin-top: 10vw;
    }

    #page2 .grid .elem {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        padding: 1rem;
    }

    /* #page2 .grid .elem i {
        background-color: #E07122;
        color: #ffffff;
        border-radius: 5px;
        width: 24vw;
    } */

    .about_nse_home {
        flex-direction: column-reverse;
    }

    /* .about_nse_disclaimer {
        margin-top: -2vh;
    } */

    .about_nse .heading {
        text-align: center;
        margin-bottom: 2rem;

    }

    #center h1 {
        font-size: 2.1rem ;
        width: 90%;
        line-height: 1.2;
    }

    #center h1 span,
    h4 span {
        color: #E07122;
    }

    .typs {
        margin-top: 5vh;
    }

    .btns {
        display: flex;
        gap: 2vw;
        margin-top: 4vh;
    }

    #page1 #nav {
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2vh 4vw;
        background-color: #fff;
    }

    #page1 #nav img {
        width: 30%;
    }

    .featuredCards {
        width: 100%;
        display: flex;
        flex-direction: row;
        
        gap: 1rem;
    }

    .fCard_main {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 390px;
        background-color: rgba(252, 244, 215, 0.849);
        border-radius: 10px;
        transition: all ease 0.4s;
        border-radius: 10px;
    }

    .fCard_main_img {
        max-width: 390px;
        /* height: 150px; */
        border-radius: 10px;
    }

    .fCard_main_img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .featuredCards .fCard {
        max-width: 390px;
        width: 100%;
        min-height: 80vh;
        background-color: rgba(252, 244, 215, 0.849);
        border-radius: 10px;
        text-align: center;
        transition: all ease 0.4s;
        border-radius: 10px;
        margin-left: 1vw;
    }

    .featuredCards .fCard:hover {
        background-color: #FFF;
        box-shadow: 4px 4px 8px gray;
    }

    #page3 .featuredCards .fCard img {
        overflow: hidden;
        width: 100%;
        height: 37%;
        object-fit: cover;
        object-position: bottom;
        background-color: GRAY;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

    .featuredCards .certified {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    .featuredCards .certified h4 {
      
        line-height: 1.1;
        color: #372C7A;

    }

    /* .featuredCards .certified span {
        border: 1px solid #E07122;
        border-radius: 50%;
        padding: 4px 11px;
   
        line-height: 2;
        color: #FFF;
        background-color: #E07122;

    } */
}

@media (min-width:299px) and (max-width:699px) {
    .sm_view{
        display: none !important;
    }
    .tooltip .tooltiptext{
        right: 0;
    }
    .contactcta{
        padding: 1rem !important;
    }
    .coantactcardcontact{
        flex-direction: column;
        gap: 0rem !important;
    }

    #page1 {
        min-height: 50vh;
        width: 100vw;
        position: relative;
        z-index: 2;
        /* Ensure it's above any overlapping content */
    
    }
    
    #page1::before {
        content: '';
        /* Required for pseudo-elements */
        position: absolute;
        top: 0%;
        left: 0%;
        height: 100%;
        width: 100%;
        z-index: -1;
        /* Keeps it behind other content */
        background-image: url(../image/NSE\ Academy\ Hero\ Banner\ -\ 1920x1080\ \ \(1\).png);
        background-position: top;
        background-size: cover;
        opacity: 1;
    }
    
    .heading {
        width: 100%;
    }
    #center {
        min-height: 10vh;
        width: 100%;
        color: #fff;
        padding: 5vh 6vw;
    }

    #page2 .grid .elem h4 {
      
        margin-top: 0vh;
    }
    .tab_container>h2.cardheadingone {
        /* padding: 0rem rem;? */
        text-align: center;
    }
  
    .featuredCards {
        width: 92%;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        /* flex-wrap: nowrap; */
        overflow-x: scroll;
        padding: 10px;
    }

    /* width */
    ::-webkit-scrollbar {
        width: 5px;

    }

    /* Track */
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #372C7A;
    }

    .home_right_peragraph p {
        line-height: 30px;
        text-align: justify;
    }

    /* .home_right_peragraph {
        margin-bottom: -8vh;
    } */

    .about_nse_home_left_pera p {
        line-height: 30px;
    }


    .detailsDiv p {
        text-align: justify;

    }

    .about_nse_home {
        gap: 0.5rem;
    }

    .heading {
        margin-top: 2.5vh;
    }

    .elements h6 {
        display: none;
    }

    .elements h5 {
        display: none;
    }

    #page3 .fCardOverview .elements {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: none;
        width: 100%;
        padding: 0rem 2rem;
    }

    #page3 h3 {
        width: 100%;
    }

    .cardDetails p {
        text-align: justify;
        color: #000;
        padding: 0 2rem;
    }
    .cardDetails {
        width: 100%;
        min-width: 100vw;
        background-color: #fff;
        padding-top: 4rem;
    }

    /* .heading h3 {
        padding-top: 2.5rem;
    } */

    #page3 .fCardOverview .elements h4 {
        text-align: center;
    }

    .fCardOverview {
        align-items: center;
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 10;
        background-color: #372C7A;
        padding: 1rem 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .heading {
        text-align: center;
        margin: 4vh 0;
    }
    .tab_container h2{
        width: 100vw;
        padding: 2vh 2rem 2vh 2rem;
        font-weight: 600;
        color: #E07122;
        text-align: center;
    }
    .subCard{
        min-height: 35vh;
    }
    .overviewNone{
        display: none;
    }
    .navMenu a{
        display: none;
    }
   
    
#center {
    min-height: 100vh;
    width: 100%;
    color: #fff;
    padding: 5vh 6vw;
    display: flex;
    flex-direction: column;
}
#center .left{
    width: 100%;
    height: 50%;
}
#center .right{
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 5vh 0vw;
}
.form-group {
    flex-direction: column;
}
.form-group input,
    .form-group select {
        width: 100%;
    }

    .about_nse{
        margin-top: 6rem;
        padding: 0.1rem 2rem;
    }
    .disclaimerParant{
        padding: 0.5rem 2rem;
    }
    .tab_container{
        gap: 0rem;
    }
    
}




#page3 .fCardOverview .elements:nth-last-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* ideal for starts from here  */


#who_shoud_join {
    padding: 1rem 6vw;
    padding-top: 0;
    margin-top: 2rem;
  }
  
  
  
  #who_shoud_join .container-fluid .heading_secondry {
    width: 100%;
  }
  
  .who_shoud_join_section{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
  }
  
  .who_shoud_join_section .who_shoud_join_section_left{
    display: flex;
    align-items: center;
  }
  
  .who_shoud_join_section .who_shoud_join_section_left .who_shoud_join_section_left_img{
        overflow: hidden;
        width: 200px;
        height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
  }
  
  
  .who_shoud_join_section .who_shoud_join_section_left  img{
      width: fit-content;
      max-width: 250px;
      
  }

  .who_shoud_join_cards{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
  }
  .who_shoud_join_cards .who_shoud_join_card{
    flex-grow: 1;
    max-width: 450px;
    width: 100%;
    /* background-color: var(--nse-orange); */
    color: black;
    outline: 1px solid black;
    border-radius: 5px;
    min-height: 30vh;
  }
  
  
  .who_shoud_join_cards .who_shoud_join_card:hover{
    box-shadow: rgb(0, 0, 0) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  }
  
  
  .who_shoud_join_cards .who_shoud_join_card .who_shoud_join_card_heading{
    background-color: #e96f24;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .who_shoud_join_cards .who_shoud_join_card .who_shoud_join_card_heading h4{
    color: white;
    /* min-height: 5vh; */
  }
  .who_shoud_join_cards .who_shoud_join_card p{
    text-align: justify;
    padding: 7px;
  }


  @media (max-width:786px) {
    .who_shoud_join_section{
        flex-direction: column;
        align-items: center;
    }
    .who_shoud_join_cards{
        justify-content: center;
    }
  }

  .contactcta{
    background-color: var(--nse-purple);
    padding: 1rem 6rem 2rem 6vw;
  }
  .contactcta .headingone{
    text-wrap: wrap;
    color: white;
  }

  .coantactcards{
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .coantactcards h6{
    color: white;
    font-weight: 600;
  }

  .coantactcard{
    /* padding: 1rem; */
    max-width: 300px;
    text-align: center;
    border-radius: 5px;
  }

  .coantactcard a{
    text-decoration: none;
    font-weight: 600;
    color: white;
  }
  .coantactcardcontact{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.coantactcardname h3{
    color: white ;
}


/* hover effect css  */
.tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
    opacity: 5 !important;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    min-width: 250px;
    background-color: #3A2D7F;
    color: #fff;
    text-align: justify;
    border-radius: 6px;
    padding: 5px 10px;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  .fa-circle-info{
    color: #E07122;
    font-size: 1.5rem;
  }