* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
    margin-right: auto;
}

.logo span {
    color: #f4b400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn {
    background: #f4b400;
    color: #000;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    .navbar .btn {
    margin-left: 25px;   /* pushes it slightly to the right */
}

}

/* Hero */
.hero {
    background: url("../images/hero.jpg") center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Products */
.products {
    padding: 70px 0;
}

.products h2,
.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    padding: 15px;
    background: #fff;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Why Us */
.why-us {
    background: #f9f9f9;
    padding: 70px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Contact CTA */
.contact-cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

/* Footer */
.footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }
}

