.jkc-top-block {
  width: 100%;
  background: #fff;
}

/* 🔥 GRID FIX */
.jkc-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 520px;              /* 🔥 SAME HEIGHT FOR ALL */
}

/* COMMON COLUMN */
.jkc-col {
  position: relative;
  overflow: hidden;
}

.image-col {
  height: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* optional */
}

.jkc-full-img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* 🔥 KEY LINE */
  display: block;
}


/* BACKGROUND IMAGE COLUMNS */
.image-box {
  background-size: cover;
  background-position: center;
}

/* OVERLAY FIX */
.overlay {
  position: absolute;
  inset: 0;
  padding: 30px;              /* 🔥 reduced padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay.center {
  background: rgba(255,255,255,0.9);
  text-align: center;
}

.overlay.text {
  background: rgba(255,255,255,0.95);
}

/* CTA */
.btn-quote {
  margin-top: 24px;
  background: #f4c430;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* SOCIAL */
.jkc-social-strip {
  padding: 50px 0;
  background: #fff;
}

/* MOBILE */
@media (max-width: 992px) {
  .jkc-top-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .jkc-col {
    height: 360px;
  }
}


/* SOCIAL */
.jkc-social-strip {
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 720px;
}

.social-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.social-info h5 {
  margin: 0;
  font-size: 18px;
}

.social-logo img {
  width: 40px;
}

/* MOBILE */
@media(max-width: 992px){
  .jkc-top-grid {
    grid-template-columns: 1fr;
  }
}
