body {
    font-family: 'Poppins', sans-serif;
}

/* You can also target specific elements if needed */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.hero-image {
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    object-fit: cover;
}

.hero-image-overlay {
    position: relative;
    color: white;
}

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 0.5rem;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.gallery-img {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    height: 100%;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.custom-list-icons li {
    position: relative;
    padding-left: 2rem;
}

.custom-list-icons li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* General style for the tab buttons */
.nav-tabs .nav-link {
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #dee2e6;
    border-bottom: 0;
    margin-right: 0.25rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    color: #495057; /* Default text color */
}

/* Blue Tab (Active and Inactive states) */
.nav-tabs .nav-tab-blue.active {
    background-color: #0d6efd; /* Blue */
    border-color: #0d6efd;
    color: #fff; /* White text */
}
.nav-tabs .nav-tab-blue:not(.active):hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Yellow Tab (Active and Inactive states) */
.nav-tabs .nav-tab-yellow.active {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
    color: #343a40; /* Dark text for readability on yellow */
}
.nav-tabs .nav-tab-yellow:not(.active):hover {
    border-color: #ffc107;
    color: #ffc107;
}

/* Red Tab (Active and Inactive states) */
.nav-tabs .nav-tab-red.active {
    background-color: #dc3545; /* Red */
    border-color: #dc3545;
    color: #fff; /* White text */
}
.nav-tabs .nav-tab-red:not(.active):hover {
    border-color: #dc3545;
    color: #dc3545;
}

/* Custom styles for the tab content area (remains the same) */
.tab-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 1.5rem;
}