*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: montserrat;    
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
  /* Loader Container */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color:rgb(19,82,245);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
    }

    /* Logo */
    #loader img {
      width: 300px; 
      margin-bottom: 20px;
    }

    /* Percentage text */
    #percentage {
      color: white;
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    /* Progress Bar */
    .progress-bar {
      width: 200px;
      height: 3px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 2px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      width: 0%;
      background: #fff;
      transition: width 0.05s linear;
    }

    /* Hide loader when done */
    .fade-out {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    /* loader ends  */
  /* ************************************* */

/* START:STYLING  FOR THE NAVBAR STARTS FROM HERE */
    #home {
      position: relative;
      width: 100vw;
      min-height: 100vh;
      overflow: hidden;
      /* background-color: red; */
    }
  
    .background {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: -2;
      transition: background-image 1.5s ease-in-out;
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }
    .content {
      margin-top: 5rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      width: 90%;
      max-width: 800px;
      padding: 20px;
      box-sizing: border-box;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    .typed-text {
      font-size: 2rem;
      height: 60px;
      margin: 0 auto;
      color: white;
    }
    .neon-text {
      text-shadow:
          0 0 5px #ff0000,
          0 0 10px #0000ff,
          0 0 20px red,
          0 0 30px #ffff00,
          0 0 40px #8a2be2;
      animation: flicker 1s infinite alternate;
    }
    @keyframes flicker {
      0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
          0 0 5px #ff0000,
          0 0 10px #0000ff,
          0 0 20px red,
          0 0 30px #ffff00,
          0 0 40px #8a2be2;
      }
      20%, 24%, 55% {
        text-shadow:
          0 0 5px #ff0000,
          0 0 10px blue;
      }
    }
    .button {
      margin-top: 30px;
      padding: 20px 24px;
      background: blue;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 20px;
      cursor: pointer;
      font-weight: lighter;
      box-shadow: 
                  0 0 15px red,
                  0 0 20px blue, 
                  0 0 25px yellow;    
    }

    .button:hover {
      background: red;
      box-shadow: 0 0 20px blue;
    }
    .button a{
      text-decoration: none;
      color: white;
    }

