@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    /* font-family: Georgia, "Times New Roman", Times, serif; */
    font-family: "Roboto", sans-serif;


    text-decoration: none;

}

:root {
    --dark: #000000;
    --header: #123962;
    --navyblue: #1B263B;
    --skyblue: #1B98E0;
    --sucess: #00A676;
    --navbar: #2754ba;
    --basic: #ffffff;
    --hover: #e50914;
    --transparent: rgba(0, 0, 0, 0.2);
}

li {
    list-style: none;
}

a {
    /* text-decoration: none; */
    /* color: var(--basic); */
    color: var(--dark);
}

/* body {
      
    } */



/* header style start */

header {
    /* background-color: var(--dark); */
    /* background: rgba(0, 0, 0, 0.2); */
    background-color: var(--header);

    color: var(--basic);
    padding: 4px;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 10px; */
    padding: 5px 30px;
}

.location,
.phone,
.opening-hours {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.phone a {
    color: var(--basic);
}

/* .location i,
    .phone i,
    .opening-hours i {
      /* margin-right: 1px; */
/* } */

.location span,
.phone span,
.opening-hours span {
    margin-left: 5px;
}


/* header style end */

nav {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 70px;
    /* gap: 20rem; */
}

.navbar .logo img {
    height: 3rem;
}



.navbar .nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .nav-links>ul>li {
    padding: 10px 20px;
    font-weight: 500;
    /* border: 1px solid red; */
}

.navbar .nav-links>ul>li:first-child {
    background-color: #123962;
    border-radius: 5px;
    border: 2px solid #123962;
}

.navbar .nav-links>ul>li:first-child a {
    color: white;
}

.navbar .nav-links>ul>li:last-child {
    border-radius: 5px;
    border: 2px solid #123962;
}

.navbar .nav-links>ul>li:last-child a {
    border-radius: 5px;
    color: #123962;
}

.navbar .nav-links>ul>li:last-child:hover {
    /* border-radius: 5px; */
    /* color: #123962; */
    background-color: #123962;
    cursor: pointer;

}

.navbar .nav-links>ul>li:last-child:hover>a {
    color: white;
}

.nav-links .new-course i {
    font-size: 12px;
}

.navbar .toggle_btn {
    /* color: var(--basic); */
    color: black;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}



.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 90px;
    height: 0;
    width: 300px;
    /* background-color: rgba(225, 225, 225, 0.1); */
    /* background-color: var(--basic); */
    background-color: white;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 270px;
}

.dropdown_menu li {
    padding: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #6674cc;
    border-radius: 25px;
    color: white;
    padding: 5px;
}





/* navbar style end */

/* div style start  */

.main-container {
    background-image: url(../image/home_backgroung.webp);
    background-repeat: no-repeat;
    overflow-x: hidden;


}

