/********** Template CSS **********/
:root {
    /* --primary: #4C32F8; */
    --primary: #000000;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
    --hover1: #0026ff4f;
    --white: #ffffff;
    --camera: #3C3D40;
    --analytics: #353638;
    --grayfont:#c8c8c8;
    --greenone:#3eff44;
    --darkgray:#363636;
}

/* body {
    font-family: "Poppins", sans-serif;
} */


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.text-green{
    color: var(--greenone) ;
}


/*** 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.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--light);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* Base Styles */
  .hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .mainheading{
    font-size: 4rem;
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .bottom-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  
  .bottom-block h3 {
    margin: 0;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .content-overlay .mainheading {
      font-size: 3rem;
    }
    
    .content-overlay h5 {
      font-size: 1.5rem;
    }
    
    .bottom-block h3 {
      font-size: 0.8rem;
      padding: 0.5rem 0 !important;
    }
    
    .bottom-block .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  
  @media (max-width: 576px) {
    .content-overlay .mainheading {
      font-size: 2.2rem;
    }

    .content-overlay h5 {
      font-size: 1rem;
    }
     
    .bottom-block h3 {
      font-size: 0.7rem;
    }
  }
  




.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/video.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.795);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 4px var(--greenone);
}


.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
/* Base Card Styles */
  .service-item {
    transition: all 0.4s ease;
    background: #1a1a1a !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Hover Effects */
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 248, 8, 0.15);
    border-color: rgba(0, 248, 8, 0.3) !important;
  }
  /* Background Overlay Animation */
  .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(62, 255, 68, 0.1), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
  }
  
  .service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
  }
  
  /* Text Elements */
  .service-text * {
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
  }
  
  /* Title Styling */
  .productTextGreenIncard {
    color: #3eff44 !important;
  }
  
  /* Link Animation */
  .service-item .btn-link {
    transition: all 0.3s ease;
  }
  
  .service-item:hover .btn-link {
    color: #2bd132 !important;
    letter-spacing: 0.5px;
  }
  
  .service-item:hover .btn-link i {
    transform: translateX(3px);
  }
  .read-more-link {
    color: whitesmoke; /* Your green color */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .read-more-link:hover {
    color: #2bd132; /* Slightly darker green on hover */
    text-decoration: underline;
  }

  .read-more-link i {
    transition: transform 0.3s ease;
  }

  .read-more-link:hover i {
    transform: translateX(3px);
  }

  
/* Smooth dropdown animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/va12.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}

/*  */
.cardimg {
    max-width: 100%;
    height:300px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    /* border: 2px solid var(--greenone); */
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    background-color: white;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    border: 2px solid var(--greenone);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    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;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.hero-scroll {
    height: auto;
    background-color: #d9d8d7;
}

.image-logo {
    height: 50px;
    margin: 10px 40px;
}

.para-font {
    color: #464646;
}


.PPEMonitor {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_PPE_Monitor_banner.jpeg) center center no-repeat;
    background-size: cover;
}

.computer {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/computer.jpg) center center no-repeat;
    background-size: cover;
}

.program {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/program.jpg) center center no-repeat;
    background-size: cover;
}

.dispatchTracker {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Dispatch_Tracker_banner.avif) center center no-repeat;
    background-size: cover;
}

.palletScanner {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Pallet_Scanner_banner.webp) center center no-repeat;
    background-size: cover;
}

.business {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/business.jpg) center center no-repeat;
    background-size: cover;
}

.truckMonitor {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Truck_Monitor_banner.avif) center center no-repeat;
    background-size: cover;
}

.inventoryMonitor {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Inventory_Monitor_banner.webp) center center no-repeat;
    background-size: cover;
}

.workerMonitor {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Worke_\ Monitor_banner.webp) center center no-repeat;
    background-size: cover;
}


.assembly_Line_Monitor {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Assembly_Line_Monitor_banner.jpg) center center no-repeat;
    background-size: cover;
}

.seat_Belt_Detector{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/AI_Seat_Belt_detector_banner.webp) center center no-repeat;
    background-size: cover;
}

.retail{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/retail.jpg) center center no-repeat;
    background-size: cover;
}
.warehouses {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/warehouses.jpg) center center no-repeat;
    background-size: cover;
}
.medical {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/medical.jpg) center center no-repeat;
    background-size: cover;
}
.restaurant {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/restaurant.jpg) center center no-repeat;
    background-size: cover;
}



.primary-font {
    color: var(--white);
    font-weight: 300;
    text-align: center;
    font-size: 1.5rem;
}

.bg-g {
    background-color: #ebebeb;
}


.links {
    color: var(--primary);
    font-weight: 700;
    margin-top: 8%;
}

.img-pack {
    height: 20rem;
}

.container-1 {
    position: relative;
}

.image-1 {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4c32f8e8;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.container-1:hover .overlay-1 {
    height: 100%;
}

.text-1 {
    white-space: nowrap;
    color: #dddddd;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.text-2 {
    color: #d9d8d7;
    font-size: 15px;
    text-align: center;
}

.facts-1 {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 40%);
}


.flip-box {
    background-color: transparent;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    padding-top: 55%;
}

.flip-box-inner {
    position: absolute;
    padding: 30px;
    width: 85%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/va11-1.jpg) center center no-repeat;
    background-size: cover;
}

