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

body {
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../assets/logo.jpeg") no-repeat center;
    background-size: 350px;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}


.side-logo {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 80px;
    opacity: 0.7;
    z-index: 999;
}

.side-logo img {
    width: 100%;
}

.side-logo:hover {
    opacity: 1;
}


header {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

nav {
    background: #222;
    text-align: center;
    padding: 10px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #00c2ff;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
}

.talent-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.talent-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.talent-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.brand-list {
    list-style: none;
    text-align: center;
}

.brand-list li {
    display: inline-block;
    margin: 10px 15px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
}

.btn:hover {
    background: #1da851;
}

.yt {
    margin-top: 15px;
}

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}


.brand-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-logo {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


.brand-slider {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.brand-track {
    display: flex;
    width: max-content;
    animation: scroll-brand 25s linear infinite;
}

.brand-logo {
    min-width: 180px;
    height: 100px;
    margin-right: 30px;

    background: #fff;
    border-radius: 10px;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-brand {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    max-width: 400px;
    width: 90%;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-content h3 {
    margin-bottom: 5px;
}

.modal-content .role {
    font-weight: bold;
    color: #777;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.about-points {
    margin-top: 20px;
    list-style: none;
}

.about-points li {
    margin-bottom: 8px;
}
.about-points li::before {
    content: "✔ ";
    color: #25D366;
}