/*
Theme Name: Visual Composer Starter Child
Theme URL: https://visualcomposer.com/visual-composer-starter-theme/
Description: Visual Composer Starter Child Theme
Theme Author: Visual Composer
Author URL: https://visualcomposer.com/
Template: visual-composer-starter
Version: 1.0.0
Text Domain: visual-composer-starter-child
*/

.custom_underline {
    border-bottom: 2px solid #FC8205;
    display: inline-block;
    padding-bottom: 10px;
}

[data-vcv-sticky-element-active="true"] {
    background-color: #000 !important;
    /* black background */
    transition: background-color 0.3s ease;
    /* smooth transition */
}


/* Grid Layout */
.custom-slider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.gallery-block {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-image-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.gallery-image-box img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    z-index: 1;
    position: relative;
}

.gallery-image-box .image-overlay {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-block:hover .gallery-image-box .image-overlay {
    opacity: 0;
}

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

.gallery-block:hover .gallery-image-box .gallery-title {
    opacity: 1;
}

.gallery-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff !important;
    padding: 6px;
    width: 100%;
    z-index: 3;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px !important;
    }

    h2 {
        font-size: 35px !important;
    }

    .mobile_text_center *,
    .mobile_text_center {
        text-align: center !important;
        justify-content: center !important;
    }

    .custom-slider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .custom-slider-grid {
        grid-template-columns: 1fr;
    }

    .vce-sandwich-menu-inner nav li.menu-item {
        padding: 10px !important;
    }
}

