
  /*Intro hero Section*/
    .web-dev-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #f8f9fa;
  }

  .web-dev-section-content {
    flex: 1;
    padding-right: 40px;
  }

  .web-dev-section-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .web-dev-section-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }

  .web-dev-section-content button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
  }

  .swiper {
    width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


/*IOT Sectors*/
.appdev-container {
  display: flex;
  justify-content: space-between;
  padding: 200px;
  gap: 40px;
  flex-wrap: wrap;
  
}

.appdev-text {
  flex: 1;
  max-width: 500px;
}

.appdev-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.appdev-text p {
  font-size: 1.1rem;
  margin: 20px 0;
}

.appdev-button {
  padding: 10px 20px;
  font-weight: bold;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
}

.appdev-slider {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.appdev-slide {
  background-color: #2f93ff;
  color: white;
  padding: 30px;
  border-radius: 10px;
  display: none;
}

.appdev-slide.appdev-active {
  display: block;
}

.appdev-slide h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.appdev-slide h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.appdev-slide p {
  font-size: 1rem;
  line-height: 1.6;
}

.appdev-dots {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.appdev-dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.appdev-dot.appdev-active {
  background-color: #2f93ff;
}

@keyframes slideJumpLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateX(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideJumpRight {
  0% {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.appdev-text,
.appdev-slider {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.appdev-text.animate-in {
  animation: slideJumpLeft 0.8s ease-out forwards;
}

.appdev-slider.animate-in {
  animation: slideJumpRight 0.8s ease-out 0.2s forwards;
}


/*IoT Development Process*/
.iot-process-vertical {
  padding: 4rem 2rem;
  background-color: #f8fafc;
  max-width: 1200px;
  margin: auto;
}

.iot-process-vertical h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.vertical-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
  min-width: 40px;
  min-height: 40px;
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.step-content h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}