.flip-box-back {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
    padding: 35px;
    width: 90%;
}

.manufacturing {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/manufacture.jpg) center center no-repeat;
    background-size: cover;
}

.education {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/education.jpg) center center no-repeat;
    background-size: cover;
}

.construction {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/service-1.jpg) center center no-repeat;
    background-size: cover;
}

.corporate {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/corporate.jpg) center center no-repeat;
    background-size: cover;
}

input[type="submit"] {
    background-color: var(--primary) !important;
    border: none !important;
}

#newsletter>div>div {
    padding: 0px !important;
    border: 0px solid !important;
}

input[type="submit"] {
    border: 1px solid var(--white) !important;
}

.primary-border
{

    border-radius:15px;
    padding: 25px;
    height: 400px;
    width: 280px;
    margin: 20px;
}

.autocount {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/auto.png) center center no-repeat;
    background-size: cover;
}

.forklit {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/forklit.png) center center no-repeat;
    background-size: cover;
}

.automated {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/clean.png) center center no-repeat;
    background-size: cover;
}

.realtime{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.146)), url(../img/check.png) center center no-repeat;
    background-size: cover;
}

.btn-green
{
    background-color: rgb(62, 255, 68);
    color:#000000;
   
}
.btn-green:hover
{
    background-color: rgb(62, 255, 68);
    box-shadow: 
        0 4px 12px rgba(0, 248, 8, 0.4),
        0 8px 16px rgba(0, 248, 8, 0.3),
        0 0 16px rgba(0, 248, 8, 0.2); /* Glow effect */
    transform: translateY(-2px);
    color: #000000;
}

h3{
    margin: 0;
}
#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  
  #light {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    margin-left: -300px;
    margin-top: -180px;
    border: 2px solid #FFF;
    background: #FFF;
    z-index: 1002;
    overflow: visible;
  }
  
  #boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
  }
  
  .boxclose:before {
    content: "×";
  }
  
  #fade:hover ~ #boxclose {
    display:none;
  }

  .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
  }
  
  .modal-content {
    border-radius: 7px;
  }
  
  /* Video styling - works well on large screens */
  .modal-video {
    width: 810px;
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive adjustment for small screens */
  @media (max-width: 992px) {
    .modal-dialog {
      max-width: 95%;
    }
    
    .modal-video {
      width: 100%;
    }
  }


.submit_button{
    border-radius: 7px;
}

.demoVideo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #3eff44;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(62, 255, 68, 0.1);
    border: 1px solid rgba(62, 255, 68, 0.3);
  }
  
  .demoVideo:hover {
    color: #2bd132;
    background-color: rgba(62, 255, 68, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 255, 68, 0.2);
    text-decoration: none;
  }
  
  .demoVideo i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
  }
  
  .demoVideo:hover i {
    transform: scale(1.1);
  }

/* About US */
.border-greenone{
    border-bottom: 3px solid var(--greenone);
}
.border-greenone-left {
    border-left: 3px solid var(--greenone);
}
.text-justify{
    text-align: justify;
}

/* facts */
.mainFacts {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100%; /* or set a fixed height */
}
.ourValues {
    position: absolute;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

/* products */
.productTextGreen{
    color: var(--greenone);
}
.productTextGreenIncard{
    color: var(--primary);
}

/* why choose us */
.bestChoice{
    color: var(--primary);
    text-align: center;
}

/*  clict logo auto scroll animation */
/* Logo slider styles */
 .clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 8px solid #3eff44;
  }
  
  .slider-track {
    display: flex;
    gap: 80px;
    width: max-content;
  }
  
  .slide {
    flex: 0 0 auto;
  }
  
  .slide img {
    width: 150px;
    height: 80px;
    object-fit: contain;
  }

  .backgound-black{
    background-color: #000000;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.4);
  }

.product-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    /* background: #f8f9fa; */
    aspect-ratio: 16/9; /* Match your video's aspect ratio */
  }
  
  .product-banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
  }
  
  .product-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .product-banner-container:hover .product-banner-image {
    opacity: 0;
  }
  
  .product-banner-container:hover .product-banner-video {
    opacity: 1;
  }
/* case studies */
.casestudycard {
    overflow: hidden;
    position: relative;
    border: none;
}

.casestudycard img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease-in-out;
}

.casestudycard:hover img {
    transform: scale(1.1);
    /* Scale image on hover */
}

.casestudycardbody {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    /* Optional: Add a semi-transparent background */
    color: white;
    text-align: center;
    padding: 1rem;
    transition: background 0.3s ease-in-out;
}

.casestudycard:hover .casestudycardbody {
    background: rgba(0, 0, 0, 0.7);
    /* Optional: Darken background on hover */
}
.btn-green{
    background-color: #3eff44;
}

/* Animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-track:hover {
    animation-play-state: paused;
}


/* footer */
.all_right a {
    color: white;
    /* Default color */
    text-decoration: none;
    /* Optional: Removes underline */
}
.whatsappbtn{
    border-radius: 5px;
}
.clofusLink a{
    text-decoration: none;
    color:var(--secondary);
}
.clofusLink a:hover{
    color: #3eff44;
}

/* whats app icon position right-bottom */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-icon:hover {
    background-color: #1da955;
    text-decoration: none;
}
.salesmail{
    color: var(--secondary);
}
.salesmail:hover{
    color:blue;
}

