/* Global Styles */
body {
    font-family: 'Avenir Next', sans-serif;
    margin: 0;
    background-color: #1e1e2d;
    color: white;
    overflow-x: hidden;
}

header {
    background-color: #282a36;
    padding: 20px 0;
}

.logo {
    width: 150px;
    margin-left: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    background-color: #ff61a6;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b34dff;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1ffef3, #ff61a6);
    color: #fff;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.partners {
    text-align: center;
    padding: 200px 80px;
    background-color: #282a36;
}

.partners-logo img {
    width: 100px;
    margin: 0 15px;
}

.carousel {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px;
}

.carousel img {
    width: 80px;
    border-radius: 50%;
}

#info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
}

.card {
    background-color: #282a36;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #282a36;
}

footer .social-links {
    margin-top: 15px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

/* Carousel Section */
.carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.carousel img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.1);
}

/* Adjustments for overall layout and section spacing */
#hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1ffef3, #ff61a6);
    color: #fff;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.partners {
    text-align: center;
    padding: 50px 20px;
    background-color: #282a36;
}

.partners-logo img {
    width: 50px;
    margin: 0 15px;
}

#info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
}

.card {
    background-color: #282a36;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #282a36;
}

footer .social-links {
    margin-top: 15px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

/* Carousel Section */
.carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.carousel img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.1);
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    /* Navbar adjustments */
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav .btn {
        margin: 10px 0;
    }

    /* Hero section scaling */
    #hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Carousel adjustments for smaller screens */
    .carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel img {
        width: 60px;
        height: 60px;
    }

    /* Content section padding for mobile */
    .section {
        padding: 40px 10px;
    }

    /* Footer adjustments */
    footer .footer-links {
        flex-direction: column;
    }

    footer .footer-links li {
        margin: 10px 0;
    }
}
