/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #d9dbe7;
    --dark: #000000;
    --white: #ffff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.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;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, .85); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


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

.feature-item {
    min-height: 435px;
    /* adjust as needed */
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* center content */
    text-align: center;
}

.feature-item h4 {
    color: rgb(78 137 172);
}

/* .feature-item img{
    width: 80%;
    height: 100%;
} */
.feature-item img {
    width: 100%;
    height: 242px;
    /* Set same height for all */
    object-fit: cover;
    /* Keep full image visible */
    object-position: center;
}

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

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

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

.footer_contact_color a:hover {
    color: rgb(94 186 253);
}

.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 */

.footer-img {
    background-image: url('../images/fotter.png');
    background-size: cover;
    /* make it cover the area */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* avoid repeating */
    box-shadow: 2px 2px 15px #061425;
}

.new-nav a {
    color: white;
}

.pname {
    background: -webkit-linear-gradient(#2298fe, #0f4bb7, #a269eb, #715ee3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 700 normal 2.5em 'tahoma';

}

.carousel-item img {
    height: 100vh;
    /* Full-screen height */
    object-fit: cover;
    /* Keeps image proportional */
    filter: brightness(70%);
    /* Darken image for better text contrast */
}

.carousel-caption {
    bottom: 20%;
}

.btn-primary {
    background-color: #4e89ac;
    border: none;
}

.btn-primary:hover {
    background-color: #366c85;
}

.carousel-item img {
    height: 100vh;
    /* full screen height */
    object-fit: cover;
    /* keeps image centered & proportional */
    object-position: center center;
    /* ensures center alignment */
    filter: brightness(70%);
    /* darken for text readability */
}

.carousel-caption {
    bottom: 30%;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

@media (min-width: 992px) {
    .carousel-caption.custom-lg-margin {
        margin-top: 270px !important;
    }
}

.index-page.scrolled .navmenu .active {
    color: #4761ff;
}



/* ROOT HERO */
.hero-z {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* BACKGROUND IMAGE (LOWEST LAYER) */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
}

/* GRADIENT + DEPTH LAYER */
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(58, 91, 203, 0.35), transparent 40%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

/* CONTENT FLOATING ABOVE */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 100%;
    padding: 120px 80px;
    color: #fff;
    text-align: center;
    /* background-color: #000000; */
}




.hero-index {}

/* TAG */
.hero-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* BRAND TITLE */
.hero-brand {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff, #bfc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* LINE */
.hero-line {
    font-size: 1.6rem;
    margin-top: 25px;
    color: #e4e6ff;
}

/* DESCRIPTION */
.hero-desc {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #cfd3ff;
}

/* CTA BUTTON (TOP LAYER) */
.hero-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 38px;
    border-radius: 60px;
    background: linear-gradient(135deg, #943ebf, #41255d);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow:
        0 15px 40px rgba(58, 91, 203, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 25px 70px rgba(58, 91, 203, 0.8);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 90px 25px;
    }

    .hero-brand {
        font-size: 3rem;
    }
}

.hero-content {
    background: rgba(0, 0, 0, 0.65);
    /* BG INSIDE TEXT */
    padding: 50px 60px;
    border-radius: 16px;

    text-align: center;
    color: #fff;
    max-width: 750px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);

}

.hero-index {
    position: relative;
    z-index: 3;

    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {

    .hero-content {
        padding: 25px 20px;
        /* smaller padding */
        max-width: 92%;
        /* fit mobile screen */
        border-radius: 12px;
        margin-top: 141px;
    }

    .hero-brand {
        font-size: 2.2rem;
    }

    .hero-line {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }
}


/* installtionguides css star */


.tile-box {
    background: linear-gradient(135deg, #943ebf, #41255d);
    padding: 40px 30px;
    border-radius: 20px;

    height: 100%;
    transition: 0.3s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.tile-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

/* ICON CIRCLE */
.tile-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;

    border-radius: 50%;
    background: rgb(2 4 13 / 12%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-icon img {
    height: 125px;
}

/* TITLE */
.tile-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* LINK */
.tile-link {
    color: #3a5bcb;
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
}


.cut-box {
    background: linear-gradient(135deg, #943ebf, #41255d);
    padding: 35px 25px;
    height: 90%;

    clip-path: polygon(0 0,
            92% 0,
            100% 12%,
            100% 100%,
            8% 100%,
            0 88%);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.cut-box:hover {
    transform: translateY(-8px);
}



/* installation guide end css */


/* tv and mobile */
.modern-feature {
    background: linear-gradient(135deg, #9f46c7, #2b0a52);
}

/* CARD STYLE */
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

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

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

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



/* IMAGES */
.feature-img {
    max-height: 137px;
    object-fit: contain;
}

/* BUTTON */
.hero-cta {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #943ebf, #41255d);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-cta:hover {
    background: #e62e2e;
}

/* DARK BUTTON */
.hero-cta.dark {
    background: #4a0d86;
}

.hero-cta.dark:hover {
    background: #35095f;
}


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

/* tv mobile end */
.bg-breadcrumb {
    background-image: url('../images/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.footer-img {
    background-image: url('../images/fotterimg2.avif');
    background-size: cover;
    /* make it cover the area */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* avoid repeating */
    box-shadow: 2px 2px 15px #061425;
}


/* OR CODE */
/* 
/* CARD STYLE */
.feature-card-qr {
    background: linear-gradient(to right,
            rgb(149 92 178),
            rgba(0, 0, 0, 0.3));
    ;
    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 30px 70px rgba(0, 0, 0, 0.25);
}

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

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

/* OR CODE */