@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 155px;
    background-color: #0B132B;
    /* box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06); */
    z-index: 999;
    position: sticky;
    /* top-left will needed to be added */
    top: 0;
    left: 0;
    height: 5vh;

}

.top-items {
    display: flex;
    justify-content: space-around;
    color: white;
    font-size: 13px;
}


.top-items li {
    text-decoration: none;
    list-style: none;
}

.top-items i {
    padding: 3px 10px;
}

.top-items a {
    color: white;
    width: 30px;
}

/* Navbar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: montserrat;
}

nav {
    background: white;
    height: 8vh;
    width: 100%;
    position: sticky
}

nav #logo {
    padding: 10px 0;
    margin-left: 30px;
    width: 9vw;
}

#header{
    position: sticky ;
}
label.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: #0B132B;
    font-size: 17px;
    padding: 7px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    position: relative;
}

.nav-link {
    display: inline-block;
    position: relative;
    opacity: 0.75;
}

.nav-link-ltr::before {
    width: 0%;
    bottom: 30px;
}

.nav-link-ltr:hover::before {
    width: 70%;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::before {
    transition: 300ms;
    height: 10vh;
    content: "";
    position: absolute;
    background-color: #031D44;
}

#header a.active,
#header a:hover {
    opacity: 1;
}

#header a::before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    background-color: #031D44;
}

#header #logos:hover {
    background: white;
}

.checkbtn {
    font-size: 30px;
    color: #0B132B;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 952px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
    }

    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .checkbtn {
        display: block;
    }

    .nav-top {
        display: none;
    }

    nav #logo {
        width: 37vw;
        padding: 10px 0;
        margin-left: 0px;
    }

    ul {
        position: fixed;
        width: 100vw;
        height: 63vh;
        background: #f2f2f2;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
    }

    #header a:hover,
    #header a.active {
        background: none;
        color: #aaaaaa;
    }

    #check:checked~ul {
        left: 0;
    }
}

/* section {
    background: url(bg1.jpg) no-repeat;
    background-size: cover;
    height: calc(100vh - 80px);
} */


/* Slider */
#banner {
    margin: 0;
    padding: 0;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.slider {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}

.slides {
    width: 500%;
    height: 500px;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}

.slide img {
    width: 100vw;
    height: 90vh;
}

/* css manual */

.navigation-manual {
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    display: none;
    border: 2px solid white;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: white;
}

#radio1:checked~.first {
    margin-left: 0;
}

#radio2:checked~.first {
    margin-left: -20%;
}

#radio3:checked~.first {
    margin-left: -40%;
}



.navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
}

.navigation-auto div {
    display: none;
    border: 2px solid rgb(108, 0, 0);
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

#radio1:checked~.navigation-auto .auto-btn1 {
    background: white;
}

#radio2:checked~.navigation-auto .auto-btn2 {
    background: white;
}

#radio3:checked~.navigation-auto .auto-btn3 {
    background: white;
}


/* Clients */
#clients {
    margin: 40px 0;
    padding: 0 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clients #heading {
    font-size: 50px;
    padding: 0 0 4vh 0;
    font-family: 'Rubik', sans-serif;
}

#clients .logos img {
    border-radius: 8px;
}

#clients .logos div {
    display: flex;
    flex-direction: column;
    align-content: center;
}

#clients .logos a {
    margin: 10px 0;
}

#clients .logos-slide img {
    height: 150px;
    padding: 0px 30px;
}

@keyframes slide {
    from {
        transform: translateX(10);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos-slide {
    display: inline-block;
    animation: 80s slide infinite linear;
    width: 100vw;
}

.logos {
    width: 92vw;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos img {
    margin: 0px 8px;
    cursor: pointer;
}

.logos:before {
    left: 0;
    background-color: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background-color: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.head {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-size: 50px;
    padding: 4vh 0 4vh 0;
}



.firstSection {
    background-color: #e9e9e9;
    padding: 0 80px;
    background-size: cover;
    margin: 40px 0;
    height: fit-content;
    position: relative;
   
}


  

#clients {
    margin: 40px 0;
    padding: 0 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.container-section .service-image {
    width: 22vw;
}

.container-section .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 50px;
}

.box span {
    margin: 10px 0;
    font-size: 30px;
    font-weight: 500;
}

.box p {
    color: rgb(163, 163, 163);
    text-align: center;
}

.projects {
    margin: 40px 0;
    padding: 10px 80px;
    box-sizing: border-box;
}

#contact-banner{
    display: flex;
    width: 100vw;
    background-image: url(img/contact-banner.jpg);
    background-size: cover;
    height: 36vh;
    align-items: flex-start;
    justify-content: center;
}

#project-head {
    font-size: 50px;
    padding: 20px;
    font-family: 'Rubik', sans-serif;
}

.progress {
    display: flex;
    flex: row;
    align-items: center;
    justify-content: space-between;
}



#ongoing img {
    width: 225px;
}

