    /* Services Carousel Custom Styling */
    .services-carousel-v2 .slick-prev,
    .services-carousel-v2 .slick-next {
        width: 45px;
        height: 45px;
        background-color: #fff !important;
        border-radius: 50%;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .services-carousel-v2 .slick-prev {
        left: -55px;
    }

    .services-carousel-v2 .slick-next {
        right: -55px;
    }

    .services-carousel-v2 .slick-prev:before,
    .services-carousel-v2 .slick-next:before {
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 18px;
        opacity: 1;
        color: var(--charity-green);
    }

    .services-carousel-v2 .slick-prev:before {
        content: '\f053';
    }

    .services-carousel-v2 .slick-next:before {
        content: '\f054';
    }

    .services-carousel-v2 .slick-dots li button:before {
        color: var(--charity-green);
        font-size: 12px;
    }

    .services-carousel-v2 .slick-dots li.slick-active button:before {
        color: var(--secondary-color);
    }

    @media (max-width: 1200px) {
        .services-carousel-v2 .slick-prev {
            left: 0;
        }

        .services-carousel-v2 .slick-next {
            right: 0;
        }
    }

    /* News Card Redesign Styling */
    .news-card-premium {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #ced4da;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .news-card-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .news-card-img-wrapper {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .news-img-v4 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card-premium:hover .news-img-v4 {
        transform: scale(1.05);
    }

    .news-date-badge-premium {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ca1111;
        color: #fff;
        padding: 8px 15px;
        z-index: 2;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .news-date-badge-premium span:first-child {
        font-size: 1.6rem;
        line-height: 1;
        font-weight: 800;
    }

    .news-date-badge-premium span:last-child {
        font-size: 0.75rem;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .news-card-body-premium {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card-title-premium {
        font-family: var(--font-family-heading);
        color: var(--charity-green);
        font-weight: 800;
        font-size: 1.35rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: left;
    }

    .news-card-text-premium {
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
        text-align-last: left;
        font-size: 0.8rem;
    }

    .news-card-divider {
        height: 1px;
        background: #eee;
        width: 100%;
        margin-bottom: 20px;
    }

    .btn-news-pill-dark {
        background: #444;
        color: #fff !important;
        padding: 10px 28px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-news-pill-dark:hover {
        background: #222;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* Service Card Premium Hover Effects */
    .service-card-v2 {
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card-v2 .card-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .service-card-v2 .service-title {
        font-family: var(--font-family-heading);
        font-weight: 800;
        color: var(--charity-green);
        margin-bottom: 12px;
        font-size: 0.95rem;
        text-align: center;
    }

    .service-card-v2 .service-description {
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
        text-align-last: left;
        font-size: 0.8rem;
    }

    .service-card-v2:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        border-color: var(--charity-green);
    }

    .card-img-wrapper {
        overflow: hidden;
        border-radius: 15px 15px 0 0;
        background: #f4f7f6;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 220px;
    }

    .card-img-wrapper::before {
        content: '\f06b';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 3rem;
        color: rgba(26, 54, 93, 0.08);
        position: absolute;
        z-index: 1;
    }

    .card-img-wrapper img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-img-wrapper img {
        transition: transform 0.6s ease;
    }

    .service-card-v2:hover .card-img-wrapper img {
        transform: scale(1.1) rotate(1deg);
    }

    /* --- Beacon of Hope Styles --- */
    .beacon-hope-section {
        margin-top: 2rem;
    }

    /* Floating Animation for Icons */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .feature-point {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        transition: transform 0.3s ease;
    }

    .feature-point:hover {
        transform: translateX(5px);
    }

    .icon-circle-blue {
        width: 50px;
        height: 50px;
        background-color: #f0f2f5;
        /* Subtle Grey */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        /* Sunrise Gold icon */
        font-size: 18px;
        margin-right: 12px;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        animation: float 4s ease-in-out infinite;
    }

    .feature-point-text {
        font-weight: 800;
        font-size: 1.05rem;
        color: #111;
        letter-spacing: -0.5px;
    }

    .btn-red-pill {
        background-color: #d32f2f;
        /* Premium Red */
        color: #fff !important;
        border-radius: 50px;
        padding: 8px 25px;
        font-weight: 700;
        text-transform: none;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        margin-top: 0;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
        height: 46px;
    }

    .btn-red-pill:hover {
        background-color: #b71c1c;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    }

    .btn-donate-now {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
        /* Sunrise Gold */
        color: #fff !important;
        border-radius: 50px;
        padding: 8px 30px;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
        height: 46px;
    }

    .btn-donate-now:hover {
        background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    }

    .btn-charcoal-pill {
        background-color: #1565c0;
        color: #fff !important;
        border-radius: 50px;
        padding: 10px 28px;
        font-weight: 700;
        font-size: 0.9rem;
        display: inline-block;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(21, 101, 192, 0.2);
    }

    .btn-charcoal-pill:hover {
        background-color: #0d47a1;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
        color: #fff !important;
    }

    .hover-bg-light:hover {
        background-color: #f8f9fa;
        border-color: #dee2e6 !important;
    }

    .icon-sm {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .smaller {
        font-size: 0.75rem;
    }

    /* --- Clean Split Social Section --- */
    /* --- Minimalist Social Wall with Background --- */
    .social-stories-section {
        background: linear-gradient(to bottom, #ffffff, #f8fafc);
        padding: 100px 0 !important;
        border-bottom: 2px solid #e2e8f0;
    }

    .social-live-wall {
        max-width: 800px;
        margin: 0 auto;
    }

    .fb-clean-embed {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        border: 1px solid #f0f0f0;
    }

    .social-link-minimal {
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.75rem;
        color: #888;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link-minimal:hover {
        color: var(--primary-color);
    }

    .fb-timeline-simple {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        border: 1px solid #eee;
        overflow: hidden;
    }

    .social-icon-box {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #f8f9fa;
        color: var(--primary-color);
        transition: all 0.3s ease;
        text-decoration: none;
        border: 1px solid #eee;
    }

    .social-icon-box:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
    }

    /* Testimonials Redesign (Matches provided image) */
    /* --- WOW Testimonials Design --- */
    .testimonials-section {
        background: #f8fafd;
        /* Soft light-blue grey shade */
        position: relative;
        padding: 60px 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    /* Fix for Slick Carousel clipping shadows/borders */
    .testimonials-carousel .slick-list {
        padding: 20px 0 40px 0 !important;
        margin: 0 0 -40px 0 !important;
        overflow: hidden !important;
    }

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: rgba(26, 54, 93, 0.03);
        border-radius: 50%;
        filter: blur(50px);
    }

    .testimonials-section {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 40px 0 !important;
        /* Slightly reduced */
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Quote */
    .testimonials-section::before {
        content: '\f10d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 5%;
        font-size: 15rem;
        color: rgba(0, 75, 135, 0.03);
        z-index: 0;
    }

    .testimonial-card-premium {
        background: #ffffff;
        border-radius: 20px;
        padding: 60px 30px 35px;
        margin: 20px 15px;
        position: relative;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        height: calc(100% - 40px);
    }

    .testimonial-card-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .author-avatar-v2 {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid #fff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        z-index: 5;
        background: #eee;
    }

    .author-avatar-v2 i {
        font-size: 2.5rem;
        color: #fff;
        line-height: 100px;
    }

    .card-quote-icon {
        color: #f57c00;
        font-size: 2.5rem;
        margin-bottom: 20px;
        display: block;
        line-height: 1;
    }

    .testimonial-text-v2 {
        font-size: 1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
        font-style: normal;
        flex-grow: 1;
        display: block;
        text-align: center;
    }

    .author-info-v2 {
        margin-top: auto;
        padding-top: 20px;
    }

    .author-name-v2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 2px;
        color: #e53935 !important;
    }

    .author-meta-v2 {
        color: #333;
        font-size: 0.9rem;
        font-weight: 500;
        display: block;
        text-align: center;
    }

    /* CTA Impact Section */
    .cta-impact-section {
        background: linear-gradient(rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.95)), url('../../images/Jimmy-Centre.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 25px 0;
        text-align: center;
        color: #fff;
    }

    .cta-impact-section h2 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .cta-impact-section .cta-divider {
        width: 50px;
        height: 3px;
        background: #ffc107;
        margin: 0 auto 10px;
        border-radius: 2px;
    }

    .cta-impact-section p {
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 15px;
        opacity: 0.9;
        line-height: 1.5;
    }

    .cta-btn {
        padding: 10px 30px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 5px;
    }

    .cta-btn-yellow {
        background: #ffc107;
        color: #1a1a1a !important;
        border: 2px solid #ffc107;
    }

    .cta-btn-yellow:hover {
        background: #ffca28;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        color: #000 !important;
    }

    .cta-btn-white {
        background: #ffffff;
        color: #1a1a1a !important;
        border: 2px solid #ffffff;
    }

    .cta-btn-white:hover {
        background: transparent;
        color: #ffffff !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 768px) {
        .cta-impact-section h2 {
            font-size: 1.8rem;
        }

        .cta-btn {
            width: 100%;
            justify-content: center;
        }

        .testimonials-section {
            padding: 40px 0 !important;
        }

        .testimonial-card-premium {
            padding: 50px 20px 30px;
            margin: 15px 5px;
        }

        .testimonial-text-v2 {
            font-size: 0.95rem;
        }

        .author-avatar-v2 {
            width: 80px;
            height: 80px;
            top: -40px;
        }

        .author-avatar-v2 i {
            font-size: 2rem;
            line-height: 80px;
        }
    }

    /* Slider Dots Customization */
    .testimonials-carousel .slick-dots {
        bottom: -60px;
    }

    .testimonials-carousel .slick-dots li {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }

    .testimonials-carousel .slick-dots li button {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .testimonials-carousel .slick-dots li button:before {
        content: '';
        width: 10px;
        height: 10px;
        background: #cbd5e0;
        border-radius: 50%;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .testimonials-carousel .slick-dots li.slick-active button:before {
        background: var(--primary-color);
        transform: scale(1.3);
    }

    .testimonials-carousel {
        padding-bottom: 30px;
        position: relative;
    }

    .testimonials-carousel .slick-dots {
        bottom: -15px;
    }

    .testimonials-carousel .slick-dots li button:before {
        font-size: 10px;
        color: var(--primary-color);
        opacity: 0.3;
    }

    .testimonials-carousel .slick-dots li.slick-active button:before {
        opacity: 1;
        color: var(--primary-color);
    }

    .testimonials-carousel .slick-track {
        display: flex !important;
        align-items: stretch !important;
    }

    .testimonials-carousel .slick-slide {
        height: auto !important;
        display: flex !important;
    }

    .testimonials-carousel .slick-slide>div {
        width: 100%;
        display: flex !important;
    }

    /* --- Decorative Image Backdrop --- */
    .intro-media-container {
        position: relative;
        padding: 20px;
    }

    .about-image-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        height: 85%;
        background-color: #f1f3f5;
        border-radius: 20px;
        z-index: 0;
    }

    .about-media-wrapper {
        position: relative;
        z-index: 1;
    }

    /* --- Uniform Section Styling --- */
    .bg-premium-pattern {
        background-color: #ffffff;
    }

    .ls-1 {
        letter-spacing: 1px;
    }

    .ls-3 {
        letter-spacing: 3px;
    }

    /* Reset title shadows etc to match simple professional look */
    .section-title h2 {
        color: var(--charity-green) !important;
    }

    /* ... Existing Sliders ... */
    .hero-carousel {
        position: relative;
    }



    .hero-slider-img {
        height: 650px !important;
        width: 100% !important;
        object-fit: cover !important;
        transition: transform 10s ease;
    }

    .carousel-inner,
    .carousel-item {
        height: 650px !important;
    }

    .carousel-item.active .hero-slider-img {
        transform: scale(1.1);
    }

    .carousel-caption-centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 10;
        color: #fff;
        padding: 0 50px;
        transition: opacity 0.4s ease;
    }

    /* Prevent overlapping text during transitions */
    .carousel-item:not(.active) .carousel-caption-centered {
        opacity: 0;
        pointer-events: none;
    }

    .carousel-item.active .carousel-caption-centered {
        opacity: 1;
    }

    .slider-title {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 25px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), -2px -2px 10px rgba(0, 0, 0, 0.8);
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .slider-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    }

    .slider-btn {
        padding: 15px 40px;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .carousel-indicators [data-bs-target] {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        margin: 0 10px;
        background-color: #fff;
        border: 2px solid var(--charity-green);
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .carousel-indicators .active {
        background-color: var(--charity-green);
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 10px rgba(68, 160, 54, 0.5);
    }

    /* Premium Navigation Arrows */
    .carousel-control-prev,
    .carousel-control-next {
        width: 80px;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background-size: 50% 50%;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
        background-color: var(--charity-green);
        border-color: #fff;
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(68, 160, 54, 0.4);
    }

    @media (max-width: 991px) {
        .hero-slider-img {
            height: 500px !important;
        }

        .carousel-inner,
        .carousel-item {
            height: 500px !important;
        }

        .slider-title {
            font-size: 2.2rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 45px;
            height: 45px;
        }
    }

    @media (max-width: 768px) {
        .hero-slider-img {
            height: 450px !important;
        }

        .carousel-inner,
        .carousel-item {
            height: 450px !important;
        }

        .slider-title {
            font-size: 1.5rem;
        }

        .slider-subtitle {
            font-size: 0.9rem;
        }

        .carousel-caption-centered {
            width: 90%;
        }
    }

    /* Welcome Popup Close Button Customization */
    .welcome-popup-swal .swal2-close {
        background-color: #ffffff !important;
        /* Premium White Background */
        color: #000000 !important;
        /* Black Icon */
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        top: 15px !important;
        right: 15px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        z-index: 999;
    }

    .welcome-popup-swal .swal2-close:hover {
        background-color: #f8f9fa !important;
        color: #000000 !important;
        transform: scale(1.1) rotate(90deg) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    }

    /* Premium Button Style for Welcome Popup */
    .welcome-popup-swal .swal2-confirm {
        background: var(--primary-color) !important;
        box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2) !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }

    .welcome-popup-swal .swal2-confirm:hover {
        background: var(--primary-hover) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3) !important;
    }

    /* Share Modal Close Button consistency */
    .share-swal-popup .swal2-close {
        background-color: #ffffff !important;
        color: var(--charity-green) !important;
        border-radius: 50% !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .share-swal-popup .swal2-close:hover {
        background-color: #f8f9fa !important;
        color: var(--primary-hover) !important;
        transform: scale(1.1) rotate(90deg) !important;
    }