@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
body{
    overflow: hidden;
    background-color: #F5F5F5;
}
#main{
    width: 100%;
    min-height: 100vh;
    /* background-image: linear-gradient(rgba(5,5,5,100),rgba(5,5,5,100)); */
    position: relative;
    /* padding: 0 5%; */
    /* display: flex; */
    /* align-items: center;
    justify-content: center; */
}
#loader {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #007bff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 8px;
}
#loader img {
    width: 250px;
    height: auto;
}
/* .back-video{
    object-fit: cover;
    background-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
    
} */

.back-video {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /* Example aspect ratio (e.g., 16:9), adjust based on your needs */
    top: 0;
    left: 0;
}
.second-video{
    display: none;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /* Example aspect ratio (e.g., 16:9), adjust based on your needs */
    top: 0;
    left: 0;
}
/* .swipe-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 5;
}

.swipe-button:hover {
    background-color: rgba(0, 86, 179, 0.8);
} */
.swipe-button {
    position: absolute;
    top: 80%;
    width: 21rem;
    height: 4.5rem;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, 0%);
    padding: 10px 20px;
    font-size: 2rem;
    background-color: rgba(0, 123, 255, 1);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 5;
}

.swipe-button:hover {
    background-color: rgba(0, 86, 179, 0.8);
}

nav{
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #007bff;
    border-bottom: 2px solid black;
    position: relative;
    height: 57px;
  }
  
  
  
  nav ul{
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  nav ul li{
    list-style-type: none;
  }
  
  nav ul li a{
    text-decoration: none;
    color: #fff;
  }
  nav ul li a:hover{
    color: #0170B9;
    font-weight: bold;
  }
  .logo img {
    width: 70px;
    height: auto;
    /* padding: 10px 0; */
    /* margin: 10px 0; */
  }
  
  
  .menu-icon{
    display: none;
  }
  
  .menu-icon i{
    color: #fff;
    font-size: 30px;
  }
  
  @media (max-width: 480px) {
    nav ul{
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #004274;
        gap: 0;
        z-index: 1;
        overflow: hidden;
    }
    nav ul li{
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .second-video{
        display: block;
        width: 100%;
        height: 100vh;
     }
    .menu-icon{
        display: block;
    }
    #menuList{
        transition: all 0.5s;
    }
  }
      

#page-2{
    background-image: url("./babab-01.jpeg.jpg");
    object-fit: cover;
    background-position: center;
    /* position: absolute; */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.form-container {
    /* background-image: url("./babab-01.jpeg.jpg"); */
    /* background-image: url("./Assets/form-background.jpg"); */
    backdrop-filter: blur(20px);            
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    /* background-position: center; */
    position: absolute;
    left: 15%;
    /* top: 100%; */
    border: 2px solid #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30vw;
    /* margin-left: 150px;
    margin-top: 60px; */
    /* min-height: 80vh; */
}

.form-container h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    /* border: 1px solid #ddd; */
    border-radius: 7px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 50%;
    font-size: 16px;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #0056b3;
}
@media (max-width: 480px) {
    #page-2{
        min-height: 100vh !important;
        background-position: 200px left;
        background-size: cover;
        padding: 2em;
        background-image: url("./Assets/form-background.jpg");
        /* background-color: #524646; */
        /* background-repeat: no-repeat; */
       
    }
    .form-container{
        height: 70% !important;
        width: 79vw;
        left: 11%;
        /* background-color: #35373E; */
        backdrop-filter: blur(50px); 
        border: 2px solid #555;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* background-color: #524646; */
        /* padding: 10em; */
    }
    
