.security-tabs-elementor {
    width: 100%;
    font-family: 'Manrope';
}

.tabs-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.vertical-tabs {
    display: flex;
    gap: 40px;
    flex-direction: column;
    width: 100%;
}

.tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 100%;
}
 .tab-link.active {
    background-color: transparent;
}
.tab-link {
    padding: 18px 24px;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 700;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Manrope';
    border-bottom: 1px solid #fff;
    padding-left: 0;
}

.tab-link:hover,
.tab-link.active {
    color: white;
   
}

body a.btn.btn-golden{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    text-transform: capitalize;
    background: transparent;
    border-radius: 100px;
    padding: 17px 35px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--golden);
    overflow: hidden;
    transition: all 0.3s;
    background: #bd9a35;
}

body a.btn.btn-golden:hover {
    color: #bd9a35;
    background: #fff !important;
}

.tab-pane {
    display: none;
    padding: 30px 0;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.tab-content-text {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.tab-content-text p {
    margin-bottom: 20px;
}

.know-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.know-more-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.tab-image {
    flex-shrink: 0;
    width: 480px;
    position: relative;
    /* text-align: right; */
    /* align-items: end; */
    /* justify-content: flex-end; */
    margin-right: 36px;
}

.tab-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-image-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.tab-image-item.active {
    display: block;
    position: relative;
}

/* Split Text Animation Styles */
.split-text-animate .char,
.split-text-animate .word,
.split-text-animate .line {
    opacity: 0;
    transform: translateY(30px);
    display: inline-block;
}

.split-text-animate.animated .char,
.split-text-animate.animated .word,
.split-text-animate.animated .line {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Specific styles for the title */
.tab-pane h3.split-text-animate {
    font-size: 32px;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 25px;
}

/* Specific styles for content text */
.tab-content-text.split-text-animate {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    font-family: 'Manrope';
    font-weight: 400;
}

/* Button animation */
.know-more-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.tab-pane.active .know-more-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tabs-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .vertical-tabs {
        flex-direction: row;
        gap: 30px;
    }
    
    .tab-nav {
        /* flex-direction: row; */
        overflow-x: auto;
        min-width: 100%;
        padding-bottom: 10px;
    }
    
    .tab-link {
        white-space: nowrap;
        min-width: max-content;
    }
    
    .tab-image {
        width: 100%;
        margin-top: 0;
    }
    
    .tab-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        gap: 30px;
    }
    .vertical-tabs {
        flex-direction: column;
        gap: 30px;
    }
    .tab-pane {
        padding: 20px 0;
    }
    
    .tab-pane h3 {
        font-size: 24px;
    }
    
    .tab-content-text {
        font-size: 14px;
    }
    
    .tab-link {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .know-more-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tab-nav {
        gap: 5px;
    }
    
    .tab-link {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .tab-pane h3 {
        font-size: 20px;
    }
    
    .tab-image img {
        height: 300px;
    }
}