*{
  margin : 0px;
  padding : 0px;
  width : 100%;
}

.box {
  width: 100%;
  min-height: 40vh;          /* thori space */
  padding-top: 10px;         /* image ko upar feel */
}

.box img {
  display: block;            /* removes inline gap */
  max-width: 100%;
  height: auto;              /* 👈 NO SQUEEZE */
  margin: 0 auto;            /* horizontally center */
}
  
  .image-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.0); /* Black with 50% opacity */
    color: #FFFFFF;
    text-shadow: 0 12px 10px black;
    font-weight: bold;
    font-family: 'Bell MT';
    font-size: 18px;
    padding-top: 15%;
    text-align: center;
  }

  .image-overlay p{
    width: 100%;
    height: 15vh;
  }
  
.OurFleet {
  width: 100%;
  padding: 80px 0;
}

.fleet-wrapper {
  width: 90%;
  margin: auto;
}

/* ROW */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 blocks per row */
  gap: 30px;
  margin-bottom: 40px;
}

/* CARD */
.fleet-card {
  background: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 20px black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgb(39, 39, 39);
}

/* IMAGE */
.fleet-card img {
  width: 90%;
  height: 50%;
  object-fit: contain; /* NO squeeze */
  object-position: center;
  display: block;
  border-radius: 50%;
}

/* TEXT */
.fleet-card h1 {
  font-size: 22px;
  color: rgb(12, 12, 70);
  margin: 15px 0 5px;
}

.fleet-card p {
  font-size: 15px;
  margin-bottom: 15px;
}

/* BUTTON */
.fleet-btn {
  display: inline-block;
  width: 50%;
  height: 15%;
  padding-top: 0;
  text-align: center;
  border: 5px solid #000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: background 0.3s, transform 0.3s;
}

.fleet-btn:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 524px) and (min-width: 330px) {
  .box {
    min-height: 20vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }

.OurFleet {
  width: 100%;
  padding: 80px 0;
}

/* ROW */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 👈 3 blocks per row */
  gap: 30px;
  overflow: hidden; /* 🔴 SECOND IMPORTANT */
}

/* CARD */
.fleet-card {
  width: 100%;
  overflow: hidden;
}

/* IMAGE */
.fleet-card img {
  width: 100%;
  height: 50%;
  object-fit: contain; /* NO squeeze */
  object-position: center;
  display: block;
  border-radius: 50%;
}

}

@media screen and (min-width: 525px) and (max-width: 768px) {
  .box {
    min-height: 20vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }

.OurFleet {
  width: 100%;
  padding: 80px 0;
}

.fleet-wrapper {
  width: 100%;
  margin: auto;
}

/* ROW */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 3 blocks per row */
  gap: 30px;
  overflow: hidden; /* 🔴 SECOND IMPORTANT */
}

/* CARD */
.fleet-card {
  width: 100%;
  overflow: hidden;
}

/* IMAGE */
.fleet-card img {
  width: 100%;
  height: 50%;
  object-fit: contain; /* NO squeeze */
  object-position: center;
  display: block;
  border-radius: 50%;
}

/* TEXT */
.fleet-card h1 {
  font-size: 18px;
  font-weight: bold;
  color: rgb(12, 12, 70);
  margin: 15px 0 5px;
}
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .box {
    min-height: 20vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 0vh;
  }

  .image-overlay {
    min-height: 40vh;
  }

.OurFleet {
  width: 100%;
  padding: 80px 0;
}

/* ROW */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 3 blocks per row */
  gap: 30px;
  overflow: hidden; /* 🔴 SECOND IMPORTANT */
}

/* CARD */
.fleet-card {
  width: 100%;
  overflow: hidden;
}

/* IMAGE */
.fleet-card img {
  width: 100%;
  height: 50%;
  object-fit: contain; /* NO squeeze */
  object-position: center;
  display: block;
  border-radius: 50%;
}
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .box {
    min-height: 20vh;
    padding-top: 8px;
  }

  .box img {
    max-width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .image-overlay {
    min-height: 40vh;
  }

.OurFleet {
  width: 100%;
  padding: 20px;
}

.fleet-wrapper {
  width: 100%;
  margin: auto;
}

/* ROW */
.fleet-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 blocks per row */
  gap: 30px;
  overflow: hidden; /* 🔴 SECOND IMPORTANT */
}

/* CARD */
.fleet-card {
  width: 100%;
  overflow: hidden;
}

/* IMAGE */
.fleet-card img {
  width: 100%;
  height: 50%;
  object-fit: contain; /* NO squeeze */
  object-position: center;
  display: block;
  border-radius: 50%;
}

/* TEXT */
.fleet-card h1 {
  font-size: 18px;
  color: rgb(12, 12, 70);
  margin: 15px 0 5px;
}
}
