:root {
    --dark: black;
    --logo-color: #322794;
    --logo-light-color: #5047a3;
    --landing--color: #0c0735;
    --nav-colo: #5047a3;
    --btns-color: #409C3A;
    --btns-lg-color: #85C227;
    --textdark: #513eff;
    --trnsdark: rgb(0, 0, 0);
    --lightgrey: rgb(160, 160, 160);
    --lightshardlogo: #d4cfff;
    --whitebold: rgb(255, 255, 255);
    --landing-course--color : #1d1752;
    --course-light-color : #4e43ad;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(245, 245, 245);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0.7vw;
    height: 0;
}

::-webkit-scrollbar-track {
    background-color: var(--landing--color);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--btns-lg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--btns-color);
}

.mousefollow {
    height: 10px;
    position: fixed;
    transition: 0.1s linear;
}

/* -- here is navbar css -- */
.navbar {
    min-height: 70px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--nav-colo);
    position: fixed;
    width: 100%;
    z-index: 2;
    box-shadow: 0px -10px 41px white;
}

.navbar .nav-branding img {
    height: 2rem;
    cursor: none;
}

.navbar .nav-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8vw;
}

.nav-item a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--dark);
    padding: 10px;
    position: relative;
    /* color: var(--logo-color); */
    color: white;
}

.nav-item a::after {
    content: '';
    height: 2px;
    background-color: var(--logo-color);
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 2s;
}

.nav-item a:hover::after {
    width: 100%;
}

.dropbtn {
    /* color: var(--logo-color); */
    color: white;
    background-color: transparent;
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.dropbtn .focusss ion-icon {
    transform: translateY(5px);
    animation: alert 1s ease infinite;
}

@keyframes alert {
    0% {
        transform: rotateY(180deg);
    }

}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    left: -100%;
    top: 130%;
    text-align: center;
    background-color: var(--nav-colo);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: var(--whitebold);
    padding: 12px 10px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
}

.dropdown-content a:hover {
    background-color: var(--landing--color);
}

.show {
    display: block;
}

.sideBtn {
    display: flex;
    gap: 10px;
    margin-right: 1%;
}

.sideBtn .firstBtn,
.secondBtn {
    display: flex;
    align-items: center;
    border-radius: 49px;
    position: relative;
}

.sideBtn a {
    background-image: linear-gradient(to top, var(--btns-color), var(--btns-lg-color));
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px var(--btns-color);
}

.sideBtn a:hover {
    background-image: linear-gradient(to top, var(--btns-lg-color), var(--btns-color));
}

.sideBtn .firstBtn .hiddentext,
.sideBtn .secondBtn .hiddentext2 {
    display: none;
    position: absolute;
    top: 100%;
    right: -48%;
    font-size: 17px;
    background-image: linear-gradient(to top, var(--btns-lg-color), var(--btns-color));
    padding: 5px;
    border-radius: 5px;
}

.sideBtn .firstBtn:hover .hiddentext,
.sideBtn .secondBtn:hover .hiddentext2 {
    display: block;
    opacity: 1;
}

.sideBtn a img {
    height: 30px;
}

/* -- end navbar-- */

/* -- landing page code start here -- */

main .landingpage {
    height: 95vh;
    display: flex;
    position: relative;
}

.landingpage .backptn {
    height: 90vh;
    width: 100vw;
    position: absolute;
    background-image: linear-gradient(45deg, var(--landing--color), var(--logo-light-color)60%);
    z-index: -1;
    border-bottom-left-radius: 40%;
    border: 1px solid var(--logo-color);
    box-shadow: 0px 0px 50px rgb(118, 72, 235);
}

.landingpage .texts {
    padding: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.firstLine p {
    font-size: 20px;
    font-weight: 600;
    display: inline;
    color: var(--whitebold);
}

.firstLine p span {
    font-size: 25px;
}

.autoScroll {
    color: var(--whitebold);
    text-transform: uppercase;
    text-align: left;
    overflow: hidden;
    font-weight: 900;
    font-size: 3vw;
    display: block;
    white-space: nowrap;
}

.scrollBox {
    height: 3.5rem;
    line-height: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}

.scrollBox .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scroll 10s normal infinite;
}
.scrollBox .inner p{
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-60px);
    }

    40% {
        transform: translateY(-60px);
    }

    50% {
        transform: translateY(-120px);
    }

    65% {
        transform: translateY(-120px);
    }

    75% {
        transform: translateY(-180px);
    }

    90% {
        transform: translateY(-180px);
    }

    100% {
        transform: translateY(0);
    }
}

