*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(90deg,rgb(0, 255, 136, 0.1),rgb(0, 119, 255, 0.1));
}
/* Hero Section */
.hardware-hero-section{
    height: 450px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.hardware-hero-left{
    height: 90%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.hardware-hero-left h1{
    font-family: "Varela Round", sans-serif;
    font-size: 45px;
    width: 50%;
    color: black;
}
.hardware-hero-left h1 span{
    font-family: "Varela Round", sans-serif;
    font-size: 45px;
        position: relative; 
}
.hardware-hero-left h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
      background: linear-gradient(90deg, #00ff88, #0077ff);
    border-radius: 2px;
}
.hardware-hero-left p{
    font-size: medium;
    width: 50%;
    color: gray;
}
.hardware-hero-right{
    height: 90%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hardware-hero-right img{
    height: 100%;
    width: 90%;
    object-fit: contain;
}
@media (max-width: 768px) {
.hardware-hero-section {
    height: 350px;
}
.hardware-hero-left p,.hardware-hero-left h1  {
    width: 65%;
}
}
@media (max-width: 600px) {
    .hardware-hero-section {
        height: fit-content;
        flex-direction: column;
    }
    .hardware-hero-left {
    height: fit-content;
    width: 100%;
    padding-top: 30px;
}
.hardware-hero-right {
    height: fit-content;
    width: 100%;
}
}

 /* Section styling */
    #vision-component-section {
      padding: 50px 20px;
      text-align: center;
    }

    #vision-component-section h2 {
      font-size: 28px;
      margin-bottom: 40px;
    }
    .vision-component-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
   .vision-component-box {
  flex: 1 1 200px;
  max-width: 250px;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background-color: white;
  border: 5px solid;
  border-image: linear-gradient(90deg, #00ff88, #0077ff) 1; 
  transition: transform 0.3s ease;
}
    .vision-component-box:hover {
      transform: translateY(-8px);
    }

    .vision-component-box img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  animation: zoomLoop 4s ease-in-out infinite;
}
@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

    .vision-component-box p {
      font-size: 18px;
      font-weight: bold;
    }
    @media (max-width: 900px) {
      .vision-component-box {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 600px) {
      .vision-component-box {
        flex: 1 1 100%;
      }
    }

    /* hardware-text-container */
    #hardware-text-container{
        height: fit-content;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 30px;
        align-items: center;
    }
    #hardware-text-inner-container{
        height: fit-content;
        width: 95%;
        max-width: 1200px;
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
        background-color: white;
        border: 2px solid #eee;
    }
    #hardware-text-inner-container h2{
        font-size: 30px;
    font-family: "Varela Round", sans-serif;
        text-align: left;
    }
    #hardware-text-inner-container h3{
        font-size: 25px;
        color: gray;
        text-align: left;
    }
    #hardware-text-inner-container p{
        font-size: medium;
        color: #333;
        text-align: left;
    }
    
    #hardware-text-inner-container h3{
        font-size: 20px;
        text-align: left;
    }
@media (max-width: 600px) {

    #hardware-text-container {
    padding: 10px;
}
#hardware-text-inner-container h2 {
    font-size: 23px;
}#hardware-text-inner-container h3 {
    font-size: 15px;
}
}