/* Niche Tab Styles */
.niche-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.niche-btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    background-color: #161616;
    color: white;
    border: 2px solid #b74b4b;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.niche-btn:hover {
    background-color: #b74b4b;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(183, 75, 75, 0.3);
}

.niche-btn.active {
    background-color: #b74b4b;
    color: black;
    border-color: #b74b4b;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(183, 75, 75, 0.5);
}

/* Niche Content Visibility */
.niche-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.niche-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Niche Headings */
.niche-heading {
    font-size: 2.2rem;
    color: #b74b4b;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.niche-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #b74b4b;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Responsive for Niche Tabs */
@media (max-width: 768px) {
    .niche-tabs {
        gap: 0.8rem;
    }

    .niche-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1.3rem;
    }

    .niche-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .niche-tabs {
        gap: 0.6rem;
    }

    .niche-btn {
        padding: 0.7rem 1.3rem;
        font-size: 1.2rem;
    }

    .niche-heading {
        font-size: 1.6rem;
    }
}