.form-group input:focus,
.form-group textarea:focus{
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
   
@media (max-width: 480px){
    .slide-pic{
        width: 299%;
        height: auto;
      }
      .iframe-container video{
        height: 27vh;
        width: 155%;
        margin-left: -67px;
      }
      .test-slider{
        width: 200%;
        height: auto;
        object-fit: contain;
        background-color: transparent;
      }
      .slider{
        display: flex;
        flex-direction: row;
      }
      .slides{
        width: 200%;
        height: auto;
        object-fit: contain;
        /* background-color: transparent; */
      }
}   

}

 /* .img-1{
    opacity: 0;
    animation-delay: 1s;
    animation: slideLeft 3s ease forwards;
 }
 .img-2{
    opacity: 0;
    animation-delay: 1s;
    animation: slideTop 2s ease forwards;
 }
 .img-3{
    opacity: 0;
    animation-delay: 1s;
    animation: slideRight 3s ease forwards;
 } */
  #page-3{
    /* margin-top: 3rem;
    margin-bottom: 2rem; */
  }
  .hero {
    height: 100%;
    width: 100%;
    position: relative;
    /* overflow: hidden; */
}

.car {
    width: 150px;
    position: absolute;
    left: 0;
    top: 53%;
    transform: translateY(-50%);
    z-index: 2;
}

.car img {
    width: 100%;
}

.wheel {
    position: absolute;
    bottom: 0px; /* Adjust based on car design */
}

.wheel img {
    width: 32px;
    height: 32px;
    animation: rotate 1s linear infinite;
}

.back-wheel {
    left: 10px;  /* Adjust based on car design */
}

.front-wheel {
    right: 16px; /* Adjust based on car design */
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.counter-container {
    display: flex;
    justify-content: space-between;
    width: 88%;
    /* gap: 25px; */
    align-items: center;
    margin-inline-start: 8vw;
    line-height: 1;
}

.counter-section {
    text-align: center;
}

h1 {
    margin: 10px 0;
    font-size: 2.5rem;
    color: #65C5EF;
    line-height: 1;
}

.head-2 {
    font-size: 2.4rem;
}

.counter {
    font-size: 24px;
    color: #1C78DB;
}
#counter1,#counter2,#counter3 {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .counter-container {
        flex-direction: column;
        font-size: .3em;
    }
    .car, .wheel {
        display: none;
    }
    
}



 #page-4{
  background-color: #F5F5F5;
  min-height: 100vh;
  width: 100%;
  /* margin-bottom: 4em; */
}
#page-4 h2{
    color: black;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}
#page-4 .heading{
    color: #1C78DB;
}

.slider {
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    margin: auto;
}

.slides {
    display: flex;
    /* transition: transform 0.5s ease-in-out; */
}

.card{
    flex: 0 0 calc(50% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    border-radius: 8px;
    overflow: hidden;
    width: 200px;
    /* height: 90vh; */
    background-color: #fff;
    margin: 0 10px;
    margin-bottom: 5rem;
}

.card-image {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 5px;
}

.card-content h2 {
    margin-top: 20px;
    color: black;
    font-size: 1.75rem;
}

.card-content p {
    color: black;
    margin: 20px 0 0 30px;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
}
.card-content p a{
    color: #1C78DB;
    text-decoration: none;
}
.card-content p a:hover{
    background: none;
}
.card-content:first-of-type p:first-of-type {
    margin-top: 20px; /* Adjust the value as needed */
}
@media (max-width: 480px) {
    #page-4{
        display: none;
    }
    .slides{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        display: none;
    }
    @media (max-width: 480px) {
        .card {
            flex-basis: 90%;
            max-width: 100%;
        }
    }
    
     
 
 }

#page-5{
    height: 65vh;
    width: 100%;
    background: #fff;
    
}
#page-5 h1{
    text-align: center;
    color: #1C78DB;
    line-height: 2;
    font-size: 2rem;
    /* margin-top: 2rem; */

}
#page-5 p{
    text-align: center;
    font-size: 1.5rem;
    color: #555;
    /* margin-bottom: 4em; */
}
.logo-wrapper {
    overflow: hidden;
    width: 100%;
}
.logo-cont-card{
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    /* background-color: #f4f4f9; */
    margin: 0;
    overflow: hidden;
}
.logo-container {
    display: flex;
    gap: 20px;
    animation: moveLeft 40s linear infinite;
}

.logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: white;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo-card img{
    height: auto;
    width: 80%;
    object-fit: contain;
}
.logo-card .image-2{
    height: 100px;
    width: 60%;
    mix-blend-mode: multiply;
}
.logo-card .image-4{
    height: 200px;
    width: 70%;
}
.logo-card .image-5{
    height: 150px;
    width: 60%;
}
.logo-card .image-7{
    height: 130px;
    width: 100%;
}
.logo-card .image-9{
    height: 150px;
    width: 70%;
}
.logo-card .image-12{
    height: 500px;
    width: 100%;
}
.logo-card .image-13{
    height: 550px;
    width: 100%;
}
.logo-card .image-14{
    height: 550px;
    width: 100%;
}
.logo-card .image-15{
    height: 400px;
    width: 70%;
}
.logo-card .image-16{
    height: 300px;
    width: 50%;
}
@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

#page-6{
    min-height: 49vh;
    width: 100%;
    margin-bottom: 3em;
}
#page-6 h1{
    text-transform: uppercase;
    color: #257DDC;
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 100px;
}

.video-container {
    display: flex;
     /* Align video cards in a row */
    gap: 100px; /* Space between the video cards */
    /* margin-left: 120px; */
    /* top: 200px; */
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .video-card {
    width: 500px; /* Set a uniform width for each video */
    height: 450px; /* Set a uniform height for each video */
    overflow: hidden; /* Ensure videos don't overflow */
    display: flex;
    flex-direction: column; /*Stack video and description*/
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #555;
  }
  
  video {
    width: 100%; /* Make videos responsive to the card width */
    height: 100%; /* Fill the height of the card */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
    border: 2px solid #ccc; /* Optional: border for styling */
    /* border-radius: 10px; Optional: rounded corners */
  }
  .video-card #video2{
    height: 100%;
    width: 100%; 
  }
  
  @media (max-width: 480px) {
   
    #page-6 h1{
        /* margin-bottom: 30px; */
    }
    .video-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .video-card{
        height: 200px;
        width: 350px;
    }
   
     
 
 }

#page-7{
    /* min-height: 72vh; */
    /* width: 100%; */
    /* margin-top: 3rem; */
    /* position: relative; */
    /* margin-top: 10em; */
}
#page-7 h1{
    text-transform: uppercase;
    text-align: center;
    margin-block: 4vw;
    color: #1C78DB;
    
    /* color: #257DDC; */
    /* text-align: center; */
    /* margin-top: 1.5em; */
    /* margin-bottom: 2rem; */
}
.system-image{
    
    max-width: 100%;

    /* margin-bottom: 10px; */
}
@media (max-width: 480px) {
    #page-7 h1{
        text-align: center;
    }
   
  
   
     
 
 }
#page-8{
    margin-top: 1em;
}
.tech-image{
    width: 100%;
    /* margin-bottom: 30px; */
    /* object-fit: contain; */
}
#page-9{
    /* min-height: 100vh; */
    padding-block: 1em;
    width: 100%;
    position: relative;
}
#page-9 h1{
    text-transform: uppercase;
    color: #257DDC;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 20px;
}

.slide-container {
    overflow: hidden;
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

.gallary {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.sliding {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 4rem;
}

.slide-pic {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide-pic:nth-child(1){
    height: 100%;
}
.pic-card{
    flex: 0 0 calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    /* width: 300px;
    height: 85vh; */
    background-color: #fff;
    margin: 0 10px;
    margin-right: 10px;
    /* margin-bottom: 5rem; */
}

.piccard-image {
    width: 100%;
    height: auto;
}

.iframe-container {
    width: 60%; /* 80% width of the parent */
    height: 50%; /* Full height */
    margin: auto; /* Center the container */
}

.responsive-iframe {
    width: 100%; /* Full width of the container */
    height: 80vh; /* Full height of the container */
    border: none; /* Remove border */
}

#page-10{
text-align: center;
margin-top: 1em;
color: #1C78DB;
text-transform: uppercase;
}
#page-10 h1{
    color: #1C78DB;
    margin-block: 4vw;
    text-transform: uppercase;
}

#page-11{
    margin-bottom: 3rem;
}
 #page-11 h1{
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 2.5em;
    color: #1C78DB;
    text-align: center;
 }
