/***********SSF Font***********/

@import url('https://db.onlinewebfonts.com/c/0758c77989e65159e64bfad66cf44304?family=Ondine+LT+Pro');

/**********************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/********** Template CSS **********/
:root {
    --primary: #004799;
    --primary-light: #056be0;
    /* --secondary: #00843d; */
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.bg-primary {
    background-color: #004799 !important;
}


.border-primary {
    border-color: #004799 !important;
}


.text-primary {
    color: #004799 !important;
}

/***************Custom Button***************/

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: unset !important;
    white-space: nowrap;
}

.btn::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 120%;
    top: -5px;
    left: -120%;
    z-index: -1;
    transition: left 0.4s ease;
    transform: skewX(10deg);
}

.btn:hover::before {
    left: -10px;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary::before {
    background-color: var(--primary-light);
}

.btn.btn-light:hover {
    color: white;
}

.btn.btn-light::before {
    background-color: var(--primary);
}

/*******************************************/


body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.ssf-text {
    font-family: 'Ondine LT Pro', cursive;
    font-weight: normal;
    color: var(--primary);
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar-toggler-icon {
    color: white;
}

html,
body {
    position: relative;
    height: 100%;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.custom-header {
    z-index: 100;
    top: 0;
    position: fixed;
    /* opacity: 0.5; */
}

/*** Logo ***/
/* Default (mobile first) */
.logo-img {
    max-height: 36px;
    width: auto;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .logo-img {
        max-height: 40px;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .logo-img {
        max-height: 48px;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .logo-img {
        max-height: 56px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .logo-img {
        max-height: 64px;
    }
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}


.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/****Carousel Start*****/
.custom-carousel {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;

    /* 🔹 BLACK GRADIENT OVERLAY */


    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: -1;
        /* behind overlay */
    }

    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        pointer-events: none;
        z-index: 2;
        /* above overlay */

        &.active {
            opacity: 1;
            pointer-events: auto;
        }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
            /* behind buttons & content */
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 8%;
            transform: translateY(-50%);
            color: white;
            max-width: 992px;
            padding-right: 16px;
            z-index: 3;
            /* above overlay */

            h1 {
                font-size: clamp(28px, 4vw, 48px);
                line-height: 1.2;
                font-weight: 600 !important;
            }

            p {
                font-size: 20px !important;
                font-weight: 300 !important;
                font-size: clamp(14px, 1.5vw, 16px);
                text-transform: lowercase;
                margin: 16px 0;
                line-height: 35px;
            }

            P::first-letter {
                text-transform: uppercase !important;
            }

            /* BUTTON SIZE CONTROL */
            .btn {
                font-size: 14px;
                padding: 10px 22px;
            }
        }
    }

    .button-container {
        position: absolute;
        top: 0;
        right: 24px;
        height: 100%;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        z-index: 4;
        /* above everything */

        .pagination-container {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-end;


            a {
                display: block;
                width: 15px;
                height: 50px;
                border-top: 3px solid white;
                opacity: 0.4;
                transition: all 0.3s ease;

                &.active {
                    width: 25px;
                    opacity: 1;
                }
            }
        }

        .btns {
            display: flex;
            gap: 8px;
            margin-top: auto;
            align-items: center;
            padding-bottom: 30px;
        }

        .btns button {
            color: white;
            width: 40px;
            height: 40px;
            font-size: 14px;
            border-radius: 50%;
            cursor: pointer;
            border: 1px solid var(--primary-light);
            background-color: var(--primary);

            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .btns button::after {
            content: "";
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            background-color: var(--primary-light);
        }

        .btns button i {
            z-index: 1;
        }

        .btns button.next::after {
            left: -40px;
            transition: left 0.4s ease;
        }

        .btns button.next:hover::after {
            left: 0;
        }

        .btns button.prev::after {
            right: -40px;
            transition: right 0.4s ease;
        }

        .btns button.prev:hover::after {
            right: 0;
        }

    }
}




/****carousel End*****/


/**********Services Start************/

.service-section {
    background: linear-gradient(rgba(0, 71, 153, 0.95),
            rgba(0, 71, 153, 0.95)),
        url(../images/bg.png);
}

/* ---------- BASE TAB / NAV ---------- */
.glass-tab,
.service .nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.35s ease;
    border-radius: unset !important;
}

/* ---------- BOTTOM LINE ---------- */
.service .nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.527);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    opacity: 0.8;
}

/* ---------- HOVER (DESKTOP ONLY FEEL) ---------- */
.service .nav .nav-link:hover {
    color: #ffffff;
}

.service .nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* ---------- ACTIVE (GLASS EFFECT – LL ONLY) ---------- */
.glass-tab.active,
.service .nav .nav-link.active,
.accordion-button.glass-btn:not(.collapsed) {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Active bottom line */
.service .nav .nav-link.active::after {
    transform: scaleX(1);
}

/* ---------- ACCORDION CONTAINER ---------- */
.glass-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
}

/* ---------- ACCORDION BUTTON ---------- */
.glass-btn {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.75) !important;
    box-shadow: none !important;
}

