.hero-section {
    width: 100%;
    height: 90vh;
    position: relative;
    background-image: url('../images/assest/10years.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInTitle 2s ease forwards;
}

.blog-section-1 {
    background: linear-gradient(-45deg, #152C47, #152C47);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(21, 44, 71, 0.3);
    text-align: center;
    position: relative;
}

.grey-section {
    width: 100%;
    height: fit-content;
    background-color: #ffff;
    overflow: hidden;
    margin-top: -15px;
}

.grey-section .content {
    color: #333;
}

.partners-section {
    padding: 0;
    overflow: hidden;
}

.category-title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-top: 20px;

}

.category {
    display: none;
}

.blog-title-1 {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;

    margin-bottom: 30px;
    position: relative;
    display: inline-block;

}

.category.active {
    display: block;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.marquee-container {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.marquee-wrapper {
    display: flex;
    gap: 2rem;
}

.partner-card {
    flex: 0 0 auto;
    padding: 1.5rem;


    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6 - 2rem * 6));
    }
}

.marquee-wrapper.reverse {
    animation-direction: reverse;
}