/* --- Page Banner Styles --- */
.page-banner {
    position: relative;
    height: 450px; /* Increased height for premium feel */
    background-color: #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner .media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-banner .media-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #fff;
}

/* --- Premium Typography & Block Styles --- */
.heading-2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.text-50 {
    font-size: 50px !important;
}

.text-40 {
    font-size: 40px !important;
}

.text-18 {
    font-size: 18px !important;
    line-height: 1.6;
}

.text-16 {
    font-size: 16px !important;
    line-height: 1.62;
}

.text-2 {
    color: #5d666f !important;
}

.section-padding {
    padding: 80px 0;
    padding-bottom: 30px;
}

/* --- Custom Accordion --- */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.custom-accordion .accordion-button {
    background-color: #f8f9fa !important;
    color: #000 !important;
    font-weight: 600;
    border-radius: 12px !important;
    padding: 20px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* --- Custom Tabs --- */
.custom-tabs-wrapper .nav-tabs .nav-link {
    background-color: transparent !important;
    color: #5d666f !important;
    border: 1px solid #dee2e6 !important;
    margin-right: 10px;
    transition: all 0.3s;
}

.custom-tabs-wrapper .nav-tabs .nav-link.active {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* --- Grid Items --- */
.grid-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* --- Buttons --- */
.button {
    padding: 10px 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 10px;
}

.button--primary {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.button--primary:hover {
    background-color: #fff;
    color: #000;
}

.button .svg-wrapper {
    background-color: #fff;
    color: #000;
    width: 24px;
    /* height: 24px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button--primary:hover .svg-wrapper {
    background-color: #000;
    color: #fff;
}

/* --- Subheading Pill --- */
.subheading-bg {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000;
}

.subheading-1.text-20 {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}