/********** Template CSS **********/
:root {
    --primary: #4294E3;
    --secondary: #8F12FD;
    --light: #F0F6FF;
    --dark: #262B47;
}


/*** 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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);

}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);

}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, #2e5c79, #bac1c7);
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.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;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(90deg, #bfc1c4, #7a7f87);
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 17px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
    margin-left: 5px;
}

/* .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
} */

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 10px;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    width: 130% !important;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 70px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    /* .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    } */

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 9rem 0 91px 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), #a4abb2);
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    /* background: url(../images/car1.png); */
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        /* url(../img/bg-top.png), */
        linear-gradient(to bottom right, #4b7592, #a2aab0);
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.text-gradient-img {
    background: linear-gradient(90deg,
            #4A00E0,
            /* Indigo */
            #8E2DE2,
            /* Violet */
            #00C9FF,
            /* Sky Blue */
            #92FE9D,
            /* Light Green */
            #FEE140,
            /* Yellow */
            #FA709A
            /* Pink */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
}

/* Mobile: Center align */
@media (max-width: 768px) {
    .activate_device_button {
        justify-content: center !important;
        margin-top: 20px;
    }
}

.btn.text-secondary {
    background-color: transparent;
    /* normal state */
    /* /* border: 2px solid #6c757d;           */
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* smooth hover animation */
}

.btn.text-secondary:hover {
    background-color: #7e8186;
    /* change background on hover */
    color: #fff !important;
    /* change text color */
}

.btn.text-dark {
    background-color: transparent;
    /* normal state */
    /* /* border: 2px solid #6c757d;           */
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* smooth hover animation */
}

.btn.text-dark:hover {
    background-color: #7e8186;
    /* change background on hover */
    color: #fff !important;
    /* change text color */
}



/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.support-img {
    position: fixed;
    width: 70px;
    bottom: 110px;
    right: 10px;
    z-index: 1000;
}

/* fotter css */
.footer_contact_color h4 {
    color: #fff;
    font-size: 25px;
}

.footer_contact_color a {
    color: #F0F6FF;
    font-size: 18px;
    line-height: 35px;
}

.footer_contact_color a:hover {
    color: black;

}

.footer_contact_color ul li {
    list-style-type: none;
}

.footer_contact_color ul li img {
    width: 30px;
}

.footer_contact_color ul li img {
    margin-left: -30px;
}

.footer_contact_color ul li a {
    margin-left: 8px;
}

@media (max-width: 480px) {
    .top-logo img {
        margin: -20px 0px;
    }

    .section-hr {
        margin-top: 100px;

    }
}

/* FAQ Section Styling */

.navbar .nav-link {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* .navbar .nav-link.active {
  color: #ff6a00 !important;
} */

/* .navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ee0979); 
  border-radius: 2px;
} */
/* home page text  */
.gradient-text {
    background: linear-gradient(90deg, #bfc1c4, #7a7f87);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 14px 10 rgba(0, 0, 0, 0.25);
    border-radius: 10px;


    /* animation */
    animation: gradientMove 4s ease infinite,
        shadowPulse 2s ease-in-out infinite;

    /* Shadow animation */
    @keyframes shadowPulse {
        0% {
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }

        50% {
            text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
        }

        100% {
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }
    }

}

.logo-text {
    color: #1e5fa8;
    /* FILL COLOR (blue like logo) */
    font-weight: 900;

    -webkit-text-stroke: 2px #0b1c2d;
    /* DARK BORDER */

    /* 3D depth shadow */
    text-shadow:
        0 2px 0 #0b1c2d,
        0 4px 8px rgba(0, 0, 0, 0.35);
}


/* home page text */
/* about us tc start */
.feature-card {
    /* min-height: 50vh; */
    align-items: center;
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.feature-card.light {
    background: #443c3c;
}

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

.feature-img {
    object-fit: contain;
    max-height: 130px;
}

.btn-primary-text {
    color: #000;
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);
    border-color: black;
}

.btn-primary-text:hover {
    color: white;
}

/* about us tv mobile end */



/* OR CODE */
/* 
/* CARD STYLE */
.feature-card-qr {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);

    border-radius: 20px;
    padding: 40px;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.feature-card-qr.light {
    background: #ffffff;
}

.feature-card-qr:hover {
    transform: translateY(-10px);
    box-shadow: 0 70px 70px rgba(0, 0, 0, 0.25);
}

/* IMAGES */
.feature-img-qr {
    max-height: 200px;
    object-fit: contain;
    border-radius: 15px;
    padding: 15px;
    background-color: white;
}

.moderns-feature-qr {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: whitesmoke;
}

/* DOTTED DIVIDER */
.qr-divider {
    width: 2px;
    height: 160px;
    border-left: 2px dotted #000;
    opacity: 0.7;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .qr-divider {
        width: 100%;
        height: 2px;
        border-left: none;
        border-top: 2px dotted #000;
        margin: 20px 0;
    }
}

/* OR CODE */

/* tv mobile lappy start */
/* CARD */
.feature-card-tv {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);
    width: 140%;
    /* ✅ FIX */
    border-radius: 20px;
    padding: 40px;
    transition: 0.4s;
}

/* HOVER */
.feature-card-tv:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.feature-img-tv-m {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);

    width: 100%;
    max-width: 900px;
    /* 🔥 INCREASE CARD WIDTH */

    min-height: 280px;
    /* 🔥 INCREASE CARD HEIGHT */

    border-radius: 28px;
    /* smoother look */
    padding: 60px;
    /* 🔥 MORE INNER SPACE */
    transition: 0.4s;
}

/* SECTION CENTER */
.moderns-feature-tv {
    min-height: 70vh;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    background-color: whitesmoke;
}

/* DOTTED DIVIDER */
.qr-divider {
    width: 2px;
    height: 140px;
    border-left: 2px dotted #000;
    opacity: 0.7;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .feature-card-tv {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        width: 100%;
    }

    .qr-divider {
        width: 100%;
        height: 2px;
        border-left: none;
        border-top: 2px dotted #000;
        margin: 20px 0;
    }

    .feature-img-tv-m {
        margin-top: 15px;
    }
}

/* tv mobile lappy end */

/* customer plan start */
.customer-text {
    background: linear-gradient(to bottom right, #3a7194, #a9aeb3, #1b5881);
    box-shadow: 0 70px 70px #8e8f8f;

}

.customer-text p {
    color: hsl(0, 0%, 99%);
}

/* customer plan end */