.completed-progress2 img {
    width: 225px;
}

.projecthead {
    display: flex;
    justify-content: center;
}

.completed-progress2 {
    padding: 52px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#pro-spans {
    padding: 10px 10px;
    font-size: 25px;
    position: relative;
    font-family: 'Rubik', sans-serif;
}

#pro-spans::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 19px;
    background-color: rgb(168, 44, 44);
    top: 16px;
    left: -1px;
}

#myButton-1 {
    background-color: rgb(172 53 55);
}


.projects h3 {
    font-weight: 800;
    font-size: 14px;
    padding: 5px 0;
}

.projects h4 {
    font-size: 14px;
    font-weight: 500;
    color: #9b9a9a;
}

.projects .pro {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
    transition: 0.2s ease;
    margin-top: 7px;
}

.projects .pro:hover {
    box-shadow: 20px 20px 30px rgba(4, 19, 83, 0.1);
    background-color: rgb(239, 239, 239);
    cursor: pointer;
    border-radius: 10px;
}

.projects .pro .des {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#pro-spans-div {
    margin: 30px 0;
    color: #0a0a3f;
    display: flex;
    align-items: center;
}

footer {
    background-color: #04041d;
    display: flex;
    justify-content: space-between;
    height: 44vh;
    color: white;
    flex-direction: column;
    padding: 0 80px;
    width: 100vw;
}

footer .col-first img {
    width: 10vw;
}

#footer-1 {
    padding-top: 46px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer h3,
h4 {
    padding: 4px 0;
}

footer h4 {
    font-weight: 400;
    font-size: 14px;
    color: #cacaca;
}

.col-second {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.col-fourth {
    padding-bottom: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.col-second h3,
.col-third h3 {
    padding-top: 0;
}


.col-third {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 73px;
}

.col-third a {
    color: white;
    width: 20px;
}

.col-third a i {
    width: 20px;
}

.social {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 10vw;
}

.social a {
    margin: 0px 3px;
}

#footer-2 {
    display: flex;
    padding-top: 40px;
    padding-bottom: 20px;
    justify-content: space-between;
    font-size: 10px;
}



#footer-2 #power {
    padding-left: 20px;
}

/* WHAT SET UP APART */
.uniques {
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
    /* margin: 0 80px; */
    background: #f4f4f4;
    height: fit-content;
    background-image: url(worldmap.jpg);
    background-size: cover;
}

.apart {
    width: 38vw;
}

.apart h2 {
    margin: 30px 0;
    font-size: 80px;
}

.apart p {
    font-size: 20px;
}

.counter {
    display: flex;
    flex-direction: column;
    width: 50vw;
    margin-left: 10vw;
}

.counter .row {
    display: flex;
    flex-direction: row;
    padding-top: 70px;
}

.counter .row h2 {
    font-size: 70px;
    color: rgb(0, 0, 93);
}

.counter .col-sm-3 {
    margin: 0 45px;

}

.counter .india {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

/* GALLERY */
.gallery {
    padding: 0 80px 80px 80px;
}

.gallery .head {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    font-size: 50px;
    font-family: 'Rubik', sans-serif;
}

.gallery .image-box {
    display: flex;
    flex-direction: row;
}

.gallery .image-box img {
    width: 20vw;
    margin: 10px 19px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.06);
    border-radius: 7px;
}

.gallery .image-box img:hover {
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gallery h3 {
    position: relative;
    padding-left: 32px;
    margin: 30px 0;
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

.gallery h3::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 19px;
    background-color: rgb(0, 26, 96);
    top: 5px;
    left: 19px;
}

.gallery .fire {
    margin-bottom: 80px;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
    margin-left: 10vw;
}