/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    background-color: #f9f9f9;
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #fff;
}

.hero-content {
    flex: 1;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Featured Section */
.featured {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f8f9fa;
}

.featured-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.featured-item {
    background: #fff;
    padding: 1.5rem;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 220px;
}

.featured-item h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* Categories Section */
.categories {
    text-align: center;
    padding: 2rem 1rem;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.category-card {
    background: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}