.slider-test {
    width: 100%;
    max-width: 950px; /* Maximum width for the testimonials */
    overflow: hidden; /* Hide overflow */
    /* margin-top: 2rem; */
    margin: auto; /* Center the container */
    /* margin-bottom: 5rem; */
}

.test-slider {
    display: flex; /* Align testimonials in a row */
    transition: transform 0.5s ease; /* Smooth transition */
    gap: 10px;
}

.testimonial {
    min-width: 49%; /* Each testimonial takes up half the width */
    background: #e0f7fa; /* Light background for testimonials */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding for the testimonial */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    text-align: center; /* Center text */
    box-sizing: border-box; /* Include padding in width */
     /* Space between testimonials */
     /* height: 40vh; */
     margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.25rem; /* Font size for text */
    color: #333; /* Text color */
    margin: 0; /* Remove default margin */
    line-height: 1.5;
}

.testimonial h4 {
    font-size: 1.5rem; /* Font size for the name */
    margin-top: 10px; /* Space above name */
}

.testimonial span {
    font-size: 2rem; /* Size for thumbs up */
    display: block; /* Display thumbs up on a new line */
    margin-top: 10px; /* Space above thumbs up */
}
@media (max-width: 480px) {
    #page-11{
        padding: 2em;

    }
    .test-slider{
    flex-direction: row;
        
    }
}
   
  
   
     
 

/* The footer is fixed to the bottom of the page */

.footer-distributed {
    background-color:#10182F;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    height: 30rem;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
  }
  
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
  }
  
  /* Footer left */
  .footer-links{
  display: flex;
  flex-direction: column; /* Arrange items in a column */
  align-items: flex-start; /* Align items to the start */
  gap: 10px;
  }
  .footer-distributed .footer-left {
    width: 30%;
  }
  .footer-left li{
    list-style: none;
  }
  .footer-left li a{
    color: white;
    text-decoration: none;
    display: inline-block;
    line-height: 2.5;
    /* text-decoration: none; */
    /* color: inherit; */
  }
  .footer-left li a:hover{
    color: #0056b3;
  }
  
  
  .footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
  }
  
  
  .footer-distributed h3 span {
    color: #e0ac1c;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
  }
  
  .footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
  }
  
  .footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
  }
  .footer-right form {
  display: flex;
  gap: 10px;
  margin-top: 7%;
  }
  
  .footer-right input[type="email"] {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #7489C6;
  background: none;
  color: #fff;
  outline: none;
  }
  
  .footer-right input[type="email"]::placeholder {
  color: #ccc;
  }
  
  .footer-right button {
  background: #0170B9;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .footer-right button:hover {
  background: #cecccc;
  transform: scale(1.1);
  }
  
  
  /* Footer Center */
  
  .footer-distributed .footer-center {
    width: 35%;
  }
  
  .footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
  }
  
  .footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
  }
  
  .footer-distributed .footer-center p a {
    color: #e0ac1c;
    text-decoration: none;
    ;
  }
  
  /* Footer Right */
  
  .footer-distributed .footer-right {
    width: 30%;
    margin-left: 3%;
  }
  
  .footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  /* .footer-right .footer-company-about h2{
    color: #fff;
  } */
  
  .footer-distributed .footer-company-about p {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons {
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a {
    display: inline-block;
    text-decoration: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    /* background-color: #33383b; */
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
  .footer-distributed .footer-icons a:hover {
    background-color: #3F71EA;
  }
  
  .footer-links a:hover {
    color: #3F71EA;
  }
  @media (max-width: 480px) {
  .footer-distributed {
      flex-direction: column;
      align-items: center;
      height: auto;
  }
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
  }
  .footer-left p span{
    margin-left: -87%;
  }
  }
    
@keyframes sideTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(100px);
        opacity: 1;
    }
}

/* 
@keyframes slideTop {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        transform: translateY(100px);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
} */











