/* Business Section Styles */
#business_wrap {
    width: 100%;
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 0;
}

#business_wrap .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.con_title {
    text-align: center;
    margin-bottom: 50px;
}

.con_title h3 {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.con_title p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.con_box {
    width: 100%;
}

.con_box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.con_box li {
    flex: 1;
    max-width: 250px;
    min-width: 200px;
}

.con_box li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 180px;
    border: 1px solid #e5e5e5;
}

.con_box li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #fff;
}

.con_box li img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.con_box li h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.con_box li a:hover h4 {
    color: #48683F;
}

/* Animation Classes */
/* Natural fadeInUp animation - smoother than default */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    #business_wrap {
        padding: 60px 0;
    }
    
    .con_title h3 {
        font-size: 28px;
    }
    
    .con_box ul {
        gap: 20px;
    }
    
    .con_box li {
        max-width: 200px;
    }
    
    .con_box li a {
        padding: 30px 15px;
        height: 160px;
    }
    
    .con_box li img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    #business_wrap {
        padding: 40px 0;
    }
    
    #business_wrap .inner {
        padding: 0 15px;
    }
    
    .con_title {
        margin-bottom: 40px;
    }
    
    .con_title h3 {
        font-size: 24px;
    }
    
    .con_title p {
        font-size: 14px;
    }
    
    .con_box ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .con_box li {
        max-width: 100%;
        width: 100%;
    }
    
    .con_box li a {
        flex-direction: row;
        padding: 20px;
        height: auto;
        text-align: left;
    }
    
    .con_box li img {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .con_box li h4 {
        font-size: 15px;
    }
}