/* ********************************************************************************************* */
  /* WE PROFER SOLUTIONS TO PROBLEMS */
  #about{
    display: flex;
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: black;
  }

  .abt-texts{
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #000;
    padding: 50px;
    /* background-image: ; */
}
  
  .abt-texts h1, h3{
    font-family: montserrat;
    font-weight: 800;
    color: white;
    text-align: center; 
    font-weight: bold;
    text-shadow: black 2px 2px 2px;
  }
  .abt-texts h3{
    font-size: 1.6rem;
  }
  
  .abt-texts p{
    font-size: 23px; 
    color: white;
    text-align: center;
    text-shadow: black 2px 2px 2px;
    font-weight: normal;
  }
  /* styling for the 4circles  */
  .circle-container {
    position: relative;
    margin-top: 20px;
    width: 450px; 
    height: 480px; 
  }

 
  .circle {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    
  }
  .circle p{
    text-shadow: none;
  }

  .circle{
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  .top-left {
    top: 0;
    left: 0;
    background-color: #f1c40f;
    animation-name: bounce;
  }
  
  @keyframes bounce {
    0% {transform: translateY(0);}
    50%{transform: translateY(-10px);}
    100% {transform: translateY(0)}
  }
  .top-left p{
    margin-right: 10px;
    text-align: left;
  }

  .top-right {
    top: 0;
    right: 0;
    margin-right: 10px;
    background-color: red;
    animation-name: bounce2;
  }
  @keyframes bounce2 {
    0% {transform: translateY(0);}
    50%{transform: translateY(10px);}
    100% {transform: translateY(0)}
  }
  .top-right p{
    text-align: right;
  }

  .bottom-left {
    bottom: 0;
    left: 0;
    z-index: 10;
    text-align: center;
    margin-bottom: 20px;
    background-color: #A04000;
    animation-name: bounce2;
  }
  .bottom-left p{
    text-align: left;
  }

  .bottom-right {
    bottom: 0;
    right: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: rgb(19,82,245);
    animation-name: bounce;
  }
  .bottom-right p{
    text-align: right;
  }
  /* ******************* */
.arrow{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  top: -50;
  right: 50;
  color: white;
  cursor: pointer;
  pointer-events: visible;
  /* background-color: yellowgreen; */
}

.arrow:hover{
  background-color: black;
  color: white;
}

/* *************************************************************************************** */
/* lets discuss project  */
.discuss{
  margin-bottom: 50px;
  padding: 20px;
  width: 100vw;
  height: 60vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: black;
  color: white;
}
.vid-wrapper {
  width: 300px; 
  height: 300px; 
  position: relative; 
}
.r-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ********************* */

.r-video::-moz-media-controls {
  overflow: visible !important;  /*For Firefox*/ 
}
/* ********************************* */
.what-we-do{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 1rem;
  height: 100%;
  width: 30%;
  /* background-color: blue; */
}
.what-we-do h3{
  font-family: montserrat;
  font-size: 2rem;
  font-weight: 800;
}
.what-we-do p{
  font-size:18px;
  font-weight: light;
}
.call-pro{
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  height: auto;
  width: 25%;
  gap: 1rem;
  line-height: 2.5rem;
  font-size: 18px;
  font-weight: normal;
  /* background-color: orange; */
}


/* ******************* */
/* button  */
.contact-us {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 60px;
  background: none;
  border: 1px solid white;
  font-size: 18px;
  font-weight: normal;
  color: white;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: .5s;
}

.contact-us::before{
  content: '';
  position: absolute;
  right: 0;
  width: 10px;
  height: 100%;
  background: red;
  z-index: -1;
  transition: .5s;

}
.contact-us:hover::before{
  width: 100%;
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* STYLE FOR THE 360 IMAGE SLIDER */

.banner{
  margin-bottom: 30px;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  /* background-color: aqua; */
}

.banner .slider{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  top: 15%;
  left: calc(50% - 100px);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 25s linear infinite;
  z-index: 2;
}
@keyframes autoRun{
  from{
      transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
  }to{
      transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
  }
}

.banner .slider .item{
  position: absolute;
  inset: 0 0 0 0;
  transform: 
      rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
      translateZ(500px);
}
.banner .slider .item img{
  width: 90%;
  height: 90%;
  object-fit: cover;
  /* background-color: orange; */
}

/* ********************************************************* */



/* **************************************** */
 /* Section with Spinning Boxes */
 .spinning-section {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: lime; */
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  height: 90%;
}

.box {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40vw;
  height: 50vh;
  opacity: 0; /* Start invisible */
  transform: scale(0) rotate(0deg); /* Start small and not rotated */
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.box.visible {
  opacity: 1;
  transform: scale(1) rotate(360deg); 
}

.box.invisible {
  opacity: 0; /* Reset to invisible */
  transform: scale(0) rotate(0deg); /* Reset to original state */
}
/* *********************** */
/* size of images  */
.audio, .led{
  width: 100%;
  height: 100%;
}
/* ************************** */
.box-text{
  /* padding-top: 30px; */
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgb(19,82,245);
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transition: width 0.4s ease, height 0.4s ease;
  font-size: 20px;
  
}
.box:hover .box-text{
  visibility: visible;
  width: 90%;
  height:90%;
  padding: 30px;
  gap: 20px;
  opacity: 0.9;
  
}

.box-text h3, p{
  color: white;
}

/* ********************************************************************* */

/* ************************************************************** */
#why{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 60vh;
  color: white;
  background-color: rgb(19,82,245);
}

.why-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 65%;
  height: auto;
  padding:50px 20px;
  /* background-color: orange; */
}
.why-container h1{
  font-family: montserrat;
  font-size: 30px;
  font-weight: 800;
}

.why-container p{
  font-size: 18px;
  font-weight: normal;
}
/* *************************************************** */
/* Testimonial Section */
.testimonials {
  width: 100vw;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  color: #000;
  padding: 50px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.testimonials .section-title {
  font-family: montserrat;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: rgb(19,82,245);
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.testimonial-card {
  display: none;
  padding: 35px 25px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
  font-style: italic;
  color: black;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.3rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid black;
}

.testimonial-author h4 {
  font-family: montserrat;
  margin: 0;
  font-size: 1.3rem;
  color: rgb(19,82,245);
}

.testimonial-author span {
  font-size: 1.3rem;
  color: rgb(19,82,245);
}

/* Navigation Arrows */
.testimonial-carousel .prev,
.testimonial-carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(19,82,245);
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  background-color: transparent;
}

.testimonial-carousel .prev:hover,
.testimonial-carousel .next:hover {
  background: rgb(19,82,245);
  color: white;
}

.testimonial-carousel .prev {
  left: -60px;
}

.testimonial-carousel .next {
  right: -10px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background: rgb(19,82,245, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dots .active {
  background: rgb(19,82,245);
}
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ***************************************** */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* INTRO SECTION
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.intro {
  color: white;
  padding: 100px 0;
  background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container h1 {
  font-size: 2.5rem;
}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline {
  padding: 50px 20px;
  margin: 0 auto;
  width: 100vw;
  max-width: 1000px;
  color: rgb(19,82,245);
 
}

time{
  color: red;
}

.detail p{
  font-size: 20px;
  color: rgb(19,82,245);
}

.timeline ol {
  position: relative;
  list-style: none;
}

.timeline ol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background:  rgb(19,82,245);
}

.timeline ol li .item-inner {
  padding: 20px 180px;
  margin-bottom: 8vh;
}

.timeline ol li .time-wrapper {
  position: relative;
  font-size: 4.5rem; /* the numbers */
  font-weight: bold;
  line-height: 0.9;
}

.timeline ol li .time-wrapper::before,
.timeline ol li .time-wrapper::after {
  content: "";
  position: absolute;
  background:  rgb(19,82,245); /*the  vertical line*/
}

.timeline ol li .time-wrapper::before {
  top: 50%;
  left: -180px;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  transition: width 0.8s linear;
}

.timeline ol li .time-wrapper::after {
  top: calc(50% - 8px);
  left: -60px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: left center;
  transition: all 0.4s linear;
}

.timeline ol li time,
.timeline ol li .detail > * {
  opacity: 0;
  transition: 0.5s;
}

.timeline ol li time {
  display: inline-block;
  transform: translateY(-30px);
}

.timeline ol li .detail > * {
  transform: translateY(30px);
}

.timeline ol li .detail h3 {
  font-size: 2rem;
  line-height: 1;
  margin: 15px 0;
  color: blue;
  text-shadow: none;
}
    .btn {
      margin-top: 30px;
      padding: 15px 24px;
      background: blue;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 20px;
      cursor: pointer;
      font-weight: lighter;  
      align-items: center;  
    }

    .btn:hover {
      background: red;
      box-shadow: 0 0 20px blue;
    }
     .btn a{
      text-decoration: none;
      color: white;
    }
/* ANIMATION STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ol li.in-view .time-wrapper::before {
  width: 120px;
}

.timeline ol li.in-view .time-wrapper::after {
  transition-delay: 0.8s;
  transform: scale(1.5);
}

.timeline ol li.in-view time,
.timeline ol li.in-view .detail > * {
  opacity: 1;
  transform: none;
}

.timeline ol li.in-view time {
  transition-delay: 1.3s;
}

.timeline ol li.in-view .detail h3 {
  transition-delay: 1.5s;
}

.timeline ol li.in-view .detail p {
  transition-delay: 1.7s;
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 700px) {
  .timeline ol li .item-inner {
    padding: 20px 40px;
  }

  .timeline ol li .time-wrapper::before {
    display: none;
  }

  .timeline ol li .time-wrapper::after {
    left: -45px;
    transform-origin: center;
  }

  .timeline ol li.in-view .time-wrapper::after {
    transition-delay: 0s;
  }

  .timeline ol li.in-view time {
    transition-delay: 0.5s;
  }

  .timeline ol li.in-view .detail h3 {
    transition-delay: 0.7s;
  }

  .timeline ol li.in-view .detail p {
    transition-delay: 0.9s;
  }
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* <!--START- CLIENTS LIST HERE --> */

.client-logos {
  padding: 15px;
  height: 50vh;
  overflow: hidden;
  position: relative;
  background-color: rgb(19,82,245); 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.client-logos h1{
  font-family: montserrat;
  font-size: 30px;
  font-weight: 800;
  color: white;
}

.logo-track {
  margin-top: 15px;
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.logo-track img {
  height: 80%;
  object-fit: contain;
  max-height: 100px;
}

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


/* ********************************************************************* */
    /* <style> */
  .map-container {
    width: 100%;
    height: 450px;
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Responsive height for smaller screens */
  @media (max-width: 768px) {
    .map-container { height: 300px; }
  }
  @media (max-width: 480px) {
    .map-container { height: 220px; }
  }
