* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    background-color: #EDE9E1;
    color: #333;
}

header {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 24px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

nav a.active {
    border-bottom: 2px solid #333;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px;
    margin-top: 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    text-align: justify;
    margin-bottom: 80px;
}

.hero-content img {
    flex-shrink: 0;
    width: 450px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    max-width: 600px;
}

.about-text h1 {
    margin-bottom: 20px;
    font-size: 44px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.scrollable {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.scrollable::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/* Hide scrollbar for Firefox */
.scrollable {
    scrollbar-width: none;
}

.member {
    margin-top: 50px;
}

.experience-section {
    background-color: black;
    margin-top: 40px;
    padding: 80px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.experience-row {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.experience-row img {
    width: 120px;
    height: auto;
    margin: 0 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Add this to create a duplicate set of images for seamless scrolling */
.experience-row {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-container {
    display: flex;
    flex-shrink: 0;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    background-color: black;
    font-weight: 900;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-content img {
        width: 100%;
        max-width: 450px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        font-size: 14px;
    }

    .about-text h1 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
    }

    .experience-row {
        animation: scroll 30s linear infinite;
    }

    .experience-row img {
        width: 80px;
        margin: 0 10px;
    }

    footer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: row;
        align-items: flex-start;
    }

    .logo {
        font-size: 20px;
    }

    nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-content {
        padding: 10px;
    }

    .about-text h1 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 12px;
    }

    .experience-row img {
        width: 60px;
    }

    .experience-section {
        padding: 40px 0;
    }

    .member {
        font-size: 28px;
    }
}

/* Add a mobile menu button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    nav {
        display: none;
        background-color: #EDE9E1;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        width: 100%;
        text-align: center;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        width: auto;
        padding: 10px;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .experience-row {
        animation: scroll 30s linear infinite;
    }

    .experience-row img {
        width: 80px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .experience-row img {
        width: 60px;
    }

    .experience-section {
        padding: 40px 0;
    }

    .member {
        font-size: 28px;
    }
}