/* Company Info Section */
.company-info {
    position: relative;
    padding: 120px 0;
    background: url('https://worldmartoverseas.com/assets/images/bg-img.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 95, 0.50);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.info-name {
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-subname {
    font-weight: 700;
    color: var(--accent-teal);
    display: block;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.company-logo {
    max-width: 180px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.company-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.company-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: center;
}

/* Background Elements */
.bg-plane {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 200px;
    opacity: 0.9;
    z-index: 0;
    animation: floatPlane 8s infinite ease-in-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.bg-ship {
    position: absolute;
    bottom: 3%;
    right: 8%;
    width: 250px;
    opacity: 0.9;
    z-index: 0;
    animation: floatShip 10s infinite ease-in-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

@keyframes floatPlane {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes floatShip {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info-name {
        font-size: 2.2rem;
    }
    .info-subname {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .company-info {
        padding: 100px 0;
    }
    
    .company-logo {
        max-width: 150px;
    }
    
    .bg-plane {
        width: 150px;
        left: 5%;
    }
    
    .bg-ship {
        width: 200px;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .company-info {
        padding: 80px 0;
    }
    
    .company-logo {
        max-width: 120px;
    }
    
    .info-name {
        font-size: 2rem;
    }
    
    .info-subname {
        font-size: 1.3rem;
    }
    
    .company-text p {
        font-size: 1.2rem;
    }
    
    .bg-plane,
    .bg-ship {
        opacity: 0.8;
    }
}

@media (max-width: 576px) {
    .bg-plane,
    .bg-ship {
        opacity: 0.7;
        display: block;
    }
    
    .bg-plane {
        width: 100px;
        top: 15%;
    }
    
    .bg-ship {
        width: 120px;
        bottom: 5%;
    }
}