.image-container {

    height: 100vh;

    background-color: transparent;
    background-image: linear-gradient(90deg, #14261C 100%, #FFFFFF 100%);
    opacity: 0.87;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.animate-xd {
    position: relative;
    height: 50vh;
    left: 450px;
    bottom: 325px;
    animation: enhancedRotate360 infinite 25s linear;

}

@keyframes enhancedRotate360 {
    0% {
        transform: rotate(0deg) scale(1) translateX(0);
        opacity: 1;
        stroke: red;
        stroke-width: 4;
    }

    25% {
        transform: rotate(90deg) scale(1.2) translateX(20px);
        opacity: 0.8;
        stroke: yellowgreen;
        stroke-width: 2;
    }

    50% {
        transform: rotate(180deg) scale(1.4) translateX(40px);
        opacity: 0.6;
        stroke: yellow;
        stroke-width: 2;
    }

    75% {
        transform: rotate(270deg) scale(1.2) translateX(20px);
        opacity: 0.8;
        stroke: cyan;
        stroke-width: 4;
    }

    100% {
        transform: rotate(360deg) scale(1) translateX(0);
        opacity: 1;
        stroke: orange;
        stroke-width: 4;
    }
}



/* about us style   */
.about .about-us {
    background-image: url(../image/whyus.png);
    background-position: bottom;
    height: 40vh;
    background-size: cover;
    padding: 1rem;
    /* background-color: #5e5eb3; */
}

.about .about-us h3 {
    font-size: 21px;
    color: white;
    text-align: center;
    padding: 3rem;
}

.about .about-us .sucess {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: white;
}

.about .about-us .sucess div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.about .about-us .sucess div span {
    font-size: 18px;
    font-weight: 500;
}

.about .about-us .sucess div i {
    font-size: 30px;
}


/* dream job style  */
.dream-job {
    padding: 3rem;
    text-align: center;
    background-color: #f8f8fd;
    border-bottom: 2px solid #262626;
}

.dream-job h3 {
    font-size: 22px;
    font-weight: 600;
}

.dream-job h3 span {
    color: #6674cc;
}

.dream-job>span {
    text-align: center;
    color: #262626;
    font-size: 22px;
}

.dream-job .company-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3rem;
    width: 80vw;
    place-items: center;
    margin: 2rem auto;
}

/* .dream-job .company-list div {
    justify-content: center;
    align-items: center;

} */

.dream-job .company-list div img {
    height: 5rem;
}


/* footer  */

footer {
    padding: 4rem;


}

footer .footer-col {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    width: 90vw;

}

footer .copyright {
    padding: 1rem;
    text-align: center;

}

footer .footer-col1 img {
    height: 3rem;
}

footer .footer-col1,
footer .footer-col2,
footer .footer-col3,
footer .footer-col4 {
    width: 20rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    height: 15rem;
}

footer .footer-col1 div {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;

}



footer .footer-col2 h3,
footer .footer-col3 h3,
footer .footer-col4 h3 {
    font-size: 18px;
    font-weight: 700;
}

footer .footer-col2 ul li,
footer .footer-col3 ul li,
footer .footer-col4 ul li {
    padding: 7px 0;
}

footer .footer-col2 ul li i {
    padding-right: 10px;
    color: #6674cc;
    font-size: 20px;
}

footer .footer-col2 ul li:hover,
footer .footer-col3 ul li:hover,
footer .footer-col4 ul li:hover {
    padding-left: 10px;
    transition: all 500ms ease-in-out 2ms;
}

footer .footer-col3 ul li i {
    color: #251d7f;
    font-size: 20px;
    padding-right: 5px;
}

footer .footer-col4 ul li i {
    color: #262626;
    font-size: 20px;
    padding-left: 5px;
}


/* responsive style for mobile view */




/* header media query style  */
@media only screen and (max-width: 730px) {
    header {
        /* padding: 8px; */
        font-size: 10px;
    }
}

@media only screen and (max-width: 492px) {
    header {
        /* padding: 8px; */
        font-size: 7px;
    }
}

@media only screen and (max-width: 372px) {
    header {
        /* padding: 8px; */
        font-size: 6px;
    }
}

/* navbar  */

/* navbar media query  style */
@media screen and (max-width: 992px) {

    .navbar .nav-links {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }

    .action-btn:hover {
        scale: none;
    }
}

@media only screen and (max-width: 576px) {
    .navbar {
        padding: 20px;

    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    .navbar .logo img {
        height: 2.5rem;
    }
}


/* image with container  */
@media only screen and (max-width: 990px) {
    .image-container {
        background-position: 90%;
    }

    .animate-xd {

        height: 35vh;

        top: 35px;
        left: 10px;
    }
}

@media only screen and (max-width: 700px) {
    .image-container {
        background-position: 70%;
    }
}

@media only screen and (max-width: 500px) {
    .image-container {
        background-position: right;
    }

    .animate-xd {

        height: 25vh;

        top: 35px;
        left: 10px;
    }
}

@media only screen and (max-width: 428px) {

    /* about us style  */
    .about .about-us {
        height: 70vh;
        background-position: left bottom;
        padding: 25px 15px;
    }

    .about .about-us h3 {
        font-size: 16px;
        padding: 30px 10px;
    }

    .about .about-us .sucess {
        flex-direction: column;
        gap: 2rem;
    }

    .about .about-us .sucess div {
        gap: 10px;
    }

    .about .about-us .sucess div span {
        font-size: 16px;
        font-weight: 500;
    }

    .about .about-us .sucess div i {
        font-size: 20px;
    }

    /* company achieved style  */
    .dream-job {
        padding: 1rem;
    }

    .dream-job h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .dream-job>span {
        font-size: 18px;
    }

    .dream-job .company-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto, 1fr);
    }


    footer {
        padding: 10px;

    }


    footer .footer-col {

        flex-direction: column;
        margin: auto;

    }

    footer .footer-col1 {
        height: 10rem;
        width: 90vw;
    }

    footer .footer-col2,
    footer .footer-col3,
    footer .footer-col4 {
        width: 90vw;
        height: 14rem;

    }


}

/* responsive style for table view  */

@media only screen and (min-width: 429px) and (max-width: 834px) {
    /* navbar for tablet  */

    .dream-job .company-list {
        grid-template-columns: repeat(3, 1fr);
    }

    footer {
        padding: 10px;
    }

    footer .footer-col {
        flex-wrap: wrap;
        width: 98vw;
        flex-basis: 45vw;

    }

}