/* Accordion arrow */
.accordion-button::after {
    filter: invert(1);
    transition: transform 0.3s ease;
}

/* Arrow rotate on open */
.accordion-button.glass-btn:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* ---------- CLEAN BOOTSTRAP FOCUS ---------- */
.nav-link:focus,
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* ---------- MOBILE: NO HOVER CONFUSION ---------- */
@media (max-width: 991.98px) {
    .service .nav .nav-link:hover::after {
        transform: scaleX(0);
    }
}

/**********Services End**************/


.our-vision .our-vision-box {
    position: relative;

    backdrop-filter: blur(6px);
    border-radius: 16px;
    transition: all .35s ease;
    overflow: hidden;
}

.our-vision .our-vision-box>a {
    text-decoration: none;
}

/* Bottom line */
.our-vision .our-vision-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    opacity: .7;
}

/* Hover */

.our-vision .our-vision-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -220%;
    background-color: var(--primary);
    transform: skewX(10deg);
    z-index: -1;
    transition: 0.8s top ease, 0.8s left ease;
}

.our-vision .our-vision-box:hover::before {
    top: 0;
    left: -50px;

}

/* Icon */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.our-vision .our-vision-box .icon-circle {
    background: rgba(0, 71, 153, 0.18);
    /* primary with opacity */
    border: 1px solid rgba(0, 71, 153, 0.45);
}


.our-vision .our-vision-box:hover .icon-circle {
    border: 1px solid rgba(255, 255, 255, 0.451);


}

.our-vision .our-vision-box:hover .icon-circle i {
    color: #ffffffbe !important;

}

/* Text stays clean */
.our-vision .our-vision-box * {
    transition: color .3s ease;
}

.our-vision .our-vision-box:hover * {
    color: #ffffff;
}

/*************Selected Box with Primary Colour*******************/
.our-vision .our-vision-box.selectedBox {
    background-color: var(--primary);
}

.our-vision .our-vision-box.selectedBox * {
    color: white !important;
}

.our-vision .our-vision-box.selectedBox .icon-circle {
    border: 1px solid rgba(255, 255, 255, 0.451);

}

.our-vision .our-vision-box.selectedBox .icon-circle i {
    color: #ffffffbe !important;
}

.our-vision .our-vision-box.our-vision-box.selectedBox::before {
    background-color: var(--primary-light);
}



/*******Vision Started**********/

.vision-item {
    position: relative;
    overflow: hidden;
}

.vision-img {
    position: relative;
    overflow: hidden;
}

.vision-img img {
    transition: transform 0.5s ease;
}

.vision-item:hover .vision-img img {
    transform: scale(1.2);
}

.vision-content {
    position: relative;
    width: 85%;
    margin: -80px auto 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.vision-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: height 0.5s ease;
    z-index: 1;
}

.vision-content-inner {
    position: relative;
    z-index: 2;
}

.vision-item:hover .vision-content::after {
    height: 100%;
}

