/*
Theme Name:  Jyotiinox
Description: .

Author:  Rahul
Version: 1.0.1
Tags:  
*/


.infra-master-section {
  background: url(../img/team-bg-1-1.png) center/cover no-repeat;
  
  
}




.infra-card-row {
  row-gap: 30px;
}

/* CARD */
.infra-premium-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 90%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}
.infra-premium-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 85px rgba(0, 0, 0, 0.22);
}

/* IMAGE */
.infra-card-image {
  height: 220px;
  overflow: hidden;
}

.infra-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.infra-premium-card:hover img {
  transform: scale(1.15);
}

/* BODY */
.infra-card-body {
  padding: 34px 30px 40px;
  text-align: center;
}

/* HEADINGS */
.infra-card-body h3 {
    font-weight: 800;
    margin-bottom: 6px;
    font-size: 26px;
}

.infra-card-body span {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7a7a;
}

.infra-divider {
    width: 60px;
    height: 4px;
    margin: 18px auto 20px;
    background: linear-gradient(90deg, #1d80c236, #1d80c2);
    border-radius: 50px;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .infra-card-row {
    row-gap: 40px;
  }
}

@media (max-width: 575px) {
  .infra-card-image {
    height: 190px;
  }

  .infra-card-body {
    padding: 28px 22px 34px;
  }

  .infra-card-body h3 {
    font-size: 26px;
  }
}