* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.top-bar {
  background-color: #5c9ccd;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: bold;
  color: #2a66a1;
  font-size: 20px;
}

.company-slogan {
  font-size: 12px;
  color: gray;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  margin-right: 30px;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.nav-links a:hover {
  color: #2a66a1;
}

.contact {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: linear-gradient(45deg, #58a9d6, #3a3ad4);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-btn:hover {
  background: linear-gradient(45deg, #3a3ad4, #58a9d6);
}

.menu-icon {
  font-size: 25px;
  margin-left: 15px;
  cursor: pointer;
}

.content {
  margin-top: 120px;
  padding: 20px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1;
}

.dropdown-menu a {
  padding: 10px;
  display: block;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.menu-icon {
  font-size: 25px;
  margin-left: 15px;
  cursor: pointer;
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
}

.dropdown-menu a {
  padding: 10px;
  display: block;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.menu-icon:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .dropdown-menu {
    right: 10px;
  }
}
.banner {
  background: url("https://www.tops-int.com/images/home/home-banner.jpg")
    no-repeat center center/cover;
  height: 577px;
}
.banner h1 {
  color: white;
  font-size: 40px;
  text-align: left;
  margin-left: 72px;
  padding-top: 200px;
}
.btn-brand {
  background: linear-gradient(273.57deg, #2e3192 1.14%, #4c92be 100%);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.5rem;
  margin-left: 72px;
  margin-top: 20px;
}
.info-section {
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4a90e2;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  width: 250px;
}

.badge-logo {
  width: 100px;
  margin-bottom: 10px;
}

.info-boxes {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  flex: 1;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-box {
  text-align: center;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
  margin-left: 72px;
}

.line {
  width: 2px;
  height: 60px;
  background-color: #002d72;
}

.icon {
  font-size: 36px;
  color: #4a90e2;
  margin-bottom: 10px;
}

.info-number {
  font-size: 24px;
  font-weight: bold;
}

.info-label {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  color: #333;
}
.info-number {
  color: black;
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.rating-item {
  text-align: center;
  margin: 20px;
  flex: 1;
  min-width: 200px;
}

.rating-logo {
  width: 100px;
  margin-bottom: 10px;
}

.divider {
  width: 50%;
  margin: 10px auto;
  border: none;
  border-top: 1px solid #ccc;
}

.rating-score {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}

.score {
  font-weight: bold;
}

.star-set .star {
  color: orange;
}

.placement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 2px solid #007bff;
  border-radius: 8px;
  background: linear-gradient(to right, #e6f3ff, #ffffff);
  max-width: 70%;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.placement-content {
  flex: 1;
  padding: 20px;
}

h3 {
  font-size: 24px;
  color: #333;
}

.highlight {
  color: #ff6600;
  font-weight: bold;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  border-top: 2px solid;
  border-image: linear-gradient(to right, #007bff, transparent) 1;
  border-bottom: 2px solid;
  border-image-slice: 1;
  padding: 10px 0;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.icon {
  font-size: 24px;
  margin-right: 10px;
}

.text {
  font-size: 18px;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #0056b3, #007bff);
}

.placement-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.placement-image img {
  max-width: 100%;
  border-radius: 8px;
}
