/* Main container styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.tab-content-sec-wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 30px;
}
/* Heading styles */
.tab-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    display: none;
}

/* Tab button styles */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #FFD700;
    border-radius: 50px;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn:hover{
    background: #FFD700;
    color: #000;
}
.tab-btn.active {
    background: #FFD700;
    color: #000;
}

/* Grid layout */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0px;
}

/* Installation section card styles */
.installation-section {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.installation-section:hover {
    transform: translateY(-5px);
}

/* Remove section button */
.remove-section-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff4444;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    z-index: 2;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-section-btn:hover {
    background: #ff0000;
    transform: scale(1.1);
}

/* Number badge styles */
.section-number {
    position: absolute;
    top: -15px;
    left: 45%;
    background: #FFD700;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    z-index: 1;
}

/* Image styles */
.installation-section img {
    height: 140px;
    object-fit: contain;
    margin: 20px auto;
}

.installation-section .image-container {
    margin: 20px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text content styles */
.installation-section h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 15px 0 10px;
}

.installation-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Action buttons */
.tab-content-sec-wrap .action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}


.video-btn, .pdf-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}



.video-btn {
    background: #FFD700;
    color: #000!important;
    border: none;
}

.pdf-btn {
    background: #000;
    color: #FFF!important;
    border: none;
}

.video-btn:hover, .pdf-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Add section button */
.add-section-btn {
    display: block;
    margin: 30px auto;
}



/* Responsive adjustments */
@media (max-width: 1024px) {
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .installation-section img{
        width: 100%;
    }
       .tab-content-sec-wrap{
        padding: 20px 16px 30px 16px;
    }
}

@media (max-width: 480px) {
    .tab-heading{
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
    .tab-content-sec-wrap{
        padding:20px 16px 16px 16px;
    }
    .sections-grid {
        grid-template-columns: 1fr;
            margin-bottom: 0px;
    }
    .installation-section {
    padding: 20px 16px;
    }
    .tabs {
        flex-direction: column;
    }
    
    .tab-content-sec-wrap .action-buttons {
        flex-direction: column;
    }
    .installation-section img{
        width: 100%;
    }
    

}