.benifit .normalText {
    font-size: 2vw;
    font-weight: 600;
    color: var(--whitebold);
}

.hidden {
    opacity: 0;
}

.ShowText-contener {
    margin-top: 1vh;
    font-size: 2vw;
    font-weight: 700;
    display: block;
    color: white;
}

.under-Text {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}

.texts .Btncontener {
    margin-top: 10px;
    padding: 5px;
    display: flex;
    gap: 20px;
}

.Btncontener .landingBtns {
    text-align: center;
    font-size: 17px;
    color: var(--trnsdark);
    font-weight: 700;
    background-image: linear-gradient(to top, var(--btns-color), var(--btns-lg-color));
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
}

.landingBtns .arrowhide {
    opacity: 0;
    font-weight: 800;
}

.Btncontener .landingBtns:hover {
    background-image: linear-gradient(to top, var(--btns-lg-color), var(--btns-color));
    cursor: pointer;
    z-index: 1;
}

.landingBtns:hover .arrowhide {
    opacity: 1;
    margin-left: 2px;
    transition: all .3s;
}

.landingpage .img-seciton {
    display: grid;
    place-content: center;
}

.img-seciton .techImg {
    height: 40vw;
    filter: drop-shadow(5px 5px 10px black);
    animation: move 5s linear infinite;
    padding-bottom: 150px;
}

@keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.course-contener {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    position: absolute;
    bottom: 0%;
    right: 0%;
    padding: 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    /* background-image: linear-gradient(45deg, var(--landing-course--color), var(--course-light-color)); */
    
    animation: movement 1.5s linear 1;
}

.course-contener h1 {
    font-size: 1.2rem;
    /* color: var(--logo-color); */
    color: white;
}

.movecourse {
    /*color: var(--logo-color);*/
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3rem;
}

.movecourse div {
    display: inline;
    margin-right: 20px;
}

@keyframes movement {
    0% {
        transform: translateX(100%);
    }

}

/* --landingpage ends here -- */
/* -- aboutpage start here --  */
.About-page {
    background-image: white;
}

.About-page .About-heading,
.team-heading,
.cours-heading,
.blog-heding,
.photo-heding,
.contect-heding {
    color: var(--logo-color);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.5vw;
    position: relative;
}

.About-heading::after {
    content: '';
    position: absolute;
    top: 5px;
    height: 50px;
    width: 99%;
    margin-left: 3.5px;
    background-color: transparent;
    border-bottom: 2px solid #1d1752;
}

.About-heading h1 {
    padding: 10px 20px;
    color: #1d1752;
    font-size: 2.5rem;}

.main-content {
    padding: 3rem 0rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.main-content .About-cards {
    padding: 20px;
    width: 50%;
    /* background-color: var(--nav-colo); */
    background-color: #5047a3;
    border-radius: 10px;
    transform: translateX(-20%);
}

.About-cards::after {
    content: '15 year experience';
    color: var(--logo-color);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.5rem;
    position: absolute;
    background-color: rgba(240, 248, 255);
    padding: 5px;
    border-radius: 10px;
    top: -25%;
    box-shadow: 2px 2px 10px var(--logo-color);
    animation: move2 2s linear infinite;
}

@keyframes move2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.About-cards:nth-child(2)::after {
    content: 'range of course';
    right: 4%;
}

.About-cards:nth-child(3):after {
    content: 'team & staff';
}

.About-cards:nth-child(4)::after {
    content: 'our passion';
    right: 4%;
}

.About-cards:nth-child(2) {
    transform: translateX(20%);

}

.About-cards:nth-child(4) {
    transform: translateX(20%);

}

.About-cards p {
    font-size: 20px;
    font-family: sans-serif;
    /* color: var(--trnsdark); */
    color: white;

}

/* -- aboutpage end here --  */
/* --blogpage start here --  */

.Blog-page {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    padding: 2vw;
}

.Blog-page .blog-heding {
    text-align: center;
    margin-bottom: 4%;
}
.Blog-page .blog-heding h1{
    color: #322794;
}

.slider-container {
    position: relative;
    width: 85%;
    overflow: hidden;
    border-radius: 20px;
}

.slider-container .slider {
    display: flex;
    transition: transform .5s ease-in-out;
}

.slider .slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 50vh;
}

