/* Home page hero logos (logo1.png + logo2.png) */
.hero-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;

  margin:0 0 18px;
  position:relative;
  z-index:5;
  width:100%;
}

.hero-logos img{
  height:190px;          /* increased size */
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
  overflow:visible;
}

/* Keep both logos same size */
.hero-logos img:nth-child(2){
  height:240px;
}

@media (max-width:768px){
  .hero-logos{
    gap:1.2rem;
    margin-bottom:12px;
    padding:0 8px;
  }

  .hero-logos img{ height:60px; }
  .hero-logos img:nth-child(2){ height:90px; }
}