/* Popup Overlay */
.custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.custom-popup-box {
    position: relative;
    background: #fff;
    border: 3px solid #FC8205 !important;
    padding: 40px 80px !important;
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.custom-popup-box p,
.custom-popup-box h5 {
    color: #000 !important;
}

/* Responsive Popup */
@media (max-width: 900px) {
    .slick-prev.slick-arrow {
        left: 10px !important;
    }

    .slick-next.slick-arrow {
        right: 15px !important;
    }

    .custom-popup-box {
        max-width: 90%;
        padding: 30px 40px !important;
    }
}

@media (max-width: 600px) {
    .custom-popup-box {
        max-width: 95%;
        padding: 20px 25px !important;
    }

    .custom-popup-box h5 {
        font-size: 20px !important;
    }

    .custom-popup-box p .green {
        font-size: 16px;
    }

    .custom-popup-close {
        width: 28px;
        height: 28px;
        font-size: 22px !important;
        right: 10px !important;
        top: 10px !important;
    }

    .custom-contact-form .wpcf7-submit {
        margin-left: 22%;
    }
}

.custom-popup-close {
    position: absolute;
    right: 5px !important;
    top: 5px !important;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    font-size: 25px !important;
    font-weight: bold !important;
    background: #FC8205 !important;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.custom-popup-close:hover {
    background: #1d8c47 !important;
}

.custom-popup-box p {
    margin: 5px 0px !important;
}

.custom-popup-box h4 {
    margin: 0px 0px 10px 0px !important;
}

.green {
    color: #FC8205;
    font-weight: bold;
    font-size: 18px;
}

body.popup-open {
    overflow: hidden;
}

/*Custom Form CSS Start*/
/* ------------------------------
   Custom Contact Form Styling
   Wrapper: .custom-contact-form
--------------------------------*/

.custom-contact-form form.wpcf7-form p label {
    color: #000;
    font-weight: 400;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

/* Inputs, email, text, textarea */
.custom-contact-form .wpcf7-form-control.wpcf7-text,
.custom-contact-form .wpcf7-form-control.wpcf7-email,
.custom-contact-form .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    border: 1px solid #dcdcdc !important;
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 6px;
    background: #fff;
}

/* Textarea height = 3 rows approx */
.custom-contact-form .wpcf7-form-control.wpcf7-textarea {
    height: auto;
    min-height: 80px;
    /* approx. 3 rows */
    resize: vertical;
}

/* File upload ONLY – half width */
.custom-contact-form .wpcf7-form-control.wpcf7-file {
    width: 50%;
    border: 1px solid #dcdcdc !important;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    margin-top: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Submit button */
.custom-contact-form .wpcf7-submit {
    background: #FC8205 !important;
    color: #000 !important;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    width: auto;
    /* not full width */
    display: inline-block;
}

/* Submit button hover */
.custom-contact-form .wpcf7-submit:hover {
    opacity: 0.9;
}

/* Make all fields full width EXCEPT file upload + submit */
.custom-contact-form p {
    width: 100%;
}

/* REMOVE full-width layout from file + submit row */
.custom-contact-form p input[type="file"],
.custom-contact-form p input[type="submit"] {
    display: inline-block;
}

/* Submit button hover - text turns white */
.custom-contact-form .wpcf7-submit:hover {
    opacity: 0.9;
    color: #fff !important;
}

/*Csutom Form CSS Ends*/








/*Index page css start*/
/* ==========================================
   PAGE 278 – Compact Clean Layout
   Brand: #4db8b5
========================================== */

.page-id-278 {
    background: #f9fbfb;
}

/* ------------------------------------------
   Top Logo + Index Section (tight)
------------------------------------------ */

.page-id-278 .vce-row-container:first-child {
    padding-top: 40px;
    padding-bottom: 20px;
}

/* ------------------------------------------
   Reduce section spacing
------------------------------------------ */

.page-id-278 .vce-row-container:not(:first-child) {
    padding: 25px 15px;
}

/* Remove extra spacing inside VC rows */
.page-id-278 .vce-row-content {
    margin: 0 !important;
}

/* ------------------------------------------
   Compact Column Boxes
------------------------------------------ */

.page-id-278 .vce-row-container:not(:first-child) .vce-row-content>.vce-col {

    background: #ffffff;
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(77, 184, 181, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease;
}

/* Very subtle hover (no jump) */
.page-id-278 .vce-row-container:not(:first-child) .vce-row-content>.vce-col:hover {
    border-color: #4db8b5;
}

/* ------------------------------------------
   Tight Headings
------------------------------------------ */

.page-id-278 h4 {
    font-size: 16px;
    font-weight: 600 !important;
    margin-bottom: 8px;
    color: #243434;
}

.page-id-278 h4:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #4db8b5;
    margin-top: 5px;
}

/* ------------------------------------------
   Compact List Styling
------------------------------------------ */

.page-id-278 ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.page-id-278 ol li {
    margin-bottom: 5px;
}

.page-id-278 ol li a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    color: #2d3e3e;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.page-id-278 ol li a:hover {
    color: #4db8b5;
}

/* ------------------------------------------
   Remove effects from logo
------------------------------------------ */

.page-id-278 .vce-single-image,
.page-id-278 .vce-single-image img,
.page-id-278 .vce-single-image-figure-inner {
    box-shadow: none !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: none !important;
}

/* ------------------------------------------
   Mobile adjustments
------------------------------------------ */

@media (max-width: 992px) {

    .page-id-278 .vce-row-container:not(:first-child) .vce-row-content>.vce-col {
        margin-bottom: 12px;
    }

    .page-id-278 h4 {
        font-size: 15px;
    }
}


/* =========================================
   COMPACT & SOBER LIST DESIGN
========================================= */

.page-id-278 ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.page-id-278 ol li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

/* Small subtle brand dot */
.page-id-278 ol li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #4db8b5;
    border-radius: 50%;
}

/* Clean link style */
.page-id-278 ol li a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    color: #2f3f3f;
    line-height: 1.4;
    transition: color 0.2s ease;
}

/* Simple hover */
.page-id-278 ol li a:hover {
    color: #4db8b5;
}

/*Index page css end*/




/*Metis css starts*/
.custom_right_arrow .vce-button {
    position: relative;
}