.buttn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 900;
    padding: 10px;
    color: var(--logo-color);
    cursor: pointer;
    border-radius: 10px;
    background-color: transparent;
    border: none;
}

.buttn:hover {
    background-color: var(--landing--color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* --blogpage ends here --  */
/* --coursepage start here --  */
.couse-page {
    display: flex;
    flex-direction: column;
    
}

.couse-page .cours-heading {
    font-size: 1.2rem;
    text-align: center;
    margin: 2rem;
}
.couse-page .cours-heading h1{
    color: #5047a3;
}

.course-cardContener {
    height: 21rem;
    padding: 10px;
    width: 100%;
    display: flex;
    gap: 2vw;
    position: relative;
    overflow-x: auto;
    margin: 0% auto;
    justify-content: center;
}

.cards {
    height: 15rem;
    position: relative;
}

.cardBox {
    width: 12rem;
    height: 100%;
    margin: auto;
    border-radius: 10px;
    transition: 1s;
    transform-style: preserve-3d;
    perspective: 800px;
}

.cardBox .FlipBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* box-shadow: 0px 0px 10px 2px var(--textdark); */
    box-shadow: 0px 0px 10px 0px white;
    transition: 1s;
    transform-style: preserve-3d;
}
.cardBox .FlipBox:hover {
    box-shadow: 0px 0px 40px 0px white;
}

.cardBox .Front,
.cardBox .Back {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: .5s;
    cursor: pointer;
    backface-visibility: hidden;
}

.cardBox .Front img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.cardBox .Back {
    background-color: #5047a3;
    color: #fff;
    transform: rotateY(180deg);
}

.cardBox .Back div {
    text-align: center;
    padding: 20px;
}

.cardBox .Back div h3 {
    font-size: 2.5rem;
}

.cardBox .Back div p {
    font-size: 1rem;
    margin-top: 10px;
}

.cardBox .Back div a {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    width: 120px;
    height: 45px;
    color: #222;
    line-height: 45px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
    transition: .5s;
    font-weight: bold;
    background-image: linear-gradient(to top, var(--btns-color), var(--btns-lg-color));
    border-radius: 10px;
}

.cardBox .Back div a:hover {
    background-image: linear-gradient(to top, var(--btns-lg-color), var(--btns-color));
}

.cards:hover .FlipBox {
    transform: rotateY(180deg);
}

.cards:hover {
    z-index: 1;
}

.cards .link {
    padding: 15px;
    width: 100%;
    font-size: 1.5rem;
    position: absolute;
    text-decoration: none;
    text-align: center;
    background-color: #5047a3;
    border-radius: 10px;
    margin: 10px 0px;
    z-index: 1;
    margin: 10px 0px 20px 0px;
}
.cards .link:hover {
    color: white;
}

/* -- coursepage ends here --  */
/* --teampage start here -- */
.team-page {
    padding: 1vw;
    background-color: white;
}

.team-page .team-heading {
    text-align: center;
    margin-bottom: 3vw;
}
.team-page .team-heading h1{
    color: white;
}

.teamCard-contener {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    height: 20rem;
    width: 100%;
    position: relative;
}

.team-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 24rem;
    height: 15rem;
    text-align: center;
    position: relative;
    border-radius: 2rem;
    background-color: var(--nav-colo);
    padding: 10px;
}

.team-card .mentorImg {
    overflow: hidden;
    height: 7rem;
    width: 7rem;
    position: absolute;
    top: -30%;
    border-radius: 50%;
    border: 5px solid white;
    background-color: black;
}


.team-card .mentor-name {
    font-size: 1.5rem;
    color: white;
    margin-top: 2rem;
}

.team-card p {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: white;
}

.team-card .link {
    margin-top: 1rem;
    display: flex;
    padding: 10px;
    gap: 30px;
}

.link a .hydrated {
    background: white;
    padding: 5px;
    border-radius: 71%;
}
.link a {
    color: #0866FF;
    font-size: 30px;
}

.link a:nth-child(2) {
    color: #bf2fa0;
}

.link a:nth-child(3) {
    color: #0072b1;
}

/* --teampage start here -- */

/* --teamslider-page--- */
.teamslide-page {
    margin-top: 2vw;
    background-color: white;
    padding: 2vw;
    display: none;
}

.teamslide-page .team-heading {
    text-align: center;
}

.teamslider-container {
    position: relative;
    width: 100%;
    height: 50vh;
    margin: auto;
    overflow: hidden;
}

