/* Meet The Crew Section Background */
.about {
    position: relative;
    background-image: url('assets/crew_bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 350px 0 var(--spacing-xl) 0;
    /* Reduced top padding */
}

/* Dark overlay for readability */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Darker overlay */
    z-index: 1;
}

/* Ensure content sits above overlay */
.about .container {
    position: relative;
    z-index: 2;
}

/* Override card backgrounds to be semi-transparent or transparent */
.about .service-card {
    background-color: rgba(20, 20, 20, 0.6);
    /* Semi-transparent card */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}