body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.hero {
    height: 90vh;
    background: url('img/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    font-weight: 600;
}

.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    height: 220px;
    object-fit: cover;
}

.cta-section {
    background: #1d3557;
    color: #fff;
    padding: 60px 0;
}

.footer {
    background: #0b1d36;
    color: #fff;
    padding: 60px 0 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
}

.abtus{
        font-family: Allison, cursive;
    font-size: 60px;
    font-weight: bold;
}
/* Fleet Card Styling */
.fleet-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fleet-img {
  position: relative;
  overflow: hidden;
}

.fleet-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.08);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.fleet-body {
  padding: 20px;
}
#services .row {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

#services .row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
}
html {
  scroll-behavior: smooth;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}