* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    width: 100%;
    max-width: 914px;
    height: auto;
    display: block;
    margin: 0 auto;
}

body {
    font-family: Segoe UI, Arial, sans-serif;
    background: #0f172a;
    color: #fff;
    line-height: 1.6;
}

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

header {
    text-align: center;
    padding: 80px 20px;
}

h1 {
    font-size: 3rem;
}

.tagline {
    color: #94a3b8;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

section {
    padding: 50px 0;
}

.card {
    background: #1e293b;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.skills span {
    display: inline-block;
    background: #334155;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
}

.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-text {
    flex: 1;
}

.contact-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

/* Mobile view */

/* Product image styling */
.product-img {
    width: 184px;
    height: 70px;
    object-fit: contain;
}

/* WhatsApp text styling */
.whatsapp-text {
    color: #0d9488;
}

/* WhatsApp link styling */
.whatsapp-link {
    color: #8400ff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-image img {
        width: 200px;
        height: 200px;
    }
}

/* ---- Moving Banner / Marquee ---- */
.banner-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 183, 3, 0.08);
    border-bottom: 1px solid rgba(255, 183, 3, 0.15);
    padding: 0.5rem 0;
}

.banner-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollBanner 120s linear infinite;
}

.banner-track img {
    height: 110px;
    width: 160px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-track img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- End Moving Banner ---- */

/* GoogleLink */
.google_link {
    text-align: center;
    margin-top: 10px;
}