/*category css*/
   
    .tech-section {
      /*background-color:#0A2540; #313131;*/
	
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 150px 20px;
      overflow: hidden;
	  position: relative;
      /*background: #0A2540;*/
	  background-image:url(../images/bg/bg.png);
	   background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
	 
    }
.tech-section::before,
.tech-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.tech-section::before {
  top: 0;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.tech-section::after {
  bottom: 0;
  background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0) 100%);
}

    .tech-container {
      position: relative;
      width: 100%;
      max-width: 1100px;
      text-align: center;
	  z-index: 2;
    }

    /* Items wrapper */
    .tech-items {
      position: relative;
      height: 320px;
    }

    /* Connecting line */
    .tech-line {
      position: absolute;
      top: 75px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: #fff;
      opacity: 0;
      transition: width 1.5s ease 1.1s, opacity 0.4s ease 1.1s;
      z-index: 1;
    }

    .tech-items.active .tech-line {
      width: 60%;
      opacity: 1;
    }

    /* Each item starts in center */
    .tech-item {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%) scale(0.8);
      transition: all 5s ease;
      cursor: pointer;
      z-index: 2;
      width: 240px;
    }
.tech-item h4 {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show h4 after animation completes */
.tech-items.active .tech-item h4 {
  opacity: 1;
  transform: translateY(0);
}

/* Delay each h4 until final position */
.tech-items.active .item-1 h4 {
  transition-delay: 3.3s;
}

.tech-items.active .item-2 h4 {
  transition-delay: 3.6s;
}

.tech-items.active .item-3 h4 {
  transition-delay: 3.9s;
}


    /* Final positions after animation */
    .tech-items.active .item-1 {
      left: 20%;
      transform: translateX(-50%) scale(1);
    }

    .tech-items.active .item-2 {
      left: 50%;
      transform: translateX(-50%) scale(1);
    }

    .tech-items.active .item-3 {
      left: 80%;
      transform: translateX(-50%) scale(1);
    }

    /* Circle styling */
    .circle {
      width: 150px;
      height: 150px;
      margin: 0 auto;
      border-radius: 50%;
      background: #bcbdbd;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      z-index: 2;
    }

    .circle span {
      font-size: 30px;
    }

    .tech-item:hover .circle {
      transform: scale(1.08);
      box-shadow: 0 0 20px rgba(0, 209, 255, 0.35);
    }

    /* Hover content below circle */
    .hover-content {
      margin-top: 18px;
      padding: 16px;
      background: #bcbdbd;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-radius: 12px;
      color: #0d3c8a;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      text-align: left;
    }

    .hover-content h4 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #0d3c8a;
      text-align: center;
    }

    .hover-content ul {
      margin: 0;
      padding-left: 18px;
    }

    .hover-content li {
      margin-bottom: 8px;
      font-size: 15px;
      line-height: 1.4;
      color: #0d3c8a;
    }

    .tech-item:hover .hover-content,
    .tech-item.active-mobile .hover-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Tablet */
    @media (max-width: 991px) {
      .tech-items {
        height: 360px;
      }

      .tech-items.active .item-1 {
        left: 18%;
      }

      .tech-items.active .item-3 {
        left: 82%;
      }

      .circle {
        width: 100px;
        height: 100px;
      }

      .tech-item {
        width: 200px;
      }
	  
	  .tech-line {
    top: 50px;
  }
    }

    /* Mobile 
    @media (max-width: 767px) {
      .tech-section {
        min-height: auto;
        padding: 60px 15px;
      }

      .tech-items {
        height: 700px;
      }

      .tech-line {
        width: 2px !important;
        height: 0;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        /*transition: height 0.8s ease 0.9s, opacity 0.4s ease 0.9s;
		transition: width 1.5s ease 1.1s, opacity 0.4s ease 1.1s;
      }

      .tech-items.active .tech-line {
        height: 360px;
        opacity: 1;
      }

      .tech-item {
        width: 100%;
      }

      .tech-items.active .item-1 {
        left: 50%;
        top: 0;
      }

      .tech-items.active .item-2 {
        left: 50%;
        top: 220px;
      }

      .tech-items.active .item-3 {
        left: 50%;
        top: 440px;
      }

      .circle {
        width: 90px;
        height: 90px;
      }

      .circle span {
        font-size: 24px;
      }

      .hover-content {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
      }
    }

*/