/* Modern About Section */
#overview {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-modern-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 50px;
}

/* Background Text Effect */
.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 10px;
}

/* Left Side: Content */
.about-content-col {
    flex: 1;
    z-index: 2;
    position: relative;
}

.about-glass-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-header {
    margin-bottom: 30px;
}

.about-subtitle {
    color: #16724B;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-text strong {
    color: white;
    font-weight: 600;
}

.about-text a {
    color: #16724B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.about-text a:hover {
    color: #1eb574;
}

/* Mission Highlight */
.mission-highlight {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mission-icon {
    background: rgba(22, 114, 75, 0.2);
    color: #16724B;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mission-content h4 {
    font-size: 18px;
    color: white;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.mission-content p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

/* Right Side: Truck Image */
.about-image-col {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-image {
    width: 150%; /* Make it bigger */
    max-width: 1000px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transform: perspective(1000px) rotateY(-10deg) translateX(50px);
    transition: transform 0.5s ease;
}

.about-modern-wrapper:hover .truck-image {
    transform: perspective(1000px) rotateY(-5deg) translateX(30px) scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .about-modern-wrapper {
        flex-direction: column-reverse;
        gap: 0;
    }

    .about-image-col {
        width: 100%;
        margin-bottom: -50px; /* Overlap effect */
        z-index: 3;
    }

    .truck-image {
        width: 90%;
        transform: none;
        margin-bottom: 20px;
    }
    
    .about-modern-wrapper:hover .truck-image {
        transform: scale(1.02);
    }

    .about-bg-text {
        font-size: 6rem;
        top: 20%;
    }

    .about-glass-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    #overview {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .about-header {
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image-col {
        margin-bottom: -30px;
    }
}
