body {
    background-color: #F0F6FA !important
}

.modern-hero-section-ins {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/default/img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-container-ins {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
}

.hero-content-ins {
    animation: fadeInUp 0.8s ease;
    text-align: right
}

.hero-title-ins {
    font-size: 4rem !important;
    font-weight: 700 !important;
    font-family: 'Tajawal';
    line-height: 2.08rem;
    margin-bottom: 3rem;
}

.hero-subtitle-ins {
    font-size: 2rem !important;
    font-weight: 400 !important;
    font-family: 'Tajawal';
    margin-bottom: 1.25rem;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