.vision-item:hover .vision-content-inner p,
.vision-item:hover .vision-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: color 0.5s ease;
}

/*********programme**********/
/* Programmes Card Design */
.programme-item {
    position: relative;
    overflow: hidden;
}

/* Image */
.programme-img {
    position: relative;
    overflow: hidden;
}

.programme-img img {
    transition: transform 0.5s ease;
}

.programme-item:hover .programme-img img {
    transform: scale(1.2);
}

/* Content Card */
.programme-content {
    position: relative;
    margin: -80px auto 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    z-index: 2;
    overflow: hidden;
    border-radius: unset !important;
}

/* Hover Overlay */
.programme-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: height 0.5s ease;
    z-index: 1;
}

.programme-content-inner {
    position: relative;
    z-index: 2;
}

/* Hover Effect */
.programme-item:hover .programme-content::after {
    height: 100%;
}

.programme-item:hover .programme-content-inner p,
.programme-item:hover .programme-content-inner span {
    color: var(--bs-white) !important;
    transition: color 0.5s ease;
}


/*** Project End ***/


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(0, 71, 153, 0.95),
            rgba(0, 71, 153, 0.95)),
        url(../images/bg.png);
}

/* Masonry Container */
.masonry-container {
    column-count: 3;
    /* left, center, right */
    column-gap: 1.5rem;
}

@media (max-width: 992px) {
    .masonry-container {
        column-count: 2;
    }
}

/* @media (max-width: 576px) {
    .masonry-container {
        column-count: 1;
    }
} */

/* Cards */
.masonry-card {
    display: inline-block;
    /* required for columns */
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* Fixed Heights */
.masonry-card.large {
    height: 570px !important;
}

.masonry-card.medium {
    height: 269px !important;
}

.masonry-card.small {
    height: 190px !important;
}

/* Image fits card */
.masonry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.masonry-card .overlay {
    position: absolute;
    bottom: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    transform: translateY(20px);
    transition: bottom 0.4s ease, transform 0.4s ease;
    /* border-radius: 14px; */
}

.masonry-card:hover .overlay {
    bottom: 0;
    transform: translateY(0);
}

.overlay h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    opacity: 0;
}

.overlay p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    text-transform: capitalize;
    opacity: 0;
}

.masonry-card:hover>.badge-label-bottom {
    bottom: -50%;
}

.masonry-card:hover h4,
.masonry-card:hover p {
    opacity: 1;
}

.badge-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.badge-label-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), transparent);
    border-radius: 4px;
    z-index: 2;
    transition: bottom 0.4s ease;
}

@media (max-width: 991.98px) {

    .masonry-card,
    .masonry-card.large,
    .masonry-card.medium,
    .masonry-card.small {
        height: 269px !important;

    }

    .masonry-card>.badge-label-bottom {
        opacity: 0;
    }

    .masonry-card .overlay {
        opacity: 1;
        transform: translateY(0);
    }


}

/* Capabilities Section */
.capabilities-section {
    background-color: #5a0a36;
    /* Dark purple background */
    color: #ffffff;
    /* White text */
    padding: 80px 0;
    /* Top & bottom padding */
}

/* Section Heading */
.capabilities-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Capabilities List */
.capabilities-section ul {
    list-style: none;
    /* Remove bullets */
    padding: 0;
    margin: 0;
}

.capabilities-section ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.capabilities-section ul li::before {
    content: "\2022";
    /* Bullet character */
    color: #ffffff;
    /* White bullet */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Optional description paragraph */
.capabilities-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 30px;
}

/* Image Styling */
.capabilities-section img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 8px;
    /* Optional rounded corners */
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .capabilities-section .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .capabilities-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .capabilities-section img {
        margin-top: 20px;
    }
}


/**********Team***********/

.team-section {
    background: #fff;
}

.team-card {
    padding: 20px;
    height: 100%;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    &:before,
    &:after {
        content: "";
        width: 30px;
        height: 30px;
        position: absolute;
        top: 10px;
        left: 10px;
        box-shadow: -10px -10px var(--primary);
        transition: transform 0.1s ease;

    }

    &:before {
        top: unset;
        left: unset;
        bottom: 10px;
        right: 10px;
        box-shadow: 10px 10px rgba(0, 0, 0, 0.08);
    }
}

