* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero-img  img{
    width: 461px;
    height: 563px;
}

body {
    background: #fff;
    color: #111;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px;
    background: #0d0d0d;
    color: white;
}

.navbar .logo {
    font-size: 1.4em;
    font-weight: 700;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #4b71f0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 100px;
    background: #0d0d0d;
    color: white;
}

.hero-text h1 {
    font-size: 3em;
    font-weight: 700;
}

.hero-text p {
    margin: 20px 0;
    max-width: 400px;
    line-height: 1.5;
    opacity: 0.9;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    width: fit-content;
}

.search-box input {
    border: none;
    padding: 10px 20px;
    outline: none;
}

.search-box button {
    background: #4b71f0;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
}

/* Brands */
.brands {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: #f8f8f8;
    padding: 50px 0;
}

.brand-card {
    background: white;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    height: 60px;
    margin-bottom: 10px;
}

.brand-card h3 {
    margin-bottom: 10px;
}

/* Products */
.products {
    padding: 60px 100px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.product {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product h4 {
    font-size: 1.1em;
}

/* Testimonials */
.testimonials {
    background: #fff;
    padding: 80px 100px;
    text-align: center;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
}

.testimonial img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    width: 1100px;
    height: 377px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
    background: #f4f4f4;
}

.news-content h2 {
    margin-bottom: 10px;
}

.subscribe-box {
    margin-top: 15px;
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    width: fit-content;
}

.subscribe-box input {
    border: none;
    padding: 10px 20px;
    outline: none;
}

.subscribe-box button {
    background: #4b71f0;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
}

.newsletter img {
    width: 250px;
}