.custom_right_arrow .vce-button::after {
    content: " →";
    display: inline-block;
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
    font-weight: 900;
    line-height: 0px;
}

.custom_right_arrow .vce-button:hover::after {
    transform: translateX(4px);
}


/* Container */
.custom-bullets {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: -5%;
    gap: 12px;
    margin-bottom: 17px;
    width: 100%;
    align-items: end;
    padding: 0px 10px;
}

/* Bullet style */
.custom-bullets .bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active bullet */
.custom-bullets .bullet.active {
    background-color: #fff;
}

/* Optional hover effect */
.custom-bullets .bullet:hover {
    transform: scale(1.2);
    background-color: #4D70AC;
}

@media screen and (max-width: 767px) {
    .custom-bullets {
        display: flex;
        justify-content: center;
        flex-direction: row;
        margin-top: -8%;
        gap: 12px;
        margin-bottom: 17px;
        width: 100%;
        align-items: end;
        padding: 0px 10px;
    }
}

.custom_subscribe_1_form .wpcf7-not-valid-tip,
.custom_subscribe_1_form .wpcf7-spinner {
    display: none !important;
}

.custom_subscribe_1_form form label {
    /* display: flex !important; */
}

.custom_subscribe_1_form form {
    text-align: center !important;
}

.custom_subscribe_1_form .wpcf7-email {
    border: 0px;
    padding: 10px 15px;
    width: 55%;

}

.custom_subscribe_1_form .wpcf7-response-output {
    color: #fff;
}

.custom_subscribe_1_form .wpcf7-submit {
    background-color: #C8102E !important;
    border: 0px;
    color: #fff;
    font-size: 15px;
    line-height: 0px;
    padding: 23px 15px;
    margin-left: -4px;
}

.custom_subscribe_1_form .wpcf7-submit:hover {
    background-color: #185eab !important;
}

.main-content {
    padding-bottom: 0px !important;
}

.content-wrapper {
    padding-top: 0px !important;
}

/* Make parent li position relative */
.menu li.menu-item-has-children {
    position: relative;
}

/* Add + icon */
.menu li.menu-item-has-children>a::after {
    content: "+";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
}

/* Optional: Add spacing so text doesn't overlap */
.menu li.menu-item-has-children>a {
    padding-right: 25px;
}




/* ===== MF TABS SECTION START ===== */

.mf-tabs-wrapper {
    width: 1200px !important;
    margin: 40px auto !important;
    display: flex !important;
    border: 1px solid #bfbfbf !important;
    border-radius: 12px !important;
    background: #f3f3f3 !important;
    overflow: hidden !important;
}

.mf-tabs-nav {
    width: 40% !important;
    padding: 40px 25px !important;
    box-sizing: border-box !important;
    border-right: 1px solid #cfcfcf !important;
}

.mf-tabs-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mf-tabs-item {
    position: relative !important;
    padding: 18px 15px 18px 70px !important;
    margin-bottom: 18px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    color: #7d7d7d !important;
    letter-spacing: 0.5px !important;
    transition: 0.3s ease !important;
}

/* Flower Circle */
.mf-tabs-item::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #e6e6e6 url("/wp-content/uploads/2026/02/5-12-Contractors-e1772142128139.png") no-repeat center !important;
    background-size: 28px !important;
    filter: grayscale(100%) !important;
    opacity: 0.7 !important;
    transition: 0.3s ease !important;
}

/* Active */
.mf-tabs-item.active {
    color: #c6252c !important;
}

.mf-tabs-item.active::before {
    background-color: #ffffff !important;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
}

