/* Hero Banner */
.hero-banner {
    background: url('../images/img1(5).jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-btn {
    background-color: #d35400;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background-color: #e67e22;
}

/* Product Preview */
.product-preview {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card a {
    color: #d35400;
    font-weight: bold;
    text-decoration: none;
}

.product-card a:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-us {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: #d35400;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-btn {
    background: white;
    color: #d35400;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: #2c3e50;
    color: white;
}


/* ========== RESPONSIVE STYLES ========== */

@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        padding: 20px;
    }

    .hero-text {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-card img {
        height: 160px;
    }

    .why-card h4 {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