.teamslider-container .teams-slider {
    display: flex;
    transition: transform .5s ease-in-out;
}

.teams-slider .team-slide {
    height: 45vh;
    min-width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.team-slide img {
    width: 100%;
    height: 50vh;
}

.touchBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.team-slide .team-card {
    width: 90%;
}

/* --teamslide page ends here--  */
/* -- contect page start here --  */
.contect-page {
    /* display: flex; */
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    height: 98vh;
}
.contect-contener {
    display: flex;
    gap: 0.8rem;
    height: 80vh;
    width: 80%;
    margin: auto;
   
}

.contect-contener .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 2px solid rgb(123, 123, 226);
    border-radius: 2rem;
    padding: 1rem;
    width: 100%;
    justify-content: center;
}


.form label {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: var(--logo-color);
}

#FullName,
#MobileNumber,
#Email,
#subject {
    border: none;
    display: flex;
    align-items: center;
    height: 3rem;
    width: 100%;
    border-radius: .5em;
    font-size: 1.4rem;
    padding-left: 2rem;
    box-shadow: 0 0 0 var(--landing--color),
    0.4rem 0.2rem 0rem var(--logo-color);
    color: var(--logo-color);
}
#msg {
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: .5em;
    font-size: 1.4rem;
    padding-left: 2rem;
    box-shadow:0 0 0 var(--landing--color),
    0.4rem 0.2rem 0rem var(--logo-color);
    color: var(--logo-color);
}

.form label #FullName::placeholder,
#MobileNumber::placeholder,
#Email::placeholder,
#msg::placeholder,
#subject::placeholder {
    color: var(--logo-light-color);
}

.form label #FullName:focus,
#MobileNumber:focus,
#Email:focus,
#subject:focus,
#msg:focus {
    outline: none;
    box-shadow: 0 0 0 var(--landing--color),
    0.4rem 0.2rem 0rem var(--logo-color);
}


.form .submitBtn {
    color: white;
    padding: .8rem;
    border-radius: 10px;
    border: none;
    background-color: #5047a3;
    font-size: 1.3rem;
}

.submitBtn:active {
    box-shadow: 0 0 0 var(--landing--color),
    0.4rem 0.2rem 0rem var(--logo-color);
}

.side-part {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
}

.side-part .sidecard-contener {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    gap: 2.5vw;
}

.sidecard-contener .contect-card {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--landing--color),
    0.4rem 0.2rem 0rem var(--logo-color);
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
}

.contect-card ul {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    list-style: none;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 0px var(--textdark);
}


.contect-card ul li ion-icon {
    font-size: 1.4rem;
    margin-top: 20px;
    color: #5047a3;
}
.contect-card ul label {
    color: #1d1752  ;
}
.contect-card ul li a {
    padding-top: 0  ;
}

.contect-card h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--logo-color);
}

.secondCard,
.thirdCard {
    flex-direction: column;
}

.contect-card h3 {
    text-align: center;
    color: var(--logo-color);
}

/* -- contect page ends here --  */

/* -- here is footer--  */
footer {
    background-color: #5047a3;
    border-top-right-radius: 7rem;
    padding: 1rem 4rem;
}

.footer-main{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 3.5rem;
}

.footer-content img {
    height: 2rem;
    margin: 0.8rem 0rem;
    margin-bottom: 0;
}
.imp-links{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}
.imp-links a{
    padding: 5px;
    font-size: 16px;
    display: block;
    text-align: start;
}
.imp-links a:hover{
    color: white;
}

.footer-content p {
    font-size: 1.2rem;
    margin: 10px 0px;
    font-weight: 600;
    color: white;
}

.footer-content i {
    font-size: 1.1rem;
    color: white;
}
.footer-content ul {
    padding: 0;
}

.footer-content a ion-icon {
    font-size: 1.5rem;
    padding: 10px;
    transition: all .40s ease;
}

.footer-content a ion-icon:hover {
    transform: translateY(-5px);
}

.footer-content h4 {
    color: white;
    font-size: 1.5rem;
}

.footer-content li {
    margin: 0.8rem 0;
    list-style: none;
}

.footer-content li a {
    display: block;
    text-decoration: none;
    color: white;
    transition: all .40s ease;
    padding: 5px;
}

.footer-content li a:hover {
    transform: translate(-5px, -3px);
}

.icons a:hover{
    color: #1d1752;
}


@media screen {
    
}