.case-banner {
    height: 80vh;  /* Increase if you want full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    color: #fff;

    /* Background image + gradient */
    background: 
      linear-gradient(
        to bottom right,
        rgba(169, 135, 85, 0.75),   /* #A98755 */
        rgba(82, 144, 172, 0.75)    /* #5290AC */
      ),
      url('assets/banner-case-min.jpg') center/cover no-repeat;
}

.banner-content {
    max-width: 900px;
    animation: fadeUp 1.2s ease-out forwards;
    opacity: 0;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 20px;
    line-height: 1.6;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .case-banner {
        height: 60vh;
    }
    .banner-content h1 {
        font-size: 32px;
    }
    .banner-content p {
        font-size: 16px;
    }
}



.case-banner + * {
    background: #ffffff !important;
}
.case-banner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.case-banner::after {
    display: none !important;
}



