/* Custom Styles for Tabs */
.tabs-nav .nav-item {
    margin-bottom: 10px;
}

.tabs-nav .nav-link {
    color: #4A4A4A; /* Custom dark grey color for text */
    background-color: #F1F1F1; /* Custom light grey background */
    border: 1px solid #E0E0E0; /* Custom light grey border */
    border-radius: .25rem;
    padding: 15px 20px; /* Increased padding for height */
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Box shadow */
}

.tabs-nav .nav-link:hover {
    background-color:#65c9cd; /* Orange background on hover */
    color: #FFFFFF; /* White text on hover */
}
/* Custom Styles for Tabs */
.tabs-nav .nav-item {
    margin-bottom: 10px;
}

.tabs-nav .nav-link {
    color: #4A4A4A; /* Custom dark grey color for text */
    background-color: #F1F1F1; /* Custom light grey background */
    border: 1px solid #E0E0E0; /* Custom light grey border */
    border-radius: .25rem;
    padding: 15px 20px; /* Increased padding for height */
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Box shadow */
}

.tabs-nav .nav-link:hover {
    background-color: #65c9cd; /* Orange background on hover */
    color: #FFFFFF; /* White text on hover */
}

.tabs-nav .nav-link.active {
    color: #FFFFFF; /* White text for active tab */
    background-color: #014D4E; /* Green background for active tab */
    border-color:#014D4E; /* Green border for active tab */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Stronger box shadow for active tab */
}

@media (max-width: 991.98px) {
    .tabs-nav .nav-link {
        text-align: center;
    }
}

/* Increase image size in content area */
.content-area .content-item img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Set a maximum height */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: .25rem; /* Add border radius for smooth corners */
    margin-bottom: 15px; /* Add some space below the image */
}

.tabs-nav .nav-link.active {
    color: #FFFFFF; /* White text for active tab */
    background-color:#014D4E; /* Green background for active tab */
    border-color: #65c9cd; /* Green border for active tab */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Stronger box shadow for active tab */
}

@media (max-width: 991.98px) {
    .tabs-nav .nav-link {
        text-align: center;
    }
}
