/* ===============================
   100X ENGINEERS SECTION
=================================*/
.engineers-section {
  width: 100%;
  background: #f3f3f3;
  padding: 120px 0;
}

.engineers-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto auto;
  gap: 80px 100px;
  align-items: start;
}

/* ===============================
   INTRO (Top Left)
=================================*/
.engineers-intro {
  grid-column: 1;
  grid-row: 1;
}

.engineers-logo img {
  width: 280px;
  margin-bottom: 25px;
}

.engineers-subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #444;
  margin-bottom: 25px;
}

.engineers-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

/* ===============================
   TOP RIGHT LARGE IMAGE
=================================*/
.engineers-image-large {
  grid-column: 2;
  grid-row: 1;
}

.engineers-image-large img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  background: #ddd;
}

/* ===============================
   BOTTOM LEFT IMAGE
=================================*/
.engineers-image-small {
  grid-column: 1;
  grid-row: 2;
}

.engineers-image-small img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  background: #ddd;
}

/* ===============================
   BOTTOM RIGHT TEXT
=================================*/
.engineers-text {
  grid-column: 2;
  grid-row: 2;
  max-width: 600px;
}

.engineers-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 22px;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {
  .engineers-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .engineers-image-large,
  .engineers-image-small,
  .engineers-text {
    grid-column: auto;
    grid-row: auto;
  }

  .engineers-image-large img,
  .engineers-image-small img {
    height: auto;
  }
}


/* ===============================
   BUTTON ROW SECTION
=================================*/

.vet-button-row {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap; /* makes it responsive */
}

/* Individual Button */
.vet-btn {
  display: inline-block;
  min-width: 260px;          /* Equal width buttons */
  padding: 18px 40px;
  background-color: #2f2f2f; /* Dark background */
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.vet-btn:hover {
  background-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Active Click Effect */
.vet-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===============================
   RESPONSIVE DESIGN
=================================*/

@media (max-width: 992px) {
  .vet-button-row {
    gap: 25px;
  }

  .vet-btn {
    min-width: 220px;
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .vet-button-row {
    flex-direction: column;
    gap: 20px;
  }

  .vet-btn {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .vet-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}