/* Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc; /* A light grey background */
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1599691879029-d5b291535639?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    /* A nice fallback image of a sewing setup */
}

.brand-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}
