body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  color: #222;
  line-height: 1.7;
  min-height: 100vh;
}

/* Navigation */
/* Modern Navbar Styles */
.navbar {
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  max-width: 1300px;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffb703;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.navbar-logo:hover {
  color: blue;
}
.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  height: 60px;
}
.navbar-menu li a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 3px solid transparent;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: blue;
  border-bottom: 3px solid blue;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle.active .bar {
  background-color: #000; /* or any color you prefer */
}

.navbar-logo-img {
  height: 40px;        /* Adjust as needed */
  width: 40px;         /* Adjust as needed */
  margin-right: 0.7em; /* Space between logo and text */
  border-radius: 50%;  /* Optional: makes the logo round */
  border: 2px solid #023047; /* Optional: subtle border */
  background: #fff;    /* Optional: white background for logo */
  object-fit: contain;
}

.navbar-company-name {
  color: blue;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  vertical-align: middle;
}

.navbar-logo:hover .navbar-company-name {
  color: #ffd166;
}


/* Responsive Navbar */
@media screen and (max-width: 960px) {
  .navbar-menu {
    flex-direction: column;
    width: 100%;
    height: 0;
    position: absolute;
    top: 60px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    background: #023047;
    overflow: hidden;
    z-index: 998;
  }
  .navbar-menu.active {
    height: calc(100vh - 60px);
    opacity: 1;
  }
  .navbar-menu li {
    width: 100%;
  }
  .navbar-menu li a {
    padding: 2rem;
    width: 100%;
    display: table;
    border-bottom: none;
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
  }
}


/* Hero Section */
.fleet-hero {
  background: linear-gradient(120deg, #2196f3 60%, #ffb703 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(2,48,71,0.12);
}
.fleet-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.fleet-hero p {
  font-size: 1.18rem;
  opacity: 0.97;
  font-weight: 500;
}

/* Fleet Content */
.fleet-content {
  max-width: 1200px;
  margin: 3rem auto 2.5rem auto;
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(2,48,71,0.09);
  padding: 2.5rem 2rem;
}
.fleet-content section {
  margin-bottom: 2.5rem;
  background: linear-gradient(120deg, #fff 80%, #e0eafc 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-left: 6px solid #2196f3;
  transition: box-shadow 0.2s, border-left 0.2s;
}
.fleet-content section:hover {
  box-shadow: 0 8px 32px rgba(33,150,243,0.13);
  border-left: 6px solid #ffb703;
}
.fleet-content h2 {
  color: #023047;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-left: 0.7rem;
  letter-spacing: 1px;
  font-weight: bold;
}

/* Table Styling */
.fleet-table-container {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(2,48,71,0.04);
  font-size: 1.06rem;
  transition: box-shadow 0.2s;
}
th, td {
  padding: 1rem 1.2rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
th {
  background: linear-gradient(90deg, #2196f3 80%, #ffb703 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 1px;
  border-bottom: 3px solid #ffb703;
}
tr:nth-child(even) {
  background: #f1f5fa;
}
tr:hover {
  background: #ffe7a3;
  transition: background 0.2s;
}
td {
  border-bottom: 1px solid #e0eafc;
}

/* Footer */
footer {
  background: #023047;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .fleet-content {
    padding: 1.2rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .fleet-content {
    padding: 1.3rem 0.7rem;
  }
  .fleet-content section {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  .fleet-hero h1 {
    font-size: 1.5rem;
  }
  .fleet-content {
    padding: 0.7rem 0.3rem;
  }
  .fleet-content section {
    padding: 0.7rem 0.3rem 0.3rem 0.3rem;
  }
  th, td {
    padding: 0.6rem 0.5rem;
    font-size: 0.98rem;
  }
}

@media screen and (max-width: 960px) {
  .navbar-menu li a {
    border-bottom: none !important;
    border-left: 4px solid transparent;
    padding: 1rem 0 1rem 1.5rem;
    transition: color 0.3s, border-left 0.3s, background 0.3s;
    background: none;
  }
  .navbar-menu li a:hover,
  .navbar-menu li a.active {
    border-left: 4px solid #ffb703 !important;
    color: #ffb703;
    background: rgba(255, 183, 3, 0.08);
  }
}