body {
    padding-top: 120px; /* Adjust this value to match your navbar's height */
}

.margin {
    margin-top: 60px; /* Adjust this value to match your navbar's height */
    margin-bottom: 10px;
}

.marginx {
    margin-left: 170px; /* Adjust this value to match your navbar's height */
    margin-right: 200px; /* Adjust this value to match your navbar's height */
}

.paddingx {
    padding-left: 250px; /* Adjust this value to match your navbar's height */
    padding-right: 250px; /* Adjust this value to match your navbar's height */
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 1000;
    color: #3a2b29;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    
}

.about-desc {
    font-size: 16px;
    color: #5a4a48;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

/* Slide-in effect for about-section */
.about-section .row {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-section .row.animate {
    opacity: 1;
    transform: translateY(0);
}

.crew-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    overflow: hidden; /* Ensure overlay stays within section */
}

.crew-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35); /* Adjust opacity as needed */
    z-index: 1;
    pointer-events: none;
}

.crew-section .container,
.crew-section .row,
.crew-section .col-lg-7,
.crew-section .col-lg-5 {
    position: relative;
    z-index: 2;
}

/* Slide-in effect for crew-section */
.crew-section .row {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.crew-section .row.animate {
    opacity: 1;
    transform: translateY(0);
}

.crew-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.crew-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}

.crew-btn {
    padding: 0.75rem 4.5rem;
    font-size: 1.25rem;
    border-radius: 32px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .crew-section {
        padding: 30px 0;
    }
    .crew-title {
        font-size: 2rem;
    }
    .crew-img {
        max-width: 320px;
    }
}

@media (max-width: 767.98px) {
    .crew-section {
        padding: 24px 0;
    }
    .crew-title {
        font-size: 1.5rem;
    }
    .crew-img {
        max-width: 220px;
    }
    .crew-btn {
        padding: 0.5rem 2.5rem;
        font-size: 1rem;
    }
    .crew-section .row {
        flex-direction: column;
    }
    .crew-section .col-lg-7,
    .crew-section .col-lg-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 991.98px) {
    .about-title {
        font-size: 2.2rem;
    }
    .about-desc {
        font-size: 1.1rem;
    }
    .crew-center {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 1.5rem;
    }
    .about-desc {
        font-size: 1rem;
    }
}