/* Note: YEH HE T-COMPANIES ka section */

.trusted-section {
  padding: 90px 0;
}

.premium-trusted{
  padding: 20px 0;
  background: transparent;
}

/* MAIN WIDE BOX */
.premium-trusted .container{
  width: 98%;
  max-width: 1400px;

  background: #f2f3f5;
  border: 1px solid #999;
  border-radius: 20px;

  padding: 60px 50px;

  position: relative;
  overflow: hidden;

  

  margin-top: 5px;   /* almost top touch */
}

/* BLUE GLOW EFFECT */
.premium-trusted .container::before,
.premium-trusted .container::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #3b82f6;
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.premium-trusted .container::before{
  top: -80px;
  left: -80px;
}

.premium-trusted .container::after{
  bottom: -80px;
  right: -80px;
}

/* CONTENT ABOVE EFFECT */
.premium-trusted .container > *{
  position: relative;
  z-index: 2;
}

/* HEADER */
.premium-header{
  text-align: center;
  margin-bottom: 50px;
}

.badge{
  display: inline-block;
  padding: 8px 18px;
  background: #dbeafe;
  border:1px solid #f2f2f2;
  color: #1d4ed8;
  font-size: 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.budge{
  display: inline-block;
  padding: 8px 18px;
  background: #000;
  border:1px solid #f2f2f2;
  color: #fff;
  font-size: 12px;
  border-radius: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.premium-header h2{
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.premium-header p{
  color: #475569;
  margin-top: 10px;
  font-size: 16px;
}

/* GRID */
.company-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.company{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(59,130,246,0.2);

  padding: 18px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 600;
  color: #0f172a;

  transition: 0.3s ease;
}

/* HOVER */
.company:hover{
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 12px 25px rgba(59,130,246,0.15);
}

/* ICON */
.company i{
  color: #2563eb;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .company-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
/* YAHA END HE  */

@media (max-width: 768px){

  .company-grid{
    margin-left: -25px;
  }

}