/* ========================================
   SECTION ENHANCEMENTS CSS
   Add this to your new enhancements.css file
   ======================================== */

/* Enhanced Tab Design - Modern tabs with glassmorphism */
.nav--tabs .item {
    border-radius: 12px;
    margin: 0 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 182, 98, 0.05), rgba(1, 182, 98, 0.02));
    backdrop-filter: blur(5px);
    transition: all ease 0.4s;
}

.nav--tabs .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 182, 98, 0.15);
    background: linear-gradient(135deg, rgba(1, 182, 98, 0.08), rgba(1, 182, 98, 0.05));
}

/* Enhanced active state */
.nav--tabs .owl-item.synced .item {
    background: linear-gradient(135deg, #EB2034, #d41b2e);
    color: #ffffff;
    border-bottom-color: #EB2034;
    box-shadow: 0 6px 20px rgba(235, 32, 52, 0.3);
    transform: translateY(-3px);
}

/* Add subtle animation to icons */
.nav--tabs .item img {
    transition: all ease 0.3s;
    border-radius: 8px;
}

.nav--tabs .owl-item.synced .item img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* Text styling enhancement */
.nav--tabs .item .txt {
    margin-top: 8px;
    font-weight: 600;
    transition: all ease 0.3s;
}

.nav--tabs .owl-item.synced .item .txt {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Enhanced navigation arrows */
.nav--tabs-wrapper .owl-nav .owl-prev,
.nav--tabs-wrapper .owl-nav .owl-next {
    background: linear-gradient(135deg, #EB2034, #d41b2e);
    border: none;
    transition: all ease 0.3s;
    z-index: 10;
}

.nav--tabs-wrapper .owl-nav .owl-prev:hover,
.nav--tabs-wrapper .owl-nav .owl-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(235, 32, 52, 0.4);
}

.nav--tabs-wrapper .owl-nav .owl-prev::before,
.nav--tabs-wrapper .owl-nav .owl-next::before {
    border-color: #ffffff;
}

/* Subtle pulse animation for active tab */
@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(235, 32, 52, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(235, 32, 52, 0.4);
    }
}

.nav--tabs .owl-item.synced .item {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* ======================================== */

/* Enhanced Main Section */
.ecommerce-venture-section {
    padding: 60px 0px 80px;
    background: linear-gradient(184deg,
            rgba(var(--base-rgb), 0.08) 26.92%,
            #fff 43.05%,
            #fff 83.81%,
            rgba(var(--base-rgb), 0.08) 104.57%),
        #fff;
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.ecommerce-venture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(235, 32, 52, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--base-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced section header */
.ecommerce-venture-section .section-header {
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.ecommerce-venture-section .section-header .title {
    font-weight: 700;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.ecommerce-venture-section .section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Enhanced content area */
.venture-content {
    padding: 30px 0;
    position: relative;
}

.venture-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Enhanced venture-content-box */
.venture-content-box {
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all ease 0.3s;
    line-height: 1.7;
}

.venture-content-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
}

.venture-content-box .subtitle {
    color: #333;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #EB2034, #d41b2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venture-content-box p {
    margin-bottom: 14px;
    color: #555;
}

.venture-content-box p:last-child {
    margin-bottom: 0;
}

/* Enhanced image container */
.venture-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.15));
}

.venture-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 32, 52, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.venture-img:hover::before {
    opacity: 1;
}

.venture-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0px 6px 60px rgba(0, 0, 0, 0.2));
}

.venture-img img {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.venture-img:hover img {
    transform: scale(1.03);
}

/* Enhanced carousel item */
#sync1 .item {
    padding: 20px;
}

#sync1 .item .row {
    align-items: center;
    min-height: 400px;
}

/* Add subtle animation on content reveal */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.venture-content {
    animation: slideInLeft 0.6s ease-out;
}

.venture-img {
    animation: slideInRight 0.6s ease-out;
}

/* Improved max-width utility */
.mw-450 {
    max-width: 450px;
    height: auto;
}

/* Container enhancement */
.max-w1060 {
    position: relative;
    z-index: 2;
}

/* Add subtle loading state for images */
.venture-img img {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.4s ease;
}

.venture-img img.loaded {
    opacity: 1;
}

/* Add loading animation for images */
.nav--tabs .item img,
.venture-img img {
    opacity: 0;
    animation: fadeInImage 0.6s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* ======================================== */
/* RESPONSIVE DESIGN */
/* ======================================== */

/* Tablet and Desktop */
@media (min-width: 768px) {
    .ecommerce-venture-section {
        padding: 80px 0px 100px;
    }

    .ecommerce-venture-section .section-header {
        margin-bottom: 60px;
    }

    .venture-content h3 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .venture-content {
        padding: 40px 0;
    }

    .mw-450 {
        max-width: 500px;
    }
}

/* Large Desktop */
@media (min-width: 992px) {
    .ecommerce-venture-section {
        padding: 100px 0px 120px;
    }

    .venture-content h3 {
        font-size: 36px;
    }

    .venture-content div {
        font-size: 18px;
    }

    .mw-450 {
        max-width: 550px;
    }
}

/* Mobile specific improvements */
@media (max-width: 767px) {
    .ecommerce-venture-section {
        padding: 50px 0px 60px;
    }

    .nav--tabs .item {
        margin: 0 4px;
        border-radius: 10px;
    }

    .venture-content {
        text-align: center !important;
        padding: 20px;
    }

    .venture-content h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .venture-content-box {
        padding: 20px;
        border-radius: 12px;
    }

    .venture-content-box .subtitle {
        margin-bottom: 10px;
    }

    .venture-img {
        border-radius: 16px;
        margin-bottom: 30px;
    }

    #sync1 .item .row {
        min-height: auto;
    }
}

/* Add smooth scroll behavior */
.nav--tabs-wrapper {
    scroll-behavior: smooth;
}