    .pricing-cards-section {
        padding: 40px 0; margin-top: 48px;
    }
    .pricing-cards-main-container {
        position:relative; overflow:visible; z-index:5; width:100%; margin: 36px auto 0;
    }
    .pricing-cards-container {
        overflow:hidden; background:#f3f4f6;
    }
    .pricing-cards-viewport {
        display:flex; transition:transform 0.5s ease;
    }
    .pricing-card-main-container {
        flex:0 0 25%; box-sizing:border-box; padding:0 10px;
    }
    .pricing-card-container {
        background:#ffffff; display:flex; flex-direction:column; padding:32px 24px; border-radius: 6px; border:1px solid #e2e8f0; box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    }

    .pricing-card-header-container {
        display:flex; flex-direction:column; padding-bottom: 16px; border-bottom:1px solid #e2e8f0;
    }
    .pricing-card-header-text {
        font-size: 24px; line-height: 32px; font-weight: 500;
    }
    .pricing-card-header-description {
        font-size: 12px; line-height: 16px; color: #1a202c;
    }


    .pricing-card-body-container {
        display:flex; flex-direction:column; gap: 16px; border-bottom: 1px solid #e2e8f0; padding: 16px 0;
    }
    .pricing-card-badge {
        display: flex; align-items: center; justify-content: center; background-color: #dbeafe; font-size: 12px; line-height: 16px; font-weight: 600; color: rgb(0,38,113); padding: 6px 0; border-radius: 4px;
    }


    .pricing-card-price-container {
        display: flex; flex-direction: column; gap: 4px;
    }
    .pricing-card-price-figure {
        position:relative; display:inline-block; color:rgb(0,38,113);
    }
    .pricing-card-price-currency {
        position:absolute; top:4px; left:2px; font-size:18px; font-weight:600; line-height:1;
    }
    .pricing-card-price-amount {
        font-size:42px; font-weight:600; line-height:1; padding-left:12px;
    }
    .pricing-card-price-old {
        font-size:16px; font-weight:500; line-height:1; text-decoration: line-through; color:#718096;
    }
    .pricing-card-price-note {
        font-size:12px; line-height: 16px; color: #1a202c;
    }


    .pricing-card-button-container {
        display: flex; flex-direction: column; gap: 2px;
    }
    .pricing-card-button {
        position: relative; overflow: hidden; transition: background-color .25s ease, transform .18s ease, box-shadow .18s ease; will-change: transform; width: 100%; background-color: rgb(0,38,113); border: 1px solid #e2e8f0; border-radius: 4px; font-size: 12px; line-height: 16px; padding: 8px 0; color: #ffffff;
    }

    /*.pricing-card-button::after {*/
    /*    content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%); transform: translateX(-120%); transition: transform 0.8s ease; pointer-events: none;*/
    /*}*/
    /*.pricing-card-button:hover::after {*/
    /*    transform: translateX(120%);*/
    /*}*/

    .pricing-card-button::after {
        content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0)   0%, rgba(255,255,255,.06) 42%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 58%, rgba(255,255,255,0)   100%); transform: translateX(-120%); transition: transform 1s ease; pointer-events: none;
    }
    .pricing-card-button:hover::after {
        transform: translateX(140%);
    }
    .pricing-card-button:hover {
        background-color: rgba(0, 38, 113, 0.9); transform: scale(1.010); box-shadow: 0 6px 14px rgba(0,38,113,.25);
    }

    .pricing-card-button:active{
        transform: scale(0.995); box-shadow: 0 4px 10px rgba(0,38,113,.2);
    }


    .pricing-card-footer-container {
        display:flex; flex-direction:column; gap: 16px; padding: 16px 0;
    }
    .pricing-card-footer-title {
        font-size: 14px; line-height: 20px; font-weight: 500; color: #1a202c;
    }
    .pricing-card-footer-content-container {
        display: flex; flex-direction: column; gap: 8px;
    }
    .pricing-card-footer-feature-container {
        display: flex; align-items: center; gap: 8px;
    }
    .pricing-card-footer-feature-icon {
        font-size: 12px;
    }
    .pricing-card-footer-feature-text {
        font-size: 12px; line-height: 16px;
    }
    .pricing-card-footer-feature-bold-text {
        font-weight: 600;
    }

    .pricing-card-prev-button {
        position:absolute; top:50%; left:-48px; transform:translateY(-50%); cursor:pointer; z-index:10; border: none; background-color: transparent;
    }
    .pricing-card-next-button {
        position:absolute; top:50%; right:-48px; transform:translateY(-50%); cursor:pointer; z-index:10; border: none; background-color: transparent;
    }

    .pricing-card-prev-hit {
        position:absolute; top:0; bottom:0; left:-140px; width:140px; z-index:9; cursor:pointer;
    }
    .pricing-card-next-hit {
        position:absolute; top:0; bottom:0; right:-140px; width:140px; z-index:9; cursor:pointer;
    }



    .pricing-card-section-title-container {
        width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px;
    }
    .pricing-card-section-title-text {
        text-align: center; font-size: 42px; font-weight: 600;
    }
    .pricing-card-section-title-description {
        text-align: center; font-size: 19px;
    }

    @media (max-width: 768px) {
        .pricing-card-section-title-text {
            font-size: 36px;
        }
        .pricing-card-section-title-description {
            font-size: 16px;
        }
        .pricing-cards-viewport {
            flex-direction: column; gap: 16px;
        }
    }
            .software-section {
            margin-bottom: 16px;
        }

        .section-title {
            color: #002671;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #002671;
        }

        .software-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            overflow: hidden;
            width: 100% !important;
        }

        .software-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #002671;
        }

        .software-header {
            background-color: white;
            padding: 1rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .software-name {
            font-size: 16px;
            font-weight: 600;
            color: #002671;
            margin-bottom: 5px;
        }

        .software-type {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .software-body {
            padding: 1rem;
            background-color: white;
        }

        .badge-category {
            font-size: 14px;
            color: #000;
        }

        @media (max-width: 768px) {
            .software-card {
                margin-bottom: 1rem;
            }
        }

        /* Global Animations */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        .slide-up {
            animation: slideUp 0.5s ease-out;
        }

        .scale-hover {
            transition: transform 0.3s ease;
        }

        .scale-hover:hover {
            transform: scale(1.05);
        }

        .rotate-hover {
            transition: transform 0.3s ease;
        }

        .rotate-hover:hover {
            transform: rotate(360deg);
        }

        .bounce-hover {
            transition: transform 0.3s ease;
        }

        .bounce-hover:hover {
            transform: translateY(-5px);
        }

        .glow-hover {
            transition: box-shadow 0.3s ease;
        }

        .glow-hover:hover {
            box-shadow: 0 0 15px rgba(0, 38, 113, 0.3);
        }

        .text-glow-hover {
            transition: text-shadow 0.3s ease;
        }

        .text-glow-hover:hover {
            text-shadow: 0 0 8px rgba(0, 38, 113, 0.5);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .hover-glow {
            transition: box-shadow 0.3s ease;
        }

        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(0, 38, 113, 0.2);
        }

        .hover-underline {
            position: relative;
        }

        .hover-underline::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #002671;
            transition: width 0.3s ease;
        }

        .hover-underline:hover::after {
            width: 100%;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-animate {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-animate::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-animate:hover::after {
            width: 300px;
            height: 300px;
        }

        .img-hover {
            transition: transform 0.3s ease;
        }

        .img-hover:hover {
            transform: scale(1.05);
        }

        .nav-link-hover {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link-hover::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #002671;
            transition: width 0.3s ease;
        }

        .nav-link-hover:hover::after {
            width: 100%;
        }

        .feature-card {
            background: white;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .icon-wrapper i {
            font-size: 24px;
        }

        .feature-card:hover .icon-wrapper {
            transform: rotate(360deg);
        }

        .feature-card h5 {
            margin-top: auto;
        }

        .feature-card p {
            margin-bottom: 0;
        }

        .rotate-hover {
            transition: transform 0.3s ease;
        }

        .rotate-hover:hover {
            transform: rotate(360deg);
        }

        .server-card {
            transition: all 0.3s ease-in-out;
        }

        .server-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            border-color: #003399 !important;
            background-color: #e2e8f0;
        }

        #serversCarousel,
        #serversCarousel1 {
            position: relative;
            padding: 20px 0;
        }

        #serversCarousel .carousel-control-prev,
        #serversCarousel1 .carousel-control-prev,
        #serversCarousel .carousel-control-next,
        #serversCarousel1 .carousel-control-next {
            width: 48px;
            height: 48px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            opacity: .5;
        }

        #serversCarousel .carousel-control-prev,
        #serversCarousel1 .carousel-control-prev {
            left: -50px;
        }

        #serversCarousel .carousel-control-next,
        #serversCarousel1 .carousel-control-next {
            right: -50px;
        }

        #serversCarousel .carousel-control-prev-icon,
        #serversCarousel .carousel-control-next-icon,
        #serversCarousel1 .carousel-control-prev-icon,
        #serversCarousel1 .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            filter: brightness(0);
        }

        #serversCarousel .carousel-item,
        #serversCarousel1 .carousel-item {
            padding: 10px;
        }

        #serversCarousel .panel-card,
        #serversCarousel1 .panel-card {
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        #serversCarousel .panel-card:hover,
        #serversCarousel1 .panel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 38, 113, 0.2);
        }

        @media (max-width: 768px) {

            #serversCarousel .carousel-control-prev,
            #serversCarousel1 .carousel-control-prev {
                left: 0;
            }

            #serversCarousel .carousel-control-next,
            #serversCarousel1 .carousel-control-next {
                right: 0;
            }
        }

        @media (max-width: 768px) {
            #serversCarousel1 .carousel-control-prev {
                left: 0;
            }

            #serversCarousel1 .carousel-control-next {
                right: 0;
            }
        }