*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #080808;
    color: #fff;
}

.container{
    padding: 10px 10%;
}

nav{
    display: flex;
    position: fixed;
    width: 100%;
    padding: 5px 10%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 3;
    transition: background-color 0.5s;
}

nav:hover{
    background-color: #00ccff56;;
}

.logo{
    width: 140px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #00ccff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 20%;
    font-size: 30px;
}


.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}

.header-text span{
    color: #00ccff;
}

.header-text br[id="phone-text"]{
    display: none;
}

/* --------ABOUT SECTION AT HOME----------- */

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Adjusted to -50% */
    }
}

.logos {
    display: inline-flex;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    padding: 30px 0;
    background-color: #262626;
    white-space: nowrap;
    position: relative;
    border-radius: 100px;
    z-index: 1;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    margin: 0;
    animation: 20s slide infinite linear;
}

.logos-slide img {
    height: 50px;
    margin: 0 0 0 40px;
}
.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}


@media only screen and (max-width: 800px) {
    .header-text {
        margin-top: 40%;
        font-size: 16px;
    }

    .header-text h1 {
        font-size: 30px;
    }
}