
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(30px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .hero-gradient {
            background: linear-gradient(to top, #175AF2 0%, #6920D9 100%);
        }

        .media-gradient {
            background: linear-gradient(to bottom, #6920D9 2%, #175AF2 100%);
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .default_content {
            /* margin: 0; */
        }
        .default_content span, 
        .default_content p {
            margin-bottom: 20px;
        }

        .gradient-c1{
            background: linear-gradient(to bottom, #4e1eaf, #1943c0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .add-background-leaf:before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/add-background-leaf.png');
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            z-index: 2;
        }


        .bg_articles_home{
            background: url('../images/bg-article-home.jpg');
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hm-gradient-c2{
            background: linear-gradient(to top, #175AF2 2%, #6920D9 100%);
            z-index: 1;
        }
        .hm-gradient-c2:after{
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 15%;
            background-color: #fff;
            z-index: 2;
        }
        .customs-shadow:before{
            box-sizing: border-box;
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 25%;
            z-index: 2;
            background: linear-gradient(180deg, rgba(23, 90, 242, 0) 0%, #6920D9 132.81%);
            border-radius: 0px 0px 12px 12px;
        }

        .head_home{
            height: 10vh;
        }
        .head_home .hero-gradient{
            background: transparent;
            z-index: 1;
        }

        .bg-gradient-customsQuestion{
            background: linear-gradient(to bottom, #6920D9 2%, #175AF2 100%);
        }
        
        .customAffixHeader{
            background: linear-gradient(to top, rgba(23, 90, 242, 0.9) 2%, rgba(105, 32, 217, 0.9) 100%) !important;
        }

        @media (max-width: 768px) {
            .head_home{
                height: 7vh;
            }
        }

        /* Vanilla JS Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            /* Smooth crossfade */
            transition: opacity 0.9s ease;
            transform: none;
            will-change: opacity;
            z-index: 0;
        }

        .slide.active {
            opacity: 1;
            transform: none;
            z-index: 1;
        }

        /* Optional directional classes can be added if needed later */

        .slider-nav {
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slider-nav:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .slider-dots .dot.active {
            background-color: white !important;
            transform: scale(1.2);
        }

        .slider-dots .dot {
            cursor: pointer;
        }

        /* Fade transition alternative */
        .slider-container.fade .slide {
            transform: none;
        }

        .slider-container.fade .slide.active {
            transform: none;
        }

        /* Touch/Swipe support styles */
        .slider-wrapper.dragging {
            cursor: grabbing;
        }

        .slider-wrapper.dragging .slide {
            transition: none;
        }