/* Business Section Styles */

/* Business Block Structure */
.topBusiness {
    background: #f8f8f8 !important;
    overflow-x: hidden !important;
    min-height: auto !important;
}

.topBusiness .block-content {
    min-height: auto !important;
    height: auto !important;
}

.topBusiness__inner {
    display: flex !important;
    gap: 60px !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    min-height: auto !important;
}

/* Business Text Section */
.business-text {
    flex: 1 !important;
    min-width: 0;
}

.business-text h2 {
    font-size: 5rem !important;
    font-weight: 700 !important;
    color: #252525 !important;
    line-height: 1.4 !important;
    margin-bottom: 60px !important;
}

.business-text h2 a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 20px !important;
    text-decoration: none !important;
    color: #252525 !important;
    transition: opacity 0.3s ease !important;
}

.business-text h2 a:hover {
    opacity: 0.7 !important;
}

/* Circle Arrow Button */
.business-text .btn-arrows {
    width: 78px !important;
    height: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
}

.business-text .btn-arrows .cls-1 {
    fill: none !important;
    stroke: #252525 !important;
    stroke-miterlimit: 10 !important;
}

.business-text .btn-arrows .cls-2 {
    fill: #252525 !important;
}

/* Business Navigation */
.bussiness-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.nav-block {
    border-bottom: 1px solid #e5e5e5 !important;
    padding-bottom: 30px !important;
}

.nav-block:last-child {
    border-bottom: none !important;
}

.nav-block h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.nav-block h3 a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #252525 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.nav-block h3 a:hover {
    color: #007BFF !important;
}

.nav-block h3 svg {
    width: 23px !important;
    height: 22px !important;
    max-width: 23px !important;
    max-height: 22px !important;
    transition: transform 0.3s ease !important;
}

.nav-block h3 svg path {
    fill: #252525 !important;
}

.nav-block h3 a:hover svg {
    transform: translateX(5px) !important;
}

.nav-block h3 a:hover svg path {
    fill: #007BFF !important;
}

.nav-block p {
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

/* Business Image Slider */
.business-iamge {
    width: 515px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    height: 688px !important;
    overflow: hidden !important;
}

.business-iamge figure {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    opacity: 0 !important;
    transition: opacity 1s ease !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.business-iamge figure:first-child {
    opacity: 1 !important;
}

.business-iamge img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Slick Slider Styles (if using Slick) */
.business-iamge.slick-initialized {
    overflow: visible !important;
}

.business-iamge .slick-list {
    height: 688px !important;
    overflow: hidden !important;
}

.business-iamge .slick-track {
    display: flex !important;
    flex-direction: column !important;
}

.business-iamge .slick-slide {
    height: 688px !important;
}

.business-iamge .slick-slide figure {
    position: relative !important;
    opacity: 1 !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Override SVG styles from other sections */
.business-text svg,
.nav-block svg {
    vertical-align: initial !important;
    margin-left: 0 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .topBusiness__inner {
        flex-direction: column !important;
    }

    .business-iamge {
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .topBusiness {
        min-height: auto !important;
        height: auto !important;
    }

    .topBusiness .block-content {
        min-height: auto !important;
        height: auto !important;
        padding: 60px 20px 80px !important;
    }

    .topBusiness__inner {
        gap: 40px !important;
        flex-direction: column !important;
        min-height: auto !important;
        height: auto !important;
    }

    .business-text {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
    }

    .business-text h2 {
        font-size: clamp(28px, 8vw, 32px) !important;
        margin-bottom: 40px !important;
        word-break: break-word !important;
    }

    .business-text h2 a {
        gap: 15px !important;
        flex-wrap: wrap !important;
    }

    .business-text .btn-arrows {
        width: 50px !important;
        height: 50px !important;
    }

    .bussiness-nav {
        gap: 20px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .nav-block {
        padding-bottom: 20px !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
    }

    .nav-block h3 {
        font-size: 18px !important;
        word-break: break-word !important;
    }

    .nav-block h3 a {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .nav-block h3 svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }

    .nav-block h3 svg path {
        fill: #252525 !important;
    }

    .nav-block p {
        font-size: 14px !important;
        word-break: break-word !important;
        line-height: 1.8 !important;
    }

    .business-iamge {
        display: none !important;
    }
}