* {
    box-sizing: border-box;
  scrollbar-color: #FFC815 #f7f4f4; /* Thumb color, Track color */
  scrollbar-width:thin
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "League Spartan", sans-serif;
    font-style: normal;
}

@media screen and (min-width:1200px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }

}


@keyframes appear {
    from {
        opacity: 0.5;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }

}

.animated {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 10%;
}

.pColor {
    color: #808080;
}

p {
    font-family: "Poppins", sans-serif;

}


/* header */

.subMenu {
    height: 50px;
    width: 100%;
    background-color: #292929;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    gap: 50px;

}

.subMenu a {
    text-decoration: none;
    color: #fff;
}

.subMenu a:hover {
    color: #ffc815;
}

.socialLink {
    margin-right: 20px;
}

.aa {
    height: 30px;
    width: 30px;
    border: 1px solid #292929;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 30px; */
    margin-bottom: 4px;
}

.aa a {
    color: #292929;
}

.aa a:hover {
    color: #ddab0a;
}


.nav_logo {
    max-height: 56px;
    text-align: center;
    margin: 15px 25px;
}

.main-navbar {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, .05);
    z-index: 999;
    transition: all 0.4s ease;
}

.main-navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
}

.main-navbar.show {
    transform: translateY(0);
}

.hamburgerMenu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
}

.hamburgerMenu.show {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.nav_links {
    /* background-color: antiquewhite; */
    width: 50%;
}

.nav_links ul {
    margin-bottom: 0 !important;
}

.nav_links li {
    list-style: none;
    font-size: 20px;
    font-weight: 400;
    pad: 0px 16px;
    /* height: 50px; */
    margin: auto;
}

.nav_links a {
    /* border: 2px solid red; */
    text-decoration: none;
    color: #585858;
}

.nav_links a:hover {
    color: black;
}

.nav_btn {
    margin: auto 30px;
}

.nav_btn button {
    padding: 10px;
    height: 50px;
    width: 180px;
    font-weight: 600;
    font-family: "League Spartan", sans-serif;
    font-size: 20px;
}



/* Dropdown Button */
.dropbtn {
    text-decoration: none;
    color: #292929;
    font-size: 20px;
    border: none;
}


.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}


.dropdown-content a {
    color: #292929;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


.dropdown-content a:hover {
    color: #181818;
}


.dropdown:hover .dropdown-content {
    display: block;
    max-height: 450px;
    overflow: auto;
    transition: transform 0.3s ease;
}

/* .dropdown:hover .dropbtn {
    background-color: #3e8e41;
} */

.courseDropdown {
    width: 130vh;
}

.dropDownFlex {
    display: flex;
    justify-content: space-evenly;
}

.dropDownFlex P {
    color: #878280;
    font-size: 15px;
    padding: 10px;
}


.hamburgerMenu {
    display: none;
}

.hideLink {
    display: block;
}






@media screen and (max-width: 376px) {
    .size a {
        font-size: 14px;
    }

}

@media screen and (max-width: 625px) {
    .hideLink {
        display: none;
    }

    .subMenu {
        justify-content: space-evenly;
    }
}

@media screen and (max-width: 1100px) {
    .subMenu {
        position: fixed;
        /* top: 1rem; */
        left: 0;
        /* width: 100%;  */
        z-index: 999;

    }


    .main-navbar {
        display: none;
    }

    .hamburgerMenu {
        display: block;
        position: fixed;
        top: 3rem;
        z-index: 1000;
        /* border: 2px solid red; */
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    }

    .hamburgerButton {
        position: fixed;
        z-index: 100;
        top: 4rem;
        right: 2rem;
        padding: 4px;
        /* border: black solid 1px; */
        /* background: rgb(216, 25, 25); */
        cursor: pointer;
    }

    .hamburgerButton i {
        color: #070707;
        font-size: 30px;
    }

    .closeBtn {
        display: none;
    }

    .mobile_menu {
        /* border: 2px solid red; */
        width: 50%;
        height: 100%;
        position: fixed;
        transform: translateX(-100%);
        transition: transform 0.2s;
        top: 0rem;
        left: 0;
        z-index: 1000;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .showMenu {
        transform: translateX(0);
    }


    .mobile_menu ul {
        padding: 07;
        margin: 0;
        list-style: none;
    }

    .mobile_menu li {
        padding: 10px 0;
        font-size: 20px;
        font-weight: 400;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .mobile_menu a {
        text-decoration: none;
        color: #292929;
    }

    .mobile_menu a:hover {
        color: #ddab0a;
    }



    .dropdown {
        display: block
    }


    .dropdown-content {
        display: none;
        background-color: #ffffff;
        /* box-shadow: 0px 8px 16px rgba(0,0,0,0.2); */
        padding: 0;
        margin: 0;
        list-style: none;
    }


    .dropdown.active .dropdown-content {
        display: block;
    }


    .dropdown-content li a {
        padding: 10px 16px;
        display: block;
        text-decoration: none;
        color: #292929;

    }

    .dropdown-content li a:hover {
        background: #f3f3f3;
        color: #ddab0a;
    }



    .breadcrumb {
        padding-top: 20vh;
        text-align: center;
    }
}


@media screen and (max-width: 740px) {
    .mobile_menu {
        width: 70%;
    }
}

@media screen and (max-width: 470px) {
    .mobile_menu {
        width: 80%;
    }
}













.red {
    border: 2px solid red;
}

/* Hero Section */

.hero {
    width: 100%;
    min-height: 620px;
    max-width: 100%;
}

.heroRow {
    align-items: center;

}

.leftHero {
    align-items: center;
    margin: auto;
    margin-bottom: 0vh;
    animation: moveUp 3s;
}

@keyframes moveUp {
    0% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(0);
    }
}


.dots {
    position: absolute;
    top: 235px;
    right: 510px;
    z-index: -1;
}

.HeroTitle {
    font-weight: 600;
    font-size: 60px;
    line-height: normal;
    color: #181818;

}

.heroPara {
    margin-top: 20px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}


.rightHero {
    margin-top: 10px;
    animation: moveLeft 2s;
}

.heroImg {
    /* margin: 0 0 0 auto; */
    /* z-index: -1; */
}

@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(0);
    }
}




