:root {
    --maincolor: #4800ff;
    --secondary: #F8D702;
    --lightcolor: #000;
    --smooth: 0.4s ease-in-out;
    --radiuscommon: 7px;
    --darkcolor: #190050;


}

@font-face {
    font-family: boldfont;
    src: url(../fonts/boldfont.otf)
}

@font-face {
    font-family: lightfont;
    src: url(../fonts/lightfont.otf)
}

h1,
h2 {
    font-family: 'boldfont';
}

span.lightfont {
    font-family: 'lightfont';

}

a {
    text-decoration: none;
}

.mainHeader {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 5px 20px -10px #ddd;
    position: relative;
}

.centerit {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spcbtwn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alignCenter {
    display: flex;
    align-items: center;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navLinks ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 150px;
    margin-bottom: -50px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.navLinks ul a {
    position: relative;
    color: #222;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 15px;
}

.navLinks ul a.active {
    background: #ffffbb;
    color: var(--maincolor);
    border-radius: 10px;
}

section.commonSection {}

section.plainSection {
    padding: 40px 20px;
}

.heroSlide img {
    width: 100%;
}

.swiper.heroSlider {
    border-radius: 20px;
}

button.commonBtn,
a.commonBtn {
    background: var(--maincolor);
    color: #fff;
    border: 2px solid #0000;
    padding: 10px 20px;
    border-radius: var(--radiuscommon);
    text-align: center;
    width: fit-content;
    display: block;
}

.heroRight {
    padding: 20px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    border: 1px solid #eee;
}

.courseCard {
    margin: 10px;
    width:30%;
}

.courseCard img {
    border-radius: 10px;
    transition: var(--smooth);
}

.courseCard span {
    text-align: center;
    display: block;
    margin-top: 10px;
    text-decoration: underline;
    text-underline-offset: -5px;
    text-decoration-color: #0000;
    transition: var(--smooth);
    color: #222;
    font-weight: 600;
}

.courseCard:hover span {
    text-underline-offset: 5px;
    text-decoration-color: var(--maincolor);

}

.courseCard:hover img {
    box-shadow: 0 8px 20px -10px #ddd;
}

@media screen and (max-width:576px){
    .courseGrid{
        flex-direction: column;
    }
    .courseCard{
        width:100%
    }
}
.headingLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.viewMore {
    background: #fff;
    border: 2px dashed var(--maincolor);
    padding: 5px 10px;
    border-radius: 7px;
    color: var(--maincolor);
    transition: var(--smooth);
}

section.blogs {
    padding: 40px 20px;
    background: #e6efef;
}

.blogCard {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.blogImg {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
}

.contact-details-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details-box .contact-details-icon {
    color: var(--secondary);
}

.contact-details-box .contact-details-content {
    margin-left: 10px;
}

.contact-details-box .contact-details-icon i {
    font-size: 22px;
}

.contact-details-box .contact-details-content h6 {
    color: white;
    font-weight: bold;
    margin-bottom: 0;
}

.contact-details-box .contact-details-content p {
    color: white;
    margin-bottom: 0;
}

.contact-details-box .contact-details-content p a {
    color: white;
    text-decoration: none;
}

footer {
    background: #190050;
    padding: 20px 0;
    margin: 20px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.footerBox h3 {
    width: max-content;
    border-bottom: 2px solid var(--secondary);
    color: #fff;
    padding-bottom: 5px;
}

ul.socialFooter {
    display: flex;
    padding: 0;
    gap: 10px;
    align-items: center;
}

ul.socialFooter a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: #190050;
    font-size: 20px;
}

.ctaBox {
    height: 260px;
    background: var(--secondary);
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.ctaBox img {
    height: 350px;
    position: absolute;
    right: -50px;
    filter: drop-shadow(6px 3px 7px #dadada);
    bottom: 0;
}

section.cta {
    padding: 60px;
}

h2.ctaHeading {
    color: #190050;
    text-shadow: -2px -2px 0px #fff;
}

.bg-dark {
    background: #190050 !important;
}

.footerBox {
    padding: 20px;
}


.footerBox img {
    width: 200px;
}

.footerAbout p {
    text-align: center;
    margin-top: 10px;
    border-top: 2px solid var(--secondary);
}

ul.footerLinks a {
    color: #eee;
    text-decoration: underline;
    text-underline-offset: -5px;
    text-decoration-color: #0000;
    transition: var(--smooth);
}

ul.footerLinks li {
    margin-bottom: 10px;
}

ul.footerLinks a:hover {
    text-decoration-color: var(--secondary);
    text-underline-offset: 5px;
}

.copyright {
    border-top: 2px solid var(--secondary);
    padding-top: 10px;
}

.imageStyle {
    border-radius: 20px;
    box-shadow: 0 10px 20px -10px #ddd;
}

.footerAbout {
    border-radius: 20px;
    background: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input.commonInput,
select.commonInput {
    width: 100%;
    background: #eefffd;
    color: #222;
    border-radius: 10px;
    height: 50px;
    padding: 10px 10px 10px 15px;
    border: 2px solid #0000;
    outline: none;
    transition: var(--smooth);
    margin-bottom: 20px;
}

textarea.commonInput {
    width: 100%;
    background: #eefffd;
    color: #222;
    border-radius: 10px;
    height: 100px;
    padding: 10px 10px 10px 15px;
    border: 2px solid #0000;
    outline: none;
    transition: var(--smooth);
    margin-bottom: 20px;
    resize: none;
}

input.commonInput:focus,
textarea.commonInput:focus,
select.commonInput:focus {
    border: 2px solid var(--maincolor);
}

.contactForm {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 30px -15px #ddd;
}

input.commonInput::placeholder,
textarea.commonInput::placeholder,
select.commonInput {
    color: #777;
}

h2.commonHeading {
    border-bottom: 5px double var(--secondary);
    color: var(--maincolor);
    width: max-content;
}

.contactCard {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contactIcon {
    color: var(--maincolor);
    font-size: 25px;
    text-shadow: -2px 2px 0px #fee201;
}

.contactDetails h6 {
    margin: 0;
    color: #999;
}

.contactDetails a {
    color: #555;
}

.contactBox {
    padding-top: 20px;
}

.contactBox p {
    color: #999;
}

section.map {
    padding: 20px;
    margin: 20px;
}

section.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.breadCrumb {
    padding: 20px;
    padding-top: 50px;
    background: url(../images/breadbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pageHeading h1 {
    color: #fff;
    font-family: 'lightfont';
    font-weight: 700;
}

.breadCrumb ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breadCrumb ul li:not(:last-child) {
    position: relative;
}

.breadCrumb ul li:not(:last-child)::before {
    content: '/';
    position: absolute;
    color: #fff;
    top: 0;
    right: -15px;
    height: 100%;
    width: 10px;
}

.breadCrumb ul a {
    color: #ddd;
}

.breadCrumb ul a.active {
    color: var(--secondary);
}

.courseGrid {
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.sideBar {
    position: sticky;
    top: 0;
    z-index: 100;
}

section.coursePage {
    background: #eefffd;
}

.whiteBox {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px -10px #ddd;
    margin-bottom: 20px;
}

.difCard {
    display: flex;
    justify-self: flex-start;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--smooth);
    padding: 10px;
    gap: 5px;
    margin-bottom: 20px;
}

.difCard h5 {
    transition: var(--smooth);
}

.difCard img {
    width: 75px;
    background: #0000;
    transition: var(--smooth);
    padding: 5px;
    border-radius: 5px;
}

.difCard:hover {
    background: var(--secondary);
}

.difCard:hover img {
    background: #fff;
    transform: scaleX(-1);
}

.difCard:hover h5 {
    color: var(--maincolor);
}

a.otherLink {
    color: var(--maincolor);
    border: 2px dashed #4800ff47;
    padding: 10px 20px;
    margin-bottom: 15px;
    display: flex;
    border-radius: 10px;
}

a.otherLink:hover {
    color: #fff;
    background: var(--maincolor);
}

a.otherLink.active {
    color: #fff;
    background: var(--maincolor);
}

.otherCourses {
    padding: 20px;
}

h4.smallHeading {
    position: relative;
    color: #190050;
    margin-bottom: 20px;

}

h4.smallHeading::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 50px;
    left: 0;
    bottom: -10px;
    background: var(--secondary);
}

a.actionBtn {
    color: #fff;
    padding: 7px 5px;
    padding-left: 10px;
    gap: 10px;
    height: 50px;
    border-radius: 5px;
    transition: var(--smooth);
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 15px;
}

a.actionBtn:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px -10px #777;
}

a.actionBtn i {
    display: block;
    height: 40px;
    width: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 5px;
}

.whatsapp {
    background: #2CB53F;
}

a.whatsapp i {
    color: #2CB53F;
}

.call {
    background: var(--maincolor);
}

a.call i {
    color: var(--maincolor);
}

.actionBar {
    display: flex;
    justify-self: start;
    gap: 10px;
}

.highLights ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.highLights ul li {
    list-style: disc;

}

/* .highLights ul li:not(:last-child) {
    position: relative;
}

.highLights ul li:not(:last-child)::before {
    content: '|';
    position: absolute;
    color: #222;
    top: 0;
    right: -15px;
    height: 100%;
    width: 10px;
} */
.eligCard table tr td,
th {
    padding: 10px;
}

.eligCard table tr {
    border-bottom: 2px solid #fff;
}

.eligCard table tr th {
    background: #fff3a8;
    color: #190050;
}

section.commonSection {
    padding: 40px 20px;
}

.testimCard {
    position: relative;
    padding: 20px 40px;
    border-radius: 20px;
    background: #fff3a8;
    box-shadow: 0 5px 20px -10px #ddd;
}

.testimCard i {
    position: absolute;
    border-radius: 10px;
    font-size: 50px;
    opacity: .5;
    color: var(--maincolor);
    transform: scaleX(-1);
    right: 20px;
    bottom: 20px;
}

section.testimonials {
    padding: 60px;
}

.otherCourses ul li a {
    padding: 10px 10px;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    border: 1px dashed #eee;
    border-radius: 10px;
    color: #222;
    text-decoration: none;
}

.gridGallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 3px;
}

.gridGallery .grid-item {
    position: relative;
    background: #eee;
    overflow: hidden;
}

.gridGallery .story {
    grid-row: span 2;
    /* This sets "story" class elements to span 2 rows */
}

.gridGallery .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

img.blogpageImg {
    border-radius: 10px;
    box-shadow: 0 4px 20px -10px #838383;
    margin-bottom: 1rem;
}

.testimInfo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.testimInfo img {
    width: 50px;
    background: #fff;
    border-radius: 50%;
}

.whyCard {
    background: #eefffd;
    border: 2px dashed #eee;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.whyCard p {
    text-align: center;
    margin-bottom: 0;
}

.whyCard h4 {
    margin: 0;
    font-size: 20px;
    margin-top: 10px;
}

.whyCard img {
    width: 75px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    outline: 2px dotted #0000;
    outline-offset: -3px;
    transition: var(--smooth);
}

.whyCard:hover img {
    outline-offset: 3px;
    outline: 2px dashed var(--maincolor);
}

.missionLeft {
    padding: 20px;
    background: #eefffd;
    border-radius: 20px;
}

.otherCourses ul li a:hover {
    background: var(--maincolor);
    color: #fff;
    border: 1px solid var(--maincolor);
}




.mobileHeader {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 5px 20px -10px #ddd;
    position: relative;
}

.toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .3s;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: var(--maincolor);
    border-radius: 5px;
    transition-duration: .3s;
}

/* #toggleBtn:checked + .toggle .bars {
    margin-left: 13px;
  } */
.tgl {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#toggleBtn {
    position: absolute;
    width: 100px;
    height: 50px;
    z-index: 11;
    opacity: 0;
}

#toggleBtn:checked+.toggle #bar2 {
    transform: translateY(14px) rotate(60deg);
    margin-left: 0;
    transform-origin: right;
    transition-duration: .3s;
    z-index: 2;
}

#toggleBtn:checked+.toggle #bar1 {
    transform: translateY(28px) rotate(-60deg);
    transition-duration: .3s;
    transform-origin: left;
    z-index: 1;
}

#toggleBtn:checked+.toggle {
    transform: rotate(-90deg);
}

/* 
#toggleBtn:checked+.toggle #bar3 {
    transform: rotate(90deg);
    transition-duration: .3s;
    transform-origin: right;
} */
.logosmall img {
    width: 100px;
}

.smartLinks {
    width: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    transition: var(--smooth);
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
}

.smartLinks.active {
    top: calc(100% + 10px);
    background: #e6efef;
    height: auto;
    position: absolute;
    pointer-events: auto;
    opacity: 1;
    border-radius: 10px;
    border: 1px solid #eee;

}

.smartLinks ul li a {
    position: relative;
    color: #222;
    font-size: 30px;
    font-weight: 600;
    padding: 7px 15px;
    margin-bottom: 20px;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h2.headingCenter {
    width: 100%;
    text-align: center;
    position: relative;
    color: var(--darkcolor);
    margin-bottom: 20px;
}

h2.headingCenter::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    background: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}

h2.heading {
    position: relative;
    color: #190050;
    margin-bottom: 20px;
}

h2.heading::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 50px;
    left: 0;
    bottom: -10px;
    background: var(--secondary);
}

.testimSlider .swiper-button-next {
    right: 5px;

}

.testimSlider .swiper-button-prev {
    left: 5px;

}

.testimSlider .swiper-button-next,
.testimSlider .swiper-button-prev {
    background: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    color: var(--maincolor);
    box-shadow: 0 0 5px #bdbdbd;
    z-index: 5;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px;
}

section.aboutUs {
    background: url(../images/aboutbg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 20px;
}

.blogCardWords h3 {
    font-size: 20px;
    font-weight: 700;
}

ul.blogList {
    list-style: nnumeric;
    padding-left: 15px;
}

ul.blogList li {
    list-style: nnumeric;
}

.section {
    padding: 40px 20px;
}

.whats-app {
    position: fixed;
    bottom: 80px;
    right: 30px;
    max-width: 50px;
    z-index: 999;
}

.whats-app img {
    max-width: 80px;
}