* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    padding-top: 60px;
}

/* Navbar */
.navbarMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 600;
}

/* Navbar Items */
.navbar {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar li a:hover {
    color: #25c1ff;
}

/* Active Page */
.navbar li a.active {
    border-bottom: 2px solid #25c1ff;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: whitesmoke;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .navbar.active {
        display: flex;
    }

    .navbar li {
        margin: 10px 0;
    }
}
.sliding-text-container {
    overflow: hidden;
    white-space: nowrap;
    background: #333;
    color: white;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.sliding-text {
    display: inline-block;
    padding-left: 100%;
    animation: slideText 30s linear infinite;
}

@keyframes slideText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
