    .pricing-card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        padding: 35px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
        transition: .35s;
        border: 2px solid transparent;
        height: 100%;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    }

    .pricing-card-active {
        border-color: #0556dd;
        transform: scale(1.04);
    }

    .popular-ribbon {
        position: absolute;
        top: 18px;
        right: -45px;
        width: 180px;
        background: #0556dd;
        color: #fff;
        text-align: center;
        transform: rotate(45deg);
        padding: 8px 0;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .pricing-icon {
        width: 80px;
        height: 80px;
        margin: auto;
        border-radius: 50%;
        background: linear-gradient(135deg, #0556dd, #06b6d4);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        margin-bottom: 20px;
    }

    .pricing-price {
        margin: 15px 0;
    }

    .pricing-price .currency {
        font-size: 28px;
        vertical-align: top;
    }

    .pricing-price .amount {
        font-size: 52px;
        font-weight: 700;
        color: #0556dd;
    }

    .pricing-duration {
        color: #777;
    }

    .feature-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed #eee;
    }

    .feature-check {
        padding: 10px 0;
        color: #555;
    }

    .feature-check i {
        color: #10b981;
        margin-right: 10px;
    }

    .pricing-footer {
        margin-top: 30px;
    }

    .pricing-btn {
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 50px;
        border: 2px solid #0556dd;
        color: #0556dd;
        font-weight: 600;
        transition: .3s;
        text-decoration: none;
    }

    .pricing-btn:hover,
    .active-btn {
        background: #0556dd;
        color: #fff;
    }

    .footer-section {
        min-height: 350px;
        position: relative;
    }


    .footer-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .footer-video-bg video {

        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.35;
        filter: brightness(0.8);
        z-index: -1;
    }



    .footer-video-overlay {

        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            linear-gradient(rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.75));
        z-index: 1;

    }

    .footer-content {

        position: relative;

        z-index: 2;

        padding-top: 70px;
        padding-bottom: 50px;

    }



    /* Smooth fade animation */

    .footer-video-bg video {

        animation: footerVideoFade 3s ease-in-out;

    }


    @keyframes footerVideoFade {

        from {
            opacity: 0;
        }

        to {
            opacity: 0.35;
        }

    }

    .icon-submit {
        position: relative;
        min-width: 50px;
    }

    .btn-loader {
        display: none;
    }

    .btn-loader.d-none {
        display: none !important;
    }

    .btn-loader:not(.d-none) {
        display: inline-block;
    }

    .video-popup {

        position: fixed;

        right: 20px;

        bottom: 20px;

        width: 340px;

        background: #fff;

        border-radius: 18px;

        overflow: hidden;

        box-shadow: 0 20px 60px rgba(0, 0, 0, .25);

        z-index: 999999;

        transform: translateX(420px);

        transition: .6s;

    }

    .video-popup.show {

        transform: translateX(0);

    }

    .popup-close {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 20;

        width: 36px;
        height: 36px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: none;
        border-radius: 50%;

        background: #dc3545;
        color: #fff;

        cursor: pointer;
        padding: 0;
        line-height: 1;

        transition: all .3s ease;
    }

    .popup-close i {
        font-size: 18px;
        line-height: 1;
    }

    .popup-close:hover {
        background: #bb2d3b;
        transform: scale(1.08);
    }

    .popup-close:disabled {

        opacity: .6;

        cursor: not-allowed;

    }

    .video-popup video {

        display: block;

        width: 100%;

    }

    @media(max-width:768px) {

        .video-popup {

            width: 95%;

            right: 10px;

            left: 10px;

            bottom: 10px;

        }

    }

    .main-menu li a.active {
        color: #eb781b;
        font-weight: 600;
        position: relative;
    }

    .main-menu li a.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 2px;
        background: #eb781b;
    }

    .video-ad-box{
        width:100%;
        max-width:400px;     /* Change manually */
        margin:20px auto;
        border-radius:12px;
        overflow:hidden;
        background:#000;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .video-ad{
        display:block;
        width:100%;
        height:auto;        /* Change manually */
        object-fit:cover;    /* cover | contain | fill */
    }