@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/*  Starting of Navigation Bar */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 2px 10px 2px 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgb(0 0 26 / 25%);
    /* border-radius: 10px; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar a {
    display: block;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    color: #000;
    /* font-weight: 500; */
    transition: all 0.2s ease;

}

.navbar a:hover {
    color: #106672;
    font-weight: 600;
    /* border: 1px solid #000; */
    transform: scale(1.3);
}

.navbar a img {
    width: 80px;
}

.logo {
    margin-right: 50px;
}

.list {
    list-style: none;
    display: flex;
    gap: 25;
}

#toggler,
.navbar label {
    display: none;
    font-size: 300px;
}

.navbar i {
    font-size: 34px;
}

/*  Ending of Navigation Bar */


/* Background image of home page */
.top-image-content {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("img/bg3_edit.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}


/* Text Animation */
.top-image-content h1 {
    color: rgb(137, 222, 240);
    /* background-color: #fff; */
    font-size: 3.5vw;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 2px 2px 2px #fff;
    animation: animate 5s infinite steps(60) backwards;
}

@keyframes animate {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

.whatsapp-img i {

    /* width: 80px; */
    position: fixed;
    bottom: 45px;
    left: 1250px;
    font-size: 50px;
    color: white;
    background-color: rgb(0, 255, 0);
    border-radius: 6px;
}








/* Starting of Explore Our Top Section */
.course-heading {
    margin: 50px 0;
    text-align: center;
    font-size: 24px;
}

.course-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px;
}

.course-content {
    width: 350px;
    height: 380px;
    /* border: 1px solid gray; */
    border-radius: 10px;
    margin: 20px 5px;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 10px;

    filter: drop-shadow(-5px -5px 4px rgba(0, 0, 0, 0.25)) drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));

}

.course-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}

.course-card img {
    width: 100px;
    border-radius: 5px;
    padding: 10px;
}

.course-content .course-card .uiux-img {
    width: 162px;
}

.course-card .course-name a {
    color: #000;
    font-size: 20px;
    font-weight: bolder;
    margin: 10px 0px 5px 0px;
}

.course-card .course-enroll-now {
    border: 2px solid #0E8E99;
    border-radius: 6px;
    background-color: #0E8E75;
    color: #fff;
    padding: 5px 20px;
    margin: 40px 0px;
}

.course-card p {
    text-align: center;
}

.course-show-more {
    /* display: inline-block; */
    text-align: center;
    margin: 50px 0px;

}

.course-show-more a {
    display: inline;
    color: white;
    background-color: #000;
    padding: 20px 60px;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 24px;
}



/* Ending of Explore Our Top Section */







/* Starting of What we provide after joining this course Section */

.what-we-provide-heading {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
}

.what-we-provide-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    /* background: black; */
    margin: 30px 40px;
}

.what-we-provide-container .card1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    width: 230px;
    height: 200px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    /* margin: 20px; */
}

.what-we-provide-container .card1 img {
    width: 90px;
}

.what-we-provide-container .card1 h4 {
    text-align: center;
    margin: 20px 0;
}

/* Ending of What we provide after joining this course Section */







/* Starting of Currently Placed heading section */

.currently-placed-heading {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
}

.currently-placed-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 60px 80px;
}

.currently-placed-container .img-content img {
    width: 190px;
    height: 100px;
    /* border: 2px solid green; */
    /* border-radius: 100px; */
    /* list-style: ; */
}

/* Ending of Currently Placed heading section */

























































/* Smaller Mobile Phones */
@media screen and (max-width: 480px) {
    .top-image-content {
        margin: 0;
        padding: 0;
    }

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .top-image-content h1 {
        font-size: 20px;
    }

    @keyframes animate {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    .explore-container {}

    .explore-container .card1 {
        display: block;
    }
}


/* Large Smartphones and Tablets */
@media screen and (max-width: 768px) {
    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .top-image-content h1 {
        font-size: 30px;
    }

    @keyframes animate {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    .home-content {
        width: 270px;
        height: auto;
    }

    .home-content .image-content-1 {
        width: 50px;
        height: 50px;
    }

    .home-content .image-content-2 {
        width: 50px;
        height: 50px;
    }

    .home-content .image-content-3 {
        width: 50px;
        height: 50px;
    }

    .home-content img {
        width: 30px;
    }

    .home-container h3 {
        font-size: 12px;
    }

    .home-container span {
        font-size: 10px;
    }

    .world-class-training-container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .world-class-training-content {
        margin: 30px 0px;
    }

    .what-we-provide-container .card1 {
        margin: 20px;
    }

    .explore-container {
        display: flex;
        justify-content: center;
        align-items: center;
        /* flex-direction: column; */
    }

    .explore-container .card1 {
        display: flex;
        /* flex-direction: column; */
        margin: 10px;
    }

    .valuable-time-and-money-container {
        /* display: block; */
        /* width: 100%; */
        height: auto;
    }
}


/* Large Tablets and laptops */
@media screen and (max-width: 1000px) {
    .navbar {
        padding: 2px 10px 2px 40px;
    }

    .navbar a img {
        width: 70px;
    }

    .navbar a {
        margin: 0 10px;
        font-size: 1rem;
    }

    .top-image-content h1 {
        font-size: 36px;
    }

    @keyframes animate {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    .world-class-training-container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .world-class-training-container img {
        width: max-content;
    }

    .valuable-time-and-money-container {
        display: flex;
        height: auto;
        /* flex-wrap: wrap;
        flex-direction: column; */
    }
    .right-side-content{
        display: block;
    }
}











/* Starting of Footer Section  */

.footer {
    background-color: #000;
    padding: 30px 50px;
}

.footer-container {
    max-width: 1170px;
    background-color: #000;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer-column {
    width: 18%;
    padding: 0 15px;
}

.footer-contact-column {
    width: 32%;
    padding: 0 15px;
}

.footer-column,
.footer-contact-column,
.footer-heading {
    font-size: 14px;
    color: rgb(255, 199, 95);
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer .footer-heading {
    font-size: 20px;
}

.foote-column,
.footer-contact-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-column,
.footer-contact-column ul,
li,
a {
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 300;
    color: rgb(180, 180, 180);
    display: block;
    transition: all 0.3s ease;
}

i {
    font-size: 20px;
    margin-right: 10px;
}

.footer-column,
.footer-contact-column,
ul,
li,
a:hover {
    color: #fff;
}

@media(max-width: 767px) {

    .footer-column,
    .footer-contact-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {

    .footer-column,
    .footer-contact-column {
        width: 80%;
        margin-bottom: 30px;
    }
}


/* Ending of Footer Section  */


