/* =========================
   TECH TABS SECTION
========================= */

.tech-section{
  padding:90px 5%;
  background:#03152c;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* HEADING */

.tech-heading{
  text-align:center;
  max-width:1200px;
  margin:auto;
}

.tech-heading h3{
  font-size:35px;
  line-height:1.3;
  margin-bottom:25px;
}

.tech-heading p{
  font-size:15px;
  color:#cbd5e1;
  line-height:1.8;
}

/* TABS */

.tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:50px;
  margin-top:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding-bottom:20px;
}

.tab-btn{
  background:none;
  border:none;
  color:#b6b6b6;
  font-size:20px;
  font-weight:600;
  cursor:pointer;
  position:relative;
  padding-bottom:12px;
  transition:0.3s;
}

.tab-btn.active,
.tab-btn:hover{
  color:#ffffff;
}

.tab-btn.active::after{
  content:"";
  width:100%;
  height:3px;
  background:#ffffff;
  position:absolute;
  left:0;
  bottom:-21px;
}

/* TAB CONTENT */

.tab-content{
  display:none;
  margin-top:60px;
}

.tab-content.active{
  display:block;
}

/* GRID */

.tech-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
}

/* BOX */

.tech-box{
  width:180px;
  background:rgba(255,255,255,0.06);
  border-radius:18px;
  text-align:center;
  padding:30px 15px;
  transition:0.3s;
  backdrop-filter:blur(6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.tech-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.08);
}

/* IMAGE */

.tech-box img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin-bottom:22px;
  background:#fff;
  border-radius:50%;
  padding:10px;
}

/* TITLE */

.tech-box h3{
  font-size:20px;
  font-weight:500;
}


/* =========================
   MOBILE TABS SLIDER
========================= */

@media(max-width:768px){

.tech-heading{
  text-align:center;
  max-width:1200px;
  margin:auto;
}

.tech-heading h3{
  font-size:20px;
  line-height:1.3;
  margin-bottom:25px;
}

.tech-heading p{
  font-size:12px;
  color:#cbd5e1;
  line-height:1.8;
}

  .tabs{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:18px;
    justify-content:flex-start;
    padding-bottom:15px;
    scrollbar-width:none;
  }

  .tabs::-webkit-scrollbar{
    display:none;
  }

@media(max-width:768px){

  .tab-btn{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:15px;
    padding:12px 18px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:6px;
    background:rgba(255,255,255,0.04);
  }

  .tab-btn.active{
    border-color:#d4af37;
    background:#d4af37;
    color:#03152c;
  }

}

  /* TECH GRID */

  .tech-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }

  /* BOX */

  .tech-box{
    width:100%;
    padding:28px 15px;
    border-radius:14px;
  }

  .tech-box img{
    width:60px;
    height:60px;
    margin-bottom:16px;
  }

  .tech-box h3{
    font-size:18px;
  }

}