@media screen and (max-width: 991px) {
    .hero {
        width: 100%;
    }

    .HeroTitle{
        font-size: 45px;
    }

    .leftHero {
        margin: auto;
        text-align: center;
        margin-top: 25px;
        max-width: 100%;
        /* border: 2px solid red; */

    }

    .heroImg img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        text-align: center;
        min-width: 68%;
        height: auto;
        /* margin-bottom: 20vh; */
        /* margin-top: -30px; */
    }
}

.card {
    /* display: none; */
    position: absolute;
    max-width: 45vh;
    /* width: 100%; */
    /* z-index: 9999; */
    margin-top: -200px;
    padding: 20px 30px;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,.1);
    outline: none;
    border: none;
}

.cardPlacement {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}



/* @media only screen and (max-width: 1100px) {
    .card{
       margin-top: -20vh;
    }
} */


.shape1 {
    position: absolute;
    top: 230px;
    left: 10%;
    /* width: 100%; */
    /* height: 100%; */
    z-index: -1;
    transition: transform 0.1s ease-out;
}

.shape2 {
    position: absolute;
    top: 270px;
    right: 50;
    /* width: 100%; */
    /* height: 100%; */
    z-index: -1;
    transition: transform 0.1s ease-out;
}

.shape3 {
    position: absolute;
    top: 500px;
    left: 80%;
    /* width: 100%; */
    /* height: 100%; */
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape4 {
    position: absolute;
    top: 270px;
    right: 15%;
    /* width: 100%;
    height: 100%; */
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape5 {
    position: absolute;
    top: 550px;
    right: 5%;
    /* width: 100%; 
    height: 100%; */
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape6 {
    position: absolute;
    right: 0%;
    margin: 10px 0 30vh;
    padding: 0;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape7 {
    position: absolute;
    right: 5%;
    margin-top: 10vh;
    transition: transform 0.1s ease-out;
}

.shape8 {
    position: relative;
    bottom: 40vh;
    left: 5%;
    width: fit-content;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape9 {
    position: absolute;
    bottom: 33vh;
    left: 10%;
    width: fit-content;
    z-index: 9999;
    transition: transform 0.1s ease-out;
}

.shape10 {
    position: absolute;
    bottom: 15vh;
    left: 80%;
    width: fit-content;
    z-index: 0;
    transition: transform 0.1s ease-out;

}

.shape11 {
    position: absolute;
    top: 180px;
    left: 5%;
    z-index: 0;
    opacity: 0.5;
    transition: transform 0.1s ease-out;
}

.shape12 {
    position: absolute;
    top: 150px;
    right: 0%;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape13 {
    position: absolute;
    top: 180px;
    left: 65%;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape14 {
    position: absolute;
    top: 180px;
    left: 50%;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape15 {
    position: absolute;
    top: 40rem;
    left: 75%;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape16 {
    position: absolute;
    top: 180px;
    left: 50%;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.shape17 {
    position: absolute;
    left: 85%;
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape18 {
    position: absolute;
    left: 5%;
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape19 {
    position: absolute;
    left: 85%;
    z-index: -1;
    transition: transform 0.1s ease-out;

}

.shape img {
    position: absolute;
    margin-top: 0px;
    animation: moveLeftRight 3s ease-in-out infinite;
    z-index: -1;
}

.hideShape {
    display: block;
}

@media only screen and (max-width: 1200px) {
    .hideShape {
        display: none;
    }
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}




@media screen and (max-width: 1100px) {

    /* .hero {
        padding-top: 18vh;

    } */
    .leftHero,
    .rightHero {
        margin-top: 165px;
    }

    .heroImg {
        width: 100%;
        margin-top: 164px;
    }

    .heroImg img {
        width: 89%;
        height: auto;
        /* margin-bottom: 0; */
    }

    .card {
        max-width: 50vh;
    }
}


@media screen and (max-width: 991px) {
    .rightHero {
        margin-top: 10px;
    }

    .heroImg {
        width: 100%;
        margin-top: 0px;
    }
}

@media screen and (max-width: 400px) {
    .card {
        max-width: 80%;
        margin-top: -132px;
        padding: 10px 10px;
    }

    .cardPlacement img {
        width: 80%;
    }
}

@media screen and (max-height: 571px)
 {

 .card {
        max-width: 80%;

    }
}



/* Hero  Section */


/* Features section  */
.FeaturesSection {
    height: auto;
    width: 100%;
    background: linear-gradient(-90deg, #f1b802 10%, #ffc91b 100%);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    width: 100%;
}

.featuresBox {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    /* border: 2px solid red; */
    width: 20%;
    margin: 20px 0;

}

.featuresIcon {
    height: 80px;
    width: 85px;
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
    border-radius: 50%;
    background-color: #ddab0a;
}

.featuresIcon svg {
    width: 80px;
    height: 40px;
    margin: auto;
    /* margin-left: 10px; */
    /* margin-top: 13px; */
}




@media only screen and (max-width: 991px) {


    .features {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }


}

@media only screen and (max-width: 551px) {


    .features {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }


}

svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards infinite;
}


svg path:nth-child(2) {
    animation-delay: 0.3s;
}

svg path:nth-child(3) {
    animation-delay: 0.5s;
}

svg path:nth-child(4) {
    animation-delay: 0.6s;
}

svg path:nth-child(5) {
    animation-delay: 0.8s;
}

svg path:nth-child(6) {
    animation-delay: 1s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;

    }
}







.st0,
.st1 {
    fill: none;
    stroke: #000;
    stroke-width: 1.5417;
    stroke-miterlimit: 7.7083;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards infinite;
}

.st1 {
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Loop the animation every 10s */
svg {
    animation: restart 10s infinite;
}

@keyframes restart {
    0% {
        visibility: hidden;
    }

    1% {
        visibility: visible;
    }
}




path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-width: 1.3;
    stroke-miterlimit: 7.7083;
    animation: draw 3s ease forwards;
}

svg {
    animation: restart 10s infinite;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes restart {
    0% {
        visibility: hidden;
    }

    1% {
        visibility: visible;
    }
}




.featuresContent {
    padding-left: 20px;
    margin-top: 35px;
}

.title h5 {
    word-break: break-word;
}

/* Features section  */


/* Courses card section  */

.courseSection {
    width: 100%;
    padding: 48px 0;
    background-color: #efefef;
}


/* .courseRow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
} */

.courseRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    /* max-width: 100%; */
}

.job{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 67%;
    margin: auto;
    text-align: center;
}

.sectionTitle .subTitle {
    /* text-align: center; */
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #878280;
}

.mainTitle {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 44px;
    color: #181818;
}

.courseCard {
    background-color: #ffffff;
    position: relative;
    border-radius: 5px;
    width: 100%;
    height: 100%;

}

.cardContent {
    text-align: left;
    width: 100%;
}

.cardInner {
    width: 100%;
    /* height: 33rem; */
}

.cardImg img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
}

.time {
    position: absolute;
    top: 10px;
    right: 10px;
}

.duration {
    background-color: #585858;
    border-radius: 3px;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    font-family: "League Spartan", sans-serif;
    display: block;
}


.level {
    font-size: 16px;
    font-weight: 400;
    color: #585858;
    font-family: "League Spartan", sans-serif;
    background-color: rgba(26, 182, 157, .15);
    border-radius: 3px;
    padding: 1px 10px;
    margin-top: 30px;
    margin-left: 30px;
    display: inline-block;
}

.courseName {

    width: 80%;
    /* word-wrap: break-word; */
    line-height: normal;
    margin-left: 30px;
    margin-top: 17px;
}

.enrollStud {
    margin-left: 30px;
}

.cardBtn {
    /* margin-bottom: 30px; */
    margin-top: -20px;
    padding: 10px;
    /* height: 50px; */
    width: 190px;
    font-weight: 600;
    font-family: "League Spartan", sans-serif;
}

.cardBtn button {
    color: #ffffff;
    margin-top: 20px;

    font-weight: 600;
    font-size: 18px;
    margin-left: 14px;
}

.allCourses {
    margin: auto;
    padding: 10px;
    width: 200px;
}

.allCourses button {
    margin-top: 50px;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
}


.cardBack {
    display: none;
    /* border: 2px solid red; */
    background-color: #FFC815;
    position: absolute;
    border-radius: 5px;
    /* bottom: 64vh; */
    top: 0;
    width: 100%;
    height: 100%;
    text-align: left;
}

.cardBack a {
    color: #181818;
    text-decoration: none;
}

.backCardInner {
    /* border: 2px solid red; */
    /* padding: 10px; */
    margin: 30px 10px;
}

.backCardInner span {
    /* border:2px solid black; */
    padding: 5px 15px;
    border-radius: 6px;
    background-color: #fff;
    margin-left: 30px;

}

.backCardInner p {
    font-size: 15px;
}

.courseCard:hover .cardBack {
    display: block;
    transition: transform 0.3s ease-in-out;

}

@media only screen and (max-width: 991px) {
    .courseRow {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sectionTitle{
        width: 100%;
    }

}

@media only screen and (max-width: 768px) {
    .courseRow {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
.mainTitle{
    font-size: 35px;
}

}
    


/* Courses card section  */


/* About Section  */

.aboutImg {
    position: relative;
    padding: 90px 0 60px 90px;
    height: auto;
    /* border: 2px solid #1dacd0; */

}

.gnsImg {
    vertical-align: middle;
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* border: 2px solid #1dacd0; */

}

.sunImg {
    margin-top: 3rem;
    height: auto;
    width: auto;
}

.aboutPara {
    /* border: 2px solid red;    */
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Poppins", sans-serif;
}

.featuresList li {
    font-weight: 400;
    font-size: 18px;
    font-family: "League Spartan", sans-serif;
    color: #808080;
    /* margin-left: -35px; */
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
    list-style: url('../img/tick\ \(1\).png');
   
}


/* .featuresList li::before {
  content: "";
  display: inline-block;
  width: 16px; 
  height: 16px;
  background: url('../img/tick.png') no-repeat center/contain;
  margin-right: 8px;
  vertical-align: middle;
} */

.rightInfo {
    /* border: 2px solid red; */
    height: auto;
    max-width: 280px;
    background-color: #ffffff;
    box-shadow: 0px -3px 5px #e6e3e3;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 15%;
    position: absolute;
    right: 0;
    top: 15px;
    /* bottom: 62vh;
    left: 19vh; */

}

.leftInfo {
    display: flex;
    width: 26vh;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: absolute;
    bottom: 0vh;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 30%;
    border-top-left-radius: 18%;
    border-top-right-radius: 10px;
    left: 0vh;
    animation: float 1.5s ease-in-out 1000;
}

@keyframes float {
    0% {
        transform: translateY(-10px);
    }

    25% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    75% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(-5px);
    }

}

@media screen and (max-width: 991px) {
    .rightInfo {
        display: none;
    }

    .leftInfo {
        display: none;
    }
}



.rightInfoPara {
    font-size: 16px;
    margin-top: -20px;
    /* border: 2px solid red; */
    width: 100%;

}




.icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #fdedef;
}



@media screen and (max-width: 1230px) {
    .aboutImg {
        position: relative;
        padding: 90px 0 60px 0;
        height: auto;
        /* border: 2px solid #1dacd0; */

    }
}

@media screen and (max-width: 520px) {
    .rightInfo {
        /* border: 2px solid red; */
        height: 38vh;
        max-width: 230px;
    }

    .sunImg {
        margin-top: 10px;
        height: 68px;
        width: 68px;
    }
}


@media only screen and (max-width: 431px) {
    /* .aboutImg {
        padding: 90px 0 60px 61px;
    }

    .sunImg {
        margin-top: 10px;
        height: 68px;
        width: 68px;
    }

    .rightInfo {
        height: 38vh;
        max-width: 186px;
    } */


}



/* About Section  */

/* Brands section  */
.brands {
    width: 100%;
    height: auto;
    background-color: #efefef;
}

.companies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    /* min-height: 200px;  */

}

.company {
    /* height: 18vh; */
    /* width: 20vh; */
    filter: grayscale(100%);
    margin: auto;
    text-align: center;
}

.company:hover {
    filter: grayscale(0%);
    background-color: #efefef;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

@media only screen and (max-width: 520px) {


    .companies {
        grid-template-columns: repeat(3, 1fr);
        /* margin-left: 11vh; */
        gap: 5px;
    }

    /* .company {
        height: 10vh;
        width: 15vh;
    } */

    /* .company {
        filter: grayscale(0);
    }

    .company:hover {
        background-color: white;
        box-shadow: none;

    } */

}

@media only screen and (max-width: 380px) {
    .companies {
        grid-template-columns: repeat(2, 1fr);
        /* margin-left: 11vh; */
        gap: 5px;
    }
}



/* Testimonial */
.Testimonial {
    width: 100%;
    max-width: 1000px;
    height: 520px;
    position: relative;
    overflow: hidden;
}

.Testimonial-container {
    width: 100%;
    height: 80%;
    position: relative;
}


.Testimonial-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
    cursor: grab;
    opacity: 0;
    z-index: 0;
}

.Testimonial-item:active {
    cursor: grabbing;
}


.Testimonial-item.active {
    width: 300px;
    height: auto;
    margin-top: 50px;
    padding: 40px 30px 50px;
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Left card */
.Testimonial-item.left {
    width: 250px;
    height: 250px;
    margin-left: 20px;
    margin-top: 20px;

    opacity: 0.6;
    z-index: 1;
    box-shadow: 70px 0 50px 0 rgba(13, 63, 163, 0.1);
    transform: translate(-150%, -50%) scale(0.9);
}

/* Right card */
.Testimonial-item.right {
    width: 250px;
    height: 250px;
    margin-top: 20px;
    opacity: 0.6;
    z-index: 1;
    box-shadow: 70px 0 50px 0 rgba(26, 46, 85, .1);
    transform: translate(50%, -50%) scale(0.9);
}

/* Testimonial Card Structure */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-img {
    position: relative;
    margin-right: 15px;
}

.profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}


.profile-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    text-align: left;
}

.profile-info p{
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
    text-align: left;

}
.profile-info div{
    margin: 3px 0 0;
    font-size: 14px;
    
    text-align: left;
}

.stars {
    color: #FFC815;
    font-size: 15px;
    margin-bottom: 10px;
}
.starsBack{
    color: #585858;
    font-size: 15px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 17px;
    color: #808080;
    line-height: 1.5;
    text-align: left;
}

/* Dots Navigation */
.Testimonial-nav {
    bottom: -10px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.Testimonial-nav li {
    background: #ccc;
    border-radius: 50%;
    height: 8px;
    margin: 0 5px;
    width: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.Testimonial-nav li:hover {
    transform: scale(1.2);
}

.Testimonial-nav li.Testimonial-item-selected {
    background: #555;
}


@media only screen and (max-width:350px) {
    .Testimonial-item.active {
        width: 259px;
        padding: 20px 17px 14px
    }
}

/* testimonial end  */








.placement {
    width: 100%;
    background-color: #585858;
    margin-top: 10vh;
}

.placementImg {
    margin-top: -45px;
    padding-left: 20vh;
    margin-bottom: -40px;
}

.color-white {
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 3rem;
}

@media only screen and (max-width: 1200px) {
    .placementImg{
    margin-bottom: 0;

    }
}
@media only screen and (max-width: 991px) {
    .placementImg img {
        display: none;
    }
}



/* Footer  */
.footer {
    width: 100%;
    background-color: #f0f4f5;
}

.foot_logo {
    height: 70px;
}

.ul {
    margin-left: 10vh;
}

.footerLink {
    list-style: none;
    width: fit-content;

}

.footerLink li {
    text-align: center;

}

.footerLink a {
    text-decoration: none;
    color: #808080;
    font-size: 15px;
    font-family: Poppins, sans-serif;

}

.footPara {
    width: 100%;
    margin-bottom: 20px;
}

.footerBottom {
    width: 100%;
    background-color: #ebeff0;
    min-height: 10vh;
}

.footerBottom p {
    font-size: 15px;
}



/* Footer  */






/* education section  */

.eduSection {
    width: 100%;
    background-color: #f8f6f2;
    /* height: 10vh; */
}

.visionMission {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 50px 0;
}

.mission,
.vision {
    width: 50%;
}

.MVicon img {
    height: 3rem;
}

.VMInfo p {
    /* border: 2px solid; */
    width: 80%;
    font-size: 18px;
}


.photo1 {
    margin-top: 65px;
}

.img1 img {
    width: 100%;
    border-radius: 50px 10px 10px 10px;
}

.photo2 {
    margin-top: 30px;
}

.img2 img {
    width: 100%;
    border-radius: 10px;
}

.photo3 {
    margin-top: 25px;
}

.img3 img {
    width: 100%;
    border-radius: 10px;
}

.photo4 {
    margin-top: -140px;
}

.img4 img {
    width: 100%;
    border-radius: 10px 10px 70px 10px;
}



@media only screen and (max-width: 1100px) {
    .eduSection {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .visionMission {
        flex-direction: column;
        /* align-items: center; */
    }

    .mission,
    .vision {
        width: 100%;
        /* border: 2px solid red; */
        /* text-align: center; */
    }

    .VMInfo p {
        /* border: 2px solid red; */

        width: 100%;
        font-size: 16px;
    }

}

@media only screen and (max-width: 768px) {

    .photo1,
    .photo3 {
        margin-top: 20px;
        height: 100%;

    }

    .photo2 {
        margin-top: -20px;
        height: 100%;

    }

    .photo4 {
        margin-top: -100px;
        height: 100%;
    }

    .img1 img,
    .img2 img,
    .img3 img,
    .img4 img {
        width: 100%;
        height: auto;

    }
}

@media only screen and (max-width: 422px) {
    .photo1 {
        margin-top: -10px;
    }

    .photo4 {
        margin-top: -30px;
    }
}


@keyframes TopToBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes BottomToTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.photo1,
.photo2 {
    animation: TopToBottom 1.2s ease-out forwards;
}

.photo3,
.photo4 {
    animation: BottomToTop 1.2s ease-out forwards;
}



/* Counter */

.countCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: auto;
}

.count {
    flex: 1 1 200px;
    max-width: 300px;
    box-shadow: 0 30px 70px 0 rgba(16, 12, 47, 0.05);
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.count:hover {
    transform: translateY(-5px);
}

.countIcon img {
    width: 10vh;
    max-width: 80px;
}

.countText {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.countText h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.countText span {
    font-size: 2rem;
    font-weight: 700;
}

.countPara {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .count {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .count {
        flex: 1 1 100%;
    }

    .countText h1,
    .countText span {
        font-size: 1.5rem;
    }

    .countPara {
        font-size: 0.9rem;
    }
}


/* Why choose us */
.whyChooseBox {
    margin-top: 90px;
    text-align: center;
    height: auto;
    width: 100%;
    padding: 0 30px 20px;
    border-radius: 5px 50px 5px 70px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.boxIcon img {
    width: 25%;
    margin-top: -50px;
}

.boxTitle p {
    width: 100%;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Poppins", sans-serif;
    color: #181818;
}

@media only screen and (max-width: 768px) {
    .boxIcon img {
        width: 15%;
        /* margin-top: -60px; */
    }
}

@media only screen and (max-width: 520px) {
    .whyChooseBox {
        width: 100%;
        padding: 0 10px;
    }

    .boxIcon img {
        width: 40%;
        margin-top: -60px;
    }
}


/* Get IN Touch Section  */

.GetINTouchSec {
    width: 100%;
    height: 25rem;
    /* border: 2px solid ; */
    display: flex;
    justify-content: center;
    text-align: center;
}

.getInTouchCard {
    margin: auto;
    /* border: 2px solid;    */
    width: 50%;
    border-radius: 10px;
    background-color: #ffc91b;
    padding: 50px;
}


.circle {
    height: 70px;
    width: 70px;
    background-color: #e7e7e7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.circleInner {
    height: 60px;
    width: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    /* margin: auto; */
    /* display: flex; */
    padding: 10px 15px;

}

.getInSubHead {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 1280px) {
    .getInTouchCard {
        width: 90%;
        /* padding: 30px; */
    }

    .or {
        display: flex;
        justify-content: center;
        align-items: center;
    }


}

/* placementSection */
.placementSection {
    background-color: #f0f4f5;
}

.placementCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5vh;
    width: 100%;
    margin: auto;
}

.placementCard {
    /* border: 2px solid orange; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    /* height: 100px; */
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .05);
    padding: 30px 50px 25px;
    border-radius: 5px;

}

.placementCardImg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin-top: 12px;
    margin-left: 14px;
    background: transparent;
}

.assCardImg {
    background-color: #e8f8f5;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    align-items: center;
    /* padding: auto; */

}

.assImg {
    height: 45px;
    width: 55px;
    margin: auto;
    padding-left: 5px;
    /*  */
    /* font-size: 36px; */

}

.assCard:hover .placementCardImg {
    background-color: #1ab69d;
}

.placementCard:hover .assImg {
    filter: invert(1);
}


.placedCardImg {
    background-color: #fdedef;
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.placedImg {
    height: 45px;
    width: 55px;
    margin: auto;
    padding-left: 5px;
    /*  */
    /* font-size: 36px; */

}

.placedCard:hover .placementCardImg {
    background-color: #ee4a62;
}

.placementCard:hover .placedImg {
    filter: invert(1);
}



.resumeCardImg {
    background-color: #eceffc;
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.resumeImg {
    height: 45px;
    width: 55px;
    margin: auto;
    padding-left: 5px;
    /*  */
    /* font-size: 36px; */

}

.resumeCard:hover .placementCardImg {
    background-color: #4664e4;
}

.placementCard:hover .resumeImg {
    filter: invert(1);
}



@media only screen and (max-width: 1100px) {
    .placementSection {
        padding-top: 100px;
    }

}

@media only screen and (max-width: 1000px) {
    .placementCards {
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-rows: repeat(2, 1fr); */
        gap: 5vh;
    }
}

@media only screen and (max-width: 768px) {
    .placementCards {
        grid-template-columns: repeat(1, 1fr);
        /* grid-template-rows: repeat(2, 1fr); */

    }
}


/* Infrastructure */
.infrastructure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5vh;
    width: 100%;
    margin-top: 15vh;
}

.infraCard {
    /* border: 2px solid orange; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    /* height: 100px; */
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    padding: 30px 50px 25px;
    border-radius: 5px;
    margin-bottom: 8vh;
}


.infraInner {
    height: 120px;
    width: 120px;
    border: 7px solid #ffffff;
    border-radius: 50%;
    margin-top: -95px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.acCard {
    box-shadow: 0px 20px 70px 0px rgba(15, 107, 92, 0.2);
    background-color: rgba(26, 182, 157, .1);
    transition: 0.5s;
}

.infraInner img {
    height: 50px;
    width: 60px;
}


.infraCard:hover .acCard {
    background-color: #1ab69d;
    transition: 0.5s;

}

.infraCard:hover .acImg {
    filter: invert(1);

}

.boardCard {
    background-color: rgba(238, 74, 98, .1);
    box-shadow: 0 20px 70px 0 rgba(176, 57, 75, .2);
}

.infraCard:hover .boardCard {
    background-color: #ee4a62;
    transition: 0.5s;

}

.infraCard:hover .boardImg {
    filter: invert(1);

}

.labCard {
    background-color: #e7f7fe;
    box-shadow: 0 20px 70px 0 rgba(27, 89, 116, .2);
}

.infraCard:hover .labCard {
    background-color: #39c0fa;
    transition: 0.5s;

}

.infraCard:hover .labImg {
    filter: invert(1);

}


.firewallCard {
    background-color: #fcf2e6;
    box-shadow: 0px 20px 70px 0px #fcf2e6;
}

.infraCard:hover .firewallCard {
    background-color: #f8941f;
    transition: 0.5s;

}

.infraCard:hover .firewallImg {
    filter: invert(1);
}

.connectionCard {
    background-color: #eaedfa;
    box-shadow: 0px 20px 70px 0px #eaedfa;
}

.infraCard:hover .connectionCard {
    background-color: #4664e4;
    transition: 0.5s;

}

.infraCard:hover .connectionImg {
    filter: invert(1);
}

.developmentCard {
    background-color: #f3eeff;
    box-shadow: 0px 20px 70px 0px #f3eeff;
}

.infraCard:hover .developmentCard {
    background-color: #8e56ff;
    transition: 0.5s;

}

.infraCard:hover .developmentImg {
    filter: invert(1);
}


@media only screen and (max-width: 1000px) {
    .infrastructure {
        grid-template-columns: repeat(2, 1fr);

        gap: 5vh;
    }
}

@media only screen and (max-width: 768px) {
    .infrastructure {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 5vh;
    }
}

@media only screen and (max-width: 550px) {
    .infrastructure {
        grid-template-columns: repeat(1, 1fr);

    }

    .infraCard {
        width: 90%;
        margin: auto;
        margin-top: 80px;
    }

    .infraInner {
        height: 100px;
        width: 100px;
    }

    .infraInner img {
        height: 40px;
        width: 50px;
    }
}


/* Placement Partners */
.breadcrumb {
    background-color: #efefef;
    /* min-height: 30vh; */
}

/* @media only screen and (max-width: 562px) {
    .breadcrumb {
        width: 80vh;

    }
} */

.navigation li {
    list-style: none;
    padding: 5px;
    font-size: 18px;

}

.navigation li a {
    text-decoration: none;
    color: #181818;
}

.navigation li a:hover {
    color: #ddab0a;
}

.PlaceTitle {
    font-size: 60px;
    font-weight: 600;
    margin: auto;
}

@media only screen and (max-width: 508px) {
    .PlaceTitle {
        font-size: 40px;
    }
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 40px; */
    /* padding: 60px; */
    justify-items: center;
    align-items: center;
}

.brandlogo {
    /* border: 1px solid; */
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-grid img {
    margin: auto;
    max-width: 100%;
    height: 18vh;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-grid img:hover {
    filter: grayscale(0%);

}

.brandlogo:hover {
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
}


/* Courses Section  */

.NetworkEng {
    background-color: #efefef;
    width: 100%;
}

.courseHero h1 {
    font-size: 38px;
    font-weight: 600;
    margin-top: 30px;
}

.courseHero p {
    font-size: 22px;
    margin-top: 15px;
}

.courseUl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 2px solid black; */

}

.courseUl li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* border: 2px solid red; */
    padding: 20px;
    margin-left: -40px;
}

.li1 i {
    color: #1BA2DB;
    font-size: 25px;

}

.li3 i {
    color: #ddab0a;
    font-size: 25px;
    height: 35px;
    border: 1px solid #ddab0a;
    border-radius: 8px;

}

.courseUl span {
    font-size: 18px;
    font-weight: 500;
}

.earth {
    /* display: inline-block; */
    text-align: center;
    /* border: 2px solid;  */
    height: 40px;
    width: 40px;
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    100% {
        transform: rotate(360deg);
    }

    /* 100% {
    transform: rotate(-360deg);
  } */
}


.courseForm {
    margin: auto;
    max-width: 550px;
    width: 100%;
    background: #fff;
    padding: 10px 50px 50px;

}

.formHeading {
    font-size: 30px;
}

.formInput {
    font-size: 18px;
    background-color: #ffffff;
    padding: 10px 10px;
    border: solid #e0e0e0 !important;
    border-radius: 5px;
    width: 100%;
}

.select {
    font-size: 18px;
    background-color: #ffffff;
    padding: 10px 10px;
    border: solid #e0e0e0 !important;
    border-radius: 5px;
    width: 100%;
}

.select .option {
    font-size: 16px;
    padding: 10px;
    background-color: #fff;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.select .option:hover {
    background-color: #f5f5f5;
    color: #000;
    cursor: pointer;
}

.select option:checked {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
}



.formBtn button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
}


.form-popup {
    display: none;
    position: fixed;
    top: 0;
    border: 3px solid #f1f1f1;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }


}






@media only screen and (max-width:520px) {
    .courseForm {
        width: 95%;
        padding: 10px 14px 12px
    }

    .formInput {
        font-size: 14px;
        padding: 4px 6px;
    }

    .select {
        font-size: 14px;
        padding: 8px;
    }

    .select .option {
        width: 90%;
        font-size: 14px;
        padding: 6px;
    }
}


.sectionHeading {
    font-weight: 600;

}

.courseDesc h2 {
    font-weight: 700;
    font-size: 36px;
}

.courseDesc p {
    margin: 20px 0px 50px 0px;
    font-weight: 400;
    font-size: 15px;
    font-family: Poppins, sans-serif;
    color: #808080;
}



.curriculum {
    border: 1px solid #e5e5e5;
}

.curriculum li {
    border-bottom: 1px solid #e5e5e5;
    /* border-top: 1px solid #585858;    */
    padding: 20px;
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: Poppins, sans-serif;
}

.curriculum a {
    text-decoration: none;
    color: #181818;
    font-size: 15px;
}

.curriculum a:hover {
    color: #ddab0a;
}


.ytVideos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.videos {
    margin-top: -60px;
}

.videoSec h3 {
    font-weight: 600;
    font-size: 36px;
}

.video {
    border: 1px solid #a09b9b;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 0.7rem;
}

@media only screen and (max-width:768px) {
    .ytVideos {
        grid-template-columns: repeat(2, 1fr);

    }
    .videoSec{
        padding-bottom: 80px;
    }

    .videoSec img{
        display: none;
    }
}

@media only screen and (max-width:500px) {
    .ytVideos {
        grid-template-columns: repeat(1, 1fr);

    }
}

.feedbackInner img {
    height: 90px;
    width: 90px;
    /* border: 7px solid #ffffff; */
    border-radius: 50%;
    margin-top: -95px;
    display: flex;
    justify-content: center;
    align-items: center;

}




.collapsible {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    margin-bottom: 5px;
    transition: max-height 1s ease;
}

/* Active state for collapsible */
.collapsible.active {
    background-color: #0056b3;
    transition: max-height 0.3s ease;
}

/* Hidden content */
.content {
    padding: 0 15px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: max-height 0.3s ease;
}



@media screen and (max-width: 1100px) {
    .NetworkEng {
        padding-top: 133px;
    }
}



/* SystemEng  */
.sectionHeading h2 {
    font-size: 40px;
    font-weight: 600;
}

.sectionHeading p {
    font-size: 15px;
    font-weight: 400;
    width: 55%;
    text-align: left;
    color: #585858;
}

.ratingBox {
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .07);
    border-radius: 5px;
    text-align: center;
    width: 170px;
    height: 170px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.rateNo {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    font-family: 'Spartan', sans-serif;
    color: #585858;
    margin-bottom: 10px;
}

.comment {
    display: flex;
}

.commentImg {
    min-width: 80px;
    width: 80px;
    max-height: 80px;
    border-radius: 50%;
    margin-right: 30px;
}

.commentImg img {
    width: 100%;
    border-radius: 50%;
}

.reviewStar {
    padding-bottom: 10px;
}


.courseSideCard {
    margin-top: -220px;
    position: relative;
    z-index: 2;

}

.sidecard {
    background-color: #ffffff;
    box-shadow: 0 10px 50px 0 rgba(26, 46, 85, .07);
    border-radius: 5px;
}

.sideCardInner {
    padding: 15px;
}

.innerCardImg {
    position: relative;
    margin-bottom: 10px;
}

.innerCardImg img {
    border-radius: 5px;
    width: 100%;
}

.sideCardContent {
    padding: 30px 0px 25px;
}

.sideCardTitle {
    margin-bottom: 15px;
}

.sideCardUl li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #878280;
}

.label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.label i {
    font-size: 20px;
    padding-right: 20px;
    max-width: 35px;
}

.value {
    font-weight: 600;
}

.courseNav {
    width: 90%;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;

}

.courseNav a {
    font-size: 20px;
    text-decoration: none;
    color: #585858;
    padding: 10px;
    margin-bottom: 15px;
}

.courseNav a:hover {
    color: #ddab0a;
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
    .sectionHeading p {
        width: 100%;
        text-align: left;
    }

    .courseUl {
        flex-direction: column;
        align-items: flex-start;
        margin-left: -17px;
    }

    .courseSideCard {
        margin-top: 0;
        margin-bottom: 35px;
    }
}


@media only screen and (max-width: 767px) {
    .courseNav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .courseNav a {
        padding: 5px 0;
        margin-bottom: 5px;
        color: #4a75ea;
    }
}


/* Blogs Section  */


.blogCard {
    /* border: 2px solid red; */

    border-radius: 15px;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    width: 95%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 90px;

}

.blogCard a {
    text-decoration: none;
    color: black;
}

.blogImg img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blogContent {
    padding: 30px;
}

.subHeading {
    font-size: 16px;
    color: #585858;
    padding: 10px 0 10px 0;
}

.blogTitle {
    font-size: 35px;
    font-weight: 700;
    color: black;
}

.blogAuthor {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-right: 50px;
}


.blogPara {
    margin-top: 10px;
    font-size: 15px;
    color: #808080;
}

.sideBlog {
    width: 95%;
    background-color: white;
    box-shadow: 0 10px 50px 0 rgba(26, 46, 85, .07);
    border-radius: 5px;
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 90px;
}

.postCard {
    /* border-bottom: 1px solid #878280; */
    margin-top: 20px;
    margin-bottom: 30px;
}

.postCard img {
    width: 90%;
    border-radius: 6px;
    margin-bottom: 19px;
}

.sideBlogTxt {
    margin-bottom: 50px;
}

.sideBlogTxt h4 {
    font-size: 28px;
    margin: 10px auto;
}

.sideBlogTxt a {
    text-decoration: none;
    color: #292929;
    font-size: 16px;
}

.search input {
    padding: 10px;
    width: 90%;
    border: 1px solid #878280;
    border-radius: 5px;
    outline: none;
    margin-bottom: 40px;
}

.blogNavigation {
    width: 40%;
}

.blog-container {
    display: none;
}

.blog-container.active {
    display: block;
}

.blogLink.active {

    color: #ffffff !important;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 5px;
}


.blogNav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.blogNav li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;

}

.blogNav a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.blogNav a.active {
    background-color: #585858;
    color: rgb(180, 8, 8);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

@media only screen and (max-width: 600px) {
    .blogNavigation {
        width: 90%;
    }
}

@media only screen and (max-width: 520px) {
    .blogTitle {
        font-size: 25px;
    }
}

.blogSubTitle {
    letter-spacing: 1px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blogMainTitle {
    font-weight: 600;
    font-size: 45px;
}

.blog-thumb {
    /* border: 2px solid red; */
    width: 100%;
    margin-top: 52px;
}

.blog-thumb img {
    width: 100%;
    border-radius: 10px;
}

.blogText {
    margin-top: 60px;
}

.blogText h2 {
    font-weight: 600;
    font-size: 45px;
}

.blogText h3 {
    font-weight: 600;
    font-size: 35px;
    padding: 15px 0;
}

.blogText h4 {
    font-size: 26px;
    padding: 12px 0;
}

.blogText a {
    color: #808080;
    text-decoration: none;
    font-weight: bold;
}

.blogText a:hover {
    color: black;
}

.blogText img {
    width: 100%;
    margin-bottom: 2rem;
}

.blogText p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #808080;
    line-height: 1.73;
    /* margin-top: 15px; */
    margin: 0 0 30px;
}

.blogText li {
    list-style: square;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #808080;
    padding: 10px;
}

.blogFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0 80px 0;
}

.blogFooter h5 {
    margin: auto;
}


.tagList {
    display: flex;
    gap: 2px;
}

.tagList a {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    margin: 5px;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.tagList a:hover {
    color: #ffffff;
    background-color: #585858;
}

.blogAuth {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    line-height: normal;
    margin: 50px 0 50px 0;
}

.blogAuth h4,
p {
    padding: 0;
    margin: 0;
}


.blogAuth img {
    width: 100px;
    height: 100px;
}


.comparison-table {
    width: 100%;
    border-collapse: collapse;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #eee;
    padding: 10px;
    vertical-align: top;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
}

.comparison-table th {
    background: #f9f9f9;
    font-size: 18px;
    font-weight: bold;
}

.comparison-table td {
    background: #fff;
}


@media (max-width: 768px) {

    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 20px;
    }

    .comparison-table th {
        background: #333;
        color: #fff;
        padding: 12px;
    }
}

.blogTopNav {
    display: flex;
    align-items: center;
}


@media only screen and (max-width:1100px) {
    .blogTopNav {
        padding-top: 150px;
    }

}

@media only screen and (max-width:500px) {
    .blogTopNav {
        display: none;
    }

    .blogSection {
        padding-top: 150px;
    }

    .blogMainTitle {
        font-size: 35px;
    }

    .blogText h2 {
        font-size: 35px;

    }

    .blogText h3 {
        font-size: 25px;
    }

    .blogText h4 {
        font-size: 22px;
    }

    .blogFooter {
        flex-direction: column;
        gap: 10px;
        justify-content: flex-start;
        align-items: flex-start;
    }

}

/* FAQ Section  */
.hide {
    display: none;
}

.FAQs h3 {
    font-size: 35px;
    font-weight: 600;
}

.FAQs p {
    font-size: 18px;
    color: #808080;
}

.faqli {
    list-style: none;
    padding: 0;
}

.faqli li {
    margin: 10px 0;
}

.faqli a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

.faqli a.active {
    color: #FFC815;
}


.faq-container {
    display: none;
    margin-top: 20px;
}

.faq-container.active {
    display: block;
}

/* .faq-container {
    max-width: 700px;
    margin: auto;
} */

.faq-item {
    margin-bottom: 30px;
    /* border: 1px solid #ddd;   */
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 50px 0 rgba(26, 46, 85, .1);
}

.faq-question {
    padding: 20px 45px 20px 30px;
    font-size: 22px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.faq-question.faqActive {
    background: #FFC815;
    color: #585858;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 20px;
    background: #fff;
}

.faq-answer p {
    font-size: 15px;
    font-weight: 400;
    color: rgb(88, 88, 88);
    font-family: Poppins, sans-serif;
}

.faq-answer.open {
    padding: 15px 20px;
    max-height: 300px;
    /* adjust if needed */
}

@media only screen and (max-width: 991px) {

    .FAQs,
    .faqli {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}



/* thank you page  */

.thank-you {
    padding: 80px 0;
    background: #f9f9f9;
}

.thank-you-icon {
    margin: 0 auto 30px;
    width: 100px;
    filter: drop-shadow(0 2px 5px rgba(255, 193, 7, 0.3));
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #FFC107;

    stroke-miterlimit: 10;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #FFC107;

    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(255, 193, 7, 0.1);
    }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.thank-you-icon:hover {
    animation: pulse 1.5s infinite;
}

.thank-you-title {
    font-size: 65px;
    font-weight: 600;
}

.thank-you-content p {
    line-height: 3;
}

.next-step {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.contact-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0
}

.contact-methods a {
    background: #fdc728 !important;
    color: white;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;

    padding: 0 30px;
    font-size: 20px;
    transition: .4s;
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.back-to-home a {
    background: #fdc728 !important;
    color: black;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;

    padding: 0 30px;
    font-size: 20px;
    transition: .4s;
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.whatsappIcon a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffc107;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 50px;
    z-index: 9999;
    text-decoration: none;
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    border-radius: 50%;
    /* border: 2px solid red; */
}

.callIcon a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffc107;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 50px;
    z-index: 9999;
    text-decoration: none;
    position: fixed;
    bottom: 100px;
    left: 1.5rem;
    border-radius: 50%;
    /* border: 2px solid red; */
}