body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    padding: 1rem;
    background: #f8f8f8;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Ink Free", Arial, sans-serif;
}
nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #0078d4;
}
.cta {
    display: flex;
    justify-content: flex-end;
}
.cta-square {
    background: #0078d4;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    min-width: 100px;
    text-decoration: none; 
    border: none;          
    display: inline-block; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.4s;
}
.cta-square:hover {
    background: #005fa3;
}
.carousel {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 800px;
    overflow: hidden;
    margin: 0 auto;
    background: #eee;
    box-sizing: border-box;
}
.carousel-images {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
.carousel-images img {
    width: 100vw;
    max-width: 100%;
    height: 800px;
    object-fit: cover;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    transform: scale(1.05);
}
.carousel-images img.active {
    display: block;
    opacity: 1;
    position: relative;
    transform: scale(1);
    z-index: 1;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    user-select: none;
}
.carousel-btn.prev {
    left: 20px;
}
.carousel-btn.next {
    right: 20px;
}
.banner {
    display: flex;
    align-items: center;
    gap: 20%;
    padding: 1rem 0;
    background: #c22d2d;
    height: 400px;
    box-sizing: border-box;
}
.banner-logo img {
    height: 400px;
    width: auto;
    display: block;
    margin-left: 100px;
}
.banner-catchline h2 {
    margin-left: 100px;
    font-size: 3rem;
    font-weight: 700;
    color: #dfd408;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.banner-catchline p {
    margin-left: 100px;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    max-width: 600px;
    line-height: 1.5;
}
.product-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 2rem 0 1rem 0;
    background: #fff;
}

.product-card {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    padding: 1rem;
    width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-card img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.1rem;
    color: #c22d2d;
}

.product-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}
.product-card button {
    background: #0078d4;
    color: #fff;
    margin-top: 16px;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.product-card button:hover {
    background: #005fa3;
    transform: scale(1.05);
}


@media (max-width: 1100px) {
    .banner {
        height: 220px;
        gap: 10%;
        padding: 0.5rem 0;
    }
    .banner-logo img {
        height: 180px;
        margin-left: 40px;
    }
    .banner-catchline h2 {
        font-size: 2rem;
        margin-left: 40px;
    }
    .banner-catchline p {
        font-size: 1rem;
        margin-left: 40px;
        max-width: 400px;
    }
}

@media (max-width: 800px) {
    header {
        grid-template-columns: 1fr 2fr 1fr;
        padding: 0.5rem;
    }
    nav ul {
        gap: 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .cta-square {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }
    .carousel, .carousel-images img {
        height: 220px;
    }
    .banner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        height: 110px; 
    }
    .banner-catchline h2 {
        font-size: 1.2rem;
    }
    .banner-logo img {
        height: 40px;
    }
    
}
@media (max-width: 500px) {
    header {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }
    .logo, .cta {
        justify-content: center;
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cta {
        margin-top: 0.5rem;
    }
    .carousel, .carousel-images img {
        height: 120px;
    }
    .banner {
        flex-direction: column;
        height: auto;
        min-height: 200px;
        gap: 1rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    .banner-logo {
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .banner-logo img {
        height: 120px;
        margin: 0;
        max-width: 100%;
    }
    .banner-catchline {
        margin: 0;
        padding: 0 0.5rem;
    }
    .banner-catchline h2 {
        font-size: 1.5rem;
        margin: 0 0 0.5rem 0;
        margin-left: 0;
    }
    .banner-catchline p {
        font-size: 1rem;
        margin: 0;
        margin-left: 0;
        max-width: 100%;
        line-height: 1.4;
    }
}
@media (max-width: 900px) {
    .product-showcase {
        gap: 1rem;
    }
    .product-card {
        width: 120px;
        padding: 0.5rem;
    }
    .product-card img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 600px) {
    .product-showcase {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .product-card {
        width: 45vw;
        margin-bottom: 1rem;
    }
}
footer {
    background: #222;
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo {
    font-family: "Ink Free", Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #dfd408;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.95rem;
    color: #bbb;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .footer-logo {
        font-size: 1.2rem;
    }
    .footer-links {
        font-size: 0.95rem;
    }
    .footer-content {
        padding: 0 1rem;
    }
}