* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: white;
}

header {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff3c00;
}

nav a {
    text-decoration: none;
    color: white;
    margin-left: 25px;
    transition: 0.3s;
}

nav a:hover {
    color: #ff3c00;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('images/003d4307b56ba8ce8da49a3db2319f9a.png');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-content button {
    padding: 14px 35px;
    border: none;
    background: #ff3c00;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-content button:hover {
    background: #ff5e2c;
    transform: scale(1.05);
}

.products {
    padding: 80px 8%;
}

.products h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.product-list {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #1c1c1c;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    font-size: 22px;
    margin: 20px;
}

.card p {
    margin: 0 20px;
    color: #ccc;
}

.card span {
    display: block;
    margin: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #ff3c00;
}

.card button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #ff3c00;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #ff5e2c;
}

footer {
    text-align: center;
    padding: 25px;
    background: #1a1a1a;
    color: #aaa;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
}
