.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/images/hero-bg.png') center/cover no-repeat;
    z-index: -2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.3) 0%, rgba(15, 15, 26, 0.5) 100%);
    z-index: 0;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/images/intro-bg.png') center/cover no-repeat;
    z-index: -2;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.7) 0%, rgba(15, 15, 26, 0.9) 100%);
    z-index: 0;
}

