/* Enhanced styles for Our Tech section tabs */

/* Increase the tab content area height */
.tab-content {
    min-height: 400px; /* Increased from default height */
    padding: 30px;
    transition: all 0.3s ease;
}

/* Add more vertical spacing in tab content */
.tab-pane {
    padding-bottom: 40px;
}

/* Specific styling for the tech tabs */
#tech-tabs .tab-content {
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Make the content area expandable based on content */
#tech-tabs .tab-pane {
    height: auto;
    overflow: visible;
}

/* Add more spacing for paragraphs inside tabs */
#tech-tabs .tab-pane p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Add space for lists inside tabs */
#tech-tabs .tab-pane ul,
#tech-tabs .tab-pane ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

#tech-tabs .tab-pane li {
    margin-bottom: 10px;
}

/* Add space for images in tabs */
#tech-tabs .tab-pane img {
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-content {
        min-height: 300px;
        padding: 20px;
    }
}