.mf-tabs-content {
    width: 60% !important;
    padding: 50px 60px !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Top Right Flower */
.mf-tabs-content::after {
    content: "" !important;
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    background: #ffffff url("/wp-content/uploads/2026/02/5-12-Contractors-e1772142128139.png") no-repeat center !important;
    background-size: 60px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Panes */
.mf-tab-pane {
    display: none !important;
}

.mf-tab-pane.active {
    display: block !important;
}

.mf-tab-pane h2 {
    color: #c6252c !important;
    margin-top: 0 !important;
    font-size: 26px !important;
    letter-spacing: 1px !important;
}

.mf-tab-pane p {
    color: #000 !important;
    line-height: 1.7 !important;
    max-width: 520px !important;
}

.mf-learn-btn {
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 12px 22px !important;
    background: #0b5c88 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: 0.3s !important;
}

.mf-learn-btn::after {
    content: " →" !important;
    display: inline-block !important;
    margin-left: 8px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 0px !important;
    transition: transform 0.3s ease !important;
}

/* Hover effect */
.mf-learn-btn:hover {
    background: #c8102e !important;
    color: #ffffff !important;
}

/* Optional subtle arrow move on hover */
.mf-learn-btn:hover::after {
    transform: translateX(4px) !important;
}

.mf-initiatives {
    margin-top: 50px !important;
}

.mf-initiatives h4 {
    color: #c6252c !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}

.mf-initiatives a {
    display: block !important;
    color: #1a5e95 !important;
    text-decoration: none !important;
    border-bottom-width: 0px !important;
    font-weight: bold !important;
    margin-bottom: 18px !important;
    font-size: 18px !important;
}

.mf-initiatives a:hover {
    color: #c6252c !important;
}

.mf-initiatives a::after {
    content: " →" !important;
    color: #1a5e95 !important;
}

/* Flex row for text & image */
.mf-flex-row {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
}

.mf-text-col,
.mf-image-col {
    flex: 1 1 50% !important;
    box-sizing: border-box !important;
}

.mf-image-col img {
    max-width: 100% !important;
    border-radius: 12px !important;
    display: block !important;
    object-fit: cover !important;
}



/* ===== MF TABS RESPONSIVE ===== */
/* ===== MF TABS FULL RESPONSIVE ===== */

/* Extra Large screens (>1900px) */
@media screen and (min-width: 1901px) {
    .mf-tabs-wrapper {
        width: 1400px !important;
        margin: 50px auto !important;
    }

    .mf-tabs-nav {
        padding: 50px 30px !important;
    }

    .mf-tabs-content {
        padding: 60px 70px !important;
    }

    .mf-tabs-item {
        padding: 20px 20px 20px 80px !important;
        font-size: 18px !important;
    }

    .mf-tabs-item::before {
        width: 52px !important;
        height: 52px !important;
        background-size: 32px !important;
        left: 12px !important;
    }

    .mf-tabs-content::after {
        width: 110px !important;
        height: 110px !important;
        background-size: 70px !important;
    }
}

/* Large desktops (1200px - 1500px) */
@media screen and (max-width: 1500px) and (min-width: 1200px) {
    .mf-tabs-wrapper {
        width: 100% !important;
    }

    .mf-tabs-nav {
        padding: 40px 25px !important;
    }

    .mf-tabs-content {
        padding: 50px 60px !important;
    }

    .mf-tabs-item {
        padding: 18px 15px 18px 70px !important;
        font-size: 16px !important;
    }

    .mf-tabs-item::before {
        width: 48px !important;
        height: 48px !important;
        background-size: 28px !important;
    }

    .mf-tabs-content::after {
        width: 90px !important;
        height: 90px !important;
        background-size: 60px !important;
    }
}

/* Medium screens (tablets) */
@media screen and (max-width: 1199px) and (min-width: 200px) {
    .mf-tabs-wrapper {
        flex-direction: column !important;
        width: 95% !important;
        margin: 30px auto !important;
    }


    .mf-tabs-nav {
        width: 100% !important;
        padding: 25px !important;
        border-right: none !important;
        border-bottom: 1px solid #cfcfcf !important;
    }

    .mf-tabs-content {
        width: 100% !important;
        padding: 30px !important;
    }

    .mf-flex-row {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .mf-text-col,
    .mf-image-col {
        flex: 1 1 100% !important;
    }

    .mf-tabs-item {
        padding: 15px 15px 15px 60px !important;
        font-size: 14px !important;
    }

    .mf-tabs-item::before {
        width: 40px !important;
        height: 40px !important;
        background-size: 24px !important;
    }

    .mf-tabs-content::after {
        width: 80px !important;
        height: 80px !important;
        background-size: 50px !important;
    }

    .mf-learn-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

.vce-simple-image-slider-dots {
    bottom: 35px !important;
}

.slick-dots li button:before {
    content: none !important;
}

.vce-faq-toggle-text-block p a {
    display: block !important;
    color: #c6252c !important;
    text-decoration: none !important;
    border-bottom-width: 0px !important;
    font-weight: bold !important;
    margin-bottom: 18px !important;
    font-size: 18px !important;
}

.vce-faq-toggle-text-block p a::after {
    content: " →" !important;
    color: #c6252c !important;
}

.vce-faq-toggle-text-block p a:hover {
    color: #0b5c88 !important;
}

/* ===== MF TABS SECTION END ===== */


@media screen and (max-width: 1200px) {
    .menu-header-menu-container a {
        color: #fff !important;
    }
}

/* ===============================
   Department Contact Form Styling
   Scoped under custom_department_contact_form
================================== */

.custom_department_contact_form {
    background-color: transparent;
    padding: 0px;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.custom_department_contact_form .form-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.custom_department_contact_form h2,
.custom_department_contact_form h3 {
    color: #ffffff;
    margin-bottom: 40px;
}

/* Two column layout */
.custom_department_contact_form .form-row {
    display: flex;
    gap: 60px;
    margin-bottom: 10px;
}

.custom_department_contact_form .form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Labels */
.custom_department_contact_form label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #ffffff;
}

/* Inputs */
.custom_department_contact_form input[type="text"],
.custom_department_contact_form input[type="email"],
.custom_department_contact_form input[type="tel"] {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    width: 100%;
    transition: all 0.3s ease;
}

/* Focus effect */
.custom_department_contact_form input[type="text"]:focus,
.custom_department_contact_form input[type="email"]:focus,
.custom_department_contact_form input[type="tel"]:focus {
    border-bottom: 2px solid #ffffff;
}

/* Submit button */
.custom_department_contact_form .form-submit {
    margin-top: 30px;
}

.custom_department_contact_form input[type="submit"] {
    background-color: #8a9563;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom_department_contact_form input[type="submit"]:hover {
    background-color: #b72230;
}

/* Spinner fix */
.custom_department_contact_form .wpcf7-spinner {
    display: none;
}

/* Response message */
.custom_department_contact_form .wpcf7-response-output {
    margin-top: 20px;
    color: #ffffff;
    border: none;
}

/* ===============================
   Responsive
================================== */

@media (max-width: 992px) {
    .custom_department_contact_form {
        padding: 60px 40px;
    }

    .custom_department_contact_form .form-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .custom_department_contact_form {
        padding: 50px 25px;
    }

    .custom_department_contact_form .form-row {
        flex-direction: column;
        gap: 30px;
    }

    .custom_department_contact_form input[type="submit"] {
        width: 100%;
    }
}

/*Metis css ends*/



/*Resources Sorting Section CSS Start*/
/* Resources Grid */
.resource-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    border: 1px solid #ccc;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-category {
    color: #c8102e;
    font-weight: 600;
    margin-bottom: 15px;
}

.resource-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.read-more {
    text-transform: uppercase;
    font-size: 14px;
    color: #555;
    border-bottom: none !important;
}

/* Filters */
.resource-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: space-between;
}
.resource-filters div {
    display: flex;
}

.sort-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.sort-btn.active {
    border-bottom: 2px solid #000;
}

/* Load More */
.load-more {
    margin: 40px auto;
    display: block;
    padding: 10px 30px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .resource-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .resource-container {
        grid-template-columns: 1fr;
    }
}
/*Resources Sorting Section CSS End*/
