@import url('asset/css/all.min.css');
@import url('asset/css/owl.carousel.min.css');
@import url('asset/css/bootstrap.min.css');
@import url('asset/css/main.css');
@import url('asset/css/contacts.css');


        #form-control{
            border-radius: 7px;
        }
    
        .scroll-down4 {
            width: 1.5px;
            height: 80px;
            background: hsl(0, 0%, 100%);
            animation: scrollDown4 3s ease infinite;
            margin: 0 auto;

        }

        .css-scroll-down {
            display: flex;
            flex-flow: row;
            align-items: flex-start;
            padding: 50px 30px;

            .single-scroll-down-animation {
                margin-right: 20px;
                width: calc(25% - 20px);
                margin-bottom: 50px;
            }
        }

        @keyframes scrollDown4 {
            0% {
                transform-origin: top;
                transform: scaleY(0);
            }

            45% {
                transform-origin: top;
                transform: scaleY(1);
            }

            55% {
                transform-origin: bottom;
                transform: scaleY(1);
            }

            100% {
                transform-origin: bottom;
                transform: scaleY(0);
            }
        }

        @media (max-width: 1100px) {

            .single-scroll-down-animation,
            .scroll-down4 {
                display: none;
            }
        }
        
        .cards-container {
            margin: 30px 0;
            display: flex;
            gap: 35px;
            justify-content: center;
            align-items: stretch;
            flex-wrap: nowrap;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .video-card {
            position: relative;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            flex: 1;
            min-width: 300px;
            max-width: 320px;
            height: 400px;
            transform-origin: center;
        }

        .video-card:hover {
            flex: 2.5;
            max-width: 700px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
            transform: translateY(-8px);
            z-index: 10;
        }

        .cards-container:hover .video-card:not(:hover) {
            flex: 0.7;
            min-width: 200px;
            max-width: 240px;
            opacity: 0.8;
            transform: scale(0.95);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 16px;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-thumbnail::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 1;
        }

        .play-button {
            position: relative;
            z-index: 2;
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .video-card:hover .play-button {
            background: white;
            transform: scale(1.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 18px solid #333;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .video-card.playing .video-iframe {
            opacity: 1;
            pointer-events: all;
        }

        .video-card.playing .video-thumbnail {
            opacity: 0;
        }

        .video-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 32px 20px 16px;
            font-size: 16px;
            font-weight: 600;
            z-index: 3;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .video-card:hover .video-title {
            font-size: 18px;
            padding: 40px 24px 20px;
        }

        /* Individual card background images */
        .video-card[data-title="DAR - Flatbed"] .video-thumbnail {
            /*background-image: url('asset/images/trolley lefter autonomous mobile robots (AMR).jpg');*/
            background-image: url('asset/images/DGV - Lifter .webp');
        }

        .video-card[data-title="DAR - Flatbed 2"] .video-thumbnail {
            /*background-image: url('asset/images/doozy robotics Tugger (AMR)  Autonomous Mobile Robots.jpg');*/
            background-image: url('asset/images/DAR -  Auto Tugger.webp');
        }

        .video-card[data-title="DFR - Forklift"] .video-thumbnail {
           background-image: url('asset/images/DAR-Cobot.webp');
            /*background-image: url('asset/images/Smart Roller Conveyor - doozy robotics(AMR) Autonomous Mobile Robots.jpg');*/
        }

        .video-card[data-title="DAR - Conveyor"] .video-thumbnail {
            /*background-image: url('asset/images/autonomous mobile robots pallet lefter intro by doozy robotics.jpg');*/
           background-image: url('asset/images/Pallet Lifter.webp');    
        }

        /* Loading Animation */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 32px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 4;
            display: none;
        }

        .video-card.loading .loading-spinner {
            display: block;
        }

        .video-card.loading .play-button {
            display: none;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .cards-container {
                gap: 12px;
            }
            
            .video-card {
                min-width: 240px;
                max-width: 280px;
                height: 200px;
            }
            
            .video-card:hover {
                max-width: 420px;
            }
            
            .cards-container:hover .video-card:not(:hover) {
                min-width: 180px;
                max-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .cards-container {
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }
            
            .video-card {
                width: 100%;
                max-width: 400px;
                min-width: 300px;
                height: 220px;
                flex: none;
            }
            
            .video-card:hover {
                flex: none;
                max-width: 400px;
                transform: translateY(-4px) scale(1.02);
            }
            
            .cards-container:hover .video-card:not(:hover) {
                flex: none;
                min-width: 300px;
                max-width: 400px;
                opacity: 1;
                transform: none;
            }
            
            /* body {
                padding: 20px 10px;
            } */
        }

        @media (max-width: 480px) {
            .video-card {
                min-width: 280px;
                max-width: 320px;
                height: 180px;
            }
            
            .video-title {
                font-size: 18px;
                padding: 24px 16px 12px;
            }
            
            .play-button {
                width: 48px;
                height: 48px;
            }
            
            .play-icon {
                border-left: 14px solid #333;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }

        /* Smooth entrance animation */
        .video-card {
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }
        .video-card:nth-child(4) { animation-delay: 0.4s; }

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

        /* Hover effect for better visual feedback */
        .video-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: 16px;
            transition: border-color 0.3s ease;
            pointer-events: none;
            z-index: 5;
        }

        .video-card:hover::before {
            border-color: rgba(255, 255, 255, 0.4);
        }


        .amr-series {
            min-height: calc(100vh - 80px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: auto 0;
            /* background-color: #f8f9fa; */
        }
        
        .amr-series h2 {
            font-size: 35px;
            font-weight: 700;
            margin-top: 1em;
            margin-bottom: 1rem;
            color: #212529;
        }
        
        .amr-series h3 {
            font-size: 30px;
            font-weight: 400;
            /* margin-bottom: 3rem; */
            color: #6c757d;
        }
        
        .robot-card {
            text-align: center;
            padding: 1.5rem;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .robot-card:hover {
            transform: translateY(-10px);
        }
        
        .robot-card img {
            width: 100%;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .robot-card:hover img {
            transform: scale(0.95);
        }
        
        .robot-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #212529;
        }
        
        .robot-card p {
            color: #6c757d;
            line-height: 1.6;
            width: 80%;
            margin: 0 auto;
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Stagger animation for cards */
        .robot-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .robot-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .robot-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        @media (max-width: 768px) {
            .amr-series {
                padding: 60px 0;
            }
            
            .amr-series h2 {
                font-size: 2rem;
            }
            
            .amr-series h3 {
                font-size: 1.25rem;
            }
            
            .robot-card {
                margin-bottom: 2rem;
            }
        }

            @media (min-width: 768px) {
            .smallsection {
             width: 300px;
            height: 120px;/***************************************************************************200*/
              }
                }
            @media (max-width: 767px) {
                .h2 {
                    font-size: 24px;
                }

                .h2 {
                    font-size: 24px;
                }

                .col-md-4 .col-sm-6 {
                    font-size: 25px
                }

            }


        .buttonaa {
            display: inline-block;
            padding: 0.75rem 1.25rem;
            border-radius: 10rem;
            color: #fff;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 0.15rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .buttonaa:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-color: rgb(165, 165, 165, 0.3); */
            /* border: 1.5px solid rgb(255, 255, 255); */
            border-radius: 10rem;
            z-index: -2;
        }

        .buttonaa:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #042db4;
            /* background-color: #008fb3; */
            border-style: 2px solid #042db4;
            transition: all 0.3s;
            border-radius: 10rem;
            z-index: -1;
        }

        .buttonaa:hover {
            color: #fff;
        }

        .buttonaa:hover:before {
            width: 100%;
        }
        .box .text .buttonaa {
    opacity: 0;
    transition: opacity 0.3s;
}

.box:hover .text .buttonaa {
    opacity: 1;
}
    /* Logo Slider Section */
    .top-header {
      background-color: #fff;
      padding-top: 60px;
      text-align: center;
      /* border-bottom: 1px solid #e9ecef; */
    }

    .top-header h2 {
      font-size: 30px;
      font-weight: 800 !important;
      color: #1e64e0;
      margin-bottom: 50px;
    }

    .logo-slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 20px 0;
    }

    .logo-slider {
      display: flex;
      animation: slideLogos 25s linear infinite;
      gap: 80px;
      align-items: center;
    }

    .logo-slider img {
      height: 100px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
      /*filter: grayscale(100%);*/
      /*opacity: 0.7;*/
      transition: all 0.3s ease;
    }

    .logo-slider img:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    @keyframes slideLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-slider-container:hover .logo-slider {
      animation-play-state: paused;
    }

    /* Recognition Section */
    .recognition-section {
      background-color: var(--light-bg);
      padding: 60px 0;
      text-align: center;
    }

    .recognition-section h2 {
      font-size: 30px;
      font-weight: 800 !important;
      color: #1e64e0;
      margin-bottom: 40px;
    }

    .recognition-slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 20px 0;
    }

    .recognition-slider {
      display: flex;
      animation: slideRecognition 20s linear infinite;
      gap: 60px;
      align-items: center;
    }

    .recognition-slider img {
      height: 100px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
      /*filter: grayscale(100%);*/
      /*opacity: 0.7;*/
      transition: all 0.3s ease;
    }

    .recognition-slider img:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    @keyframes slideRecognition {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .recognition-slider-container:hover .recognition-slider {
      animation-play-state: paused;
    }
        @media (max-width: 768px) {
            .logo-slider {
                gap:0px;
            }
            .recognition-slider {
            gap:0px;
            }
        }

        .humanoids{
    text-align: left;
    width: 55%;
    padding-left:100px;
        }
        @media (max-width: 768px) {
    .humanoids {
        width:100%;
        padding-left:50px;

    }
    
    }


    .brochure-section {
      background: #F3F3F3;
      color: black;
      padding: 80px 0;
    }

    .main-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .content-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
      gap: 80px;
    }

    .specs-section {
      flex: 1;
      max-width: 500px;
    }

    .spec-item {
      display: flex;
      margin-bottom: 10px;
      align-items: flex-start;
      line-height: 1.5;
    }

    .spec-label {

      color: black;
      min-width: 160px;
      font-size: 18px;
      margin-right: 20px;
    }

    .spec-value {
      color: black;
      font-size: 18px;
      flex: 1;
      font-weight: 500 !important;
    }

    .download-btn {
      background: var(--primary-color);
      border: 2px solid  var(--primary-color);
      color: #ffffff;
      padding: 12px 32px;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 400 !important;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 40px;
      backdrop-filter: blur(10px);
    }

    .download-btn:hover {
      background: white;
      /* border-color: black; */
      border: 1px solid #1e64e0;
      color: var(--primary-color);
      transform: translateY(-2px);
    }

    .product-section {
      flex: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .model-title {
      font-size: 30px;
      font-weight: 800 !important;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .product-image {
      max-width: 500px;
      border-radius: 15px;
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
    }

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

    .model-navigation {
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0;
      display: flex;
      justify-content: center;
    }

    .model-tab {
      flex: 1;
      padding: 24px 20px;
      text-align: center;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700 !important;
      color: #94a3b8;
      transition: all 0.3s ease;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      border: 1px solid gray;
       z-index: 0; 
    }

    .model-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(128, 128, 128, 0.384); /* hover color */
  color: black;
  z-index: 0;
  transition: width 1s ease;
}

.model-tab:not(.active):hover::before {
  width: 100%;
}

.model-tab {
  position: relative;
  overflow: hidden; /* Prevent the ::before from overflowing */
  z-index: 1;
 }

.model-tab > * {
  position: relative;
  z-index: 2;
}



    .model-tab.active {
      color: #ffffff;
      background: rgba(0, 0, 0, 0.3);
    }


            .brochure-section { padding: 20px; }
        .main-container { max-width: 1200px; margin: auto; }
        .content-wrapper { display: flex; flex-wrap: wrap; }
        .product-section, .specs-section { flex: 1; min-width: 300px; }
        .model-navigation { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
        .model-tab { cursor: pointer; padding: 10px; border: 1px solid #ccc;  color:black;font-weight:400 !important;}
        .model-tab.active { background-color: #1e64e0; color: white; }
        .download-btn { padding: 10px 20px; background-color: #1e64e0; color: white; border: none; cursor: pointer; }
        .download-btn:hover { background-color: #0056b3; color: white; }
        #country:invalid {
          color: gray; /* placeholder color */
        }
        
        #country option {
          color: black; /* normal options */
        }


    a {
        text-decoration: none;
    }

    .floating_btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    @keyframes pulsing {
        to {
            box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        }
    }

    .contact_icon {

         /*background-color: #42db87; */
        color: #fff;
        width: 60px;
        height: 60px;
        font-size: 30px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translatey(0px);
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 0 0 #42db87;
        -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        font-weight: normal;
        font-family: sans-serif;
        text-decoration: none !important;
        transition: all 300ms ease-in-out;
    }

    .contact_icon img {
        width: 45px;
        height: 45px;
    }

        .cookie-consent-modal{
    /*height: 150px;*/
    width: 28vw;
    /*background-color: rgba(0,0,0,0.5);*/
    position: fixed;
    bottom: 30px;
    left:20px;
    z-index: 999;
    display: none;
    align-items: flex-end;
}

.cookie-consent-modal.active{
    display: flex;
}
.content{
    background-color: #fff;
    padding: 2vw 1.25vw;
    border-radius: 7px 7px 7px 7px;
}

.btnsss{
    display: flex;
    justify-content: center;
    margin-top: 2em;
}
.btnss{
    border: none;
    outline: none;
    padding: .5em 1em;
    width: 100px;
    margin-right: 0.75em;
    border-radius: 3px;
    text-transform: uppercase;
        background-color: #416bb4;

}
#btnssedit{
    color:white;
    font-size:15px;
    font-weight:bolder;
}

@media (max-width: 480px) {
    .content {
        max-width: 230px; /* Make it full-width for small screens */
        margin: 10% auto;
    }
}