.team-card:hover {
    transform: scale(1.05);

    &::before,
    &::after {
        transform: scale(0.9);
    }
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #f1f1f1;
    transition: filter 0.5s ease, box-shadow 0.5s ease;
    /********Image hideen************/
    display: none;
    /********************/
}

.team-card:hover img {
    filter: grayscale(1);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.7);
    /* blue glow, adjust color if needed */
}


.team-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

.team-card .role {
    display: block;
    font-size: 0.8rem;
    color: #004799;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Social icons */
.team-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: #830b0b;
    font-size: 0.9rem;
}

.team-icons i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.team-icons i:hover {
    color: #004799;
}


/* ===============================
Donate Features Section
=============================== */

.donate-features {
    background: url("../images/donate-bg.jpg") right / cover no-repeat;
    padding: 4rem 0;
    position: relative;
    overflow: none;

    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        z-index: 1;
        /* behind buttons & content */
    }
}

.donate-features .features-wrapper {
    background: linear-gradient(180deg, rgb(255 255 255 / 48%), rgba(240, 242, 245, 0.6));
    border-radius: 1.25rem;
    max-width: 1100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.donate-features .donate-feature-card {

    border-radius: 1rem;
    padding: 1.5rem;
}

.donate-features .donate-icon-box {
    width: 36px;
    height: 36px;
    background-color: #1f2a44;
    color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.donate-features .donate-feature-image {
    max-width: 100%;
    object-fit: cover;
}


.donate-details-list li {
    margin-bottom: 1rem;
}

.donate-details-list .detail-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donate-details-list .detail-value {
    margin-left: 1.6rem;
    /* aligns under text, not bullet */
    color: #6c757d;
}

.donate-details-list .bullet {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.donate-details-list li.row .col-6 .detail-value {
    margin-left: 1.6rem;
    /* aligns with bullet */
}



.btn-square {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.397) !important;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Footer Base ***/
.footer {
    background: linear-gradient(rgba(0, 71, 153, 0.95), rgb(1 1 2 / 94%));
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

/* Override Bootstrap text utilities inside footer */
.footer .text-dark {
    color: #ffffff !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer Headings */
.footer h4 {
    color: #ffffff !important;
    font-weight: 600;
}

/* Footer Paragraphs */
.footer p {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Links */
.footer .btn.btn-link {
    display: block;
    padding: 0;
    margin-bottom: 8px;
    text-align: left;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .btn.btn-link i {
    opacity: 0.5;

}

/* Hover Effects */
.footer .btn.btn-link:hover {
    color: #ffffff !important;
    letter-spacing: 0.6px;
}

.footer .btn.btn-link:hover i {
    opacity: 1;
}

.footer .btn.btn-link:hover::before {
    color: #ffffff;
    transform: translateX(4px);
}

/* Icons */
/* .footer i {
    color: rgba(255, 255, 255, 0.85);
} */

/* Social Buttons */
.footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.footer .btn-outline-light::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    top: 0;
    left: -50px;
}

.footer .btn-outline-light:hover {
    background-color: unset;
    color: var(--primary) !important;
    border-color: #ffffff;
}

.footer .btn-outline-light:hover::before {
    left: 0;
}

/* Primary Button */
.footer .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
}

.footer .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Copyright */
.footer .container-fluid.text-center {
    opacity: 0.8;
}

.footer .container-fluid.text-center p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/***************************************/

@media (max-width: 767.98px) {
    .pagination-container {
        display: none !important;
    }

    .masonry-card .overlay {
        bottom: 0;
        transform: translateY(0);
    }

    .masonry-card>.badge-label-bottom {
        bottom: -50%;
    }

    .masonry-card h4,
    .masonry-card p {
        opacity: 1;
    }

    .masonry-container {
        column-count: 1;
    }

}