* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

header {
  background-color: #0d1b2a;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.banner {
  position: relative;
  max-width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 110%;
  position: absolute;
}

.slides img {
  width: 100%;
  height: 110%;
  object-fit: cover;
}
/* Services Section Styles */
.services {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.service-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-item {
  width: 30%;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
  }
}
.logo-slogan-container {
  display: flex;
  align-items: center;
}
.logo-slogan-container img {
  max-height: 100px; /* Adjust as needed */
  margin-right: 10px;
}
.logo-slogan-container .slogan {
  font-size: 15px; /* Adjust as needed */
  color: #fff; /* Adjust color as needed */
  font-weight: bold;
}
.contact-info {
            position: absolute;
            top: 10px;
            right: 20px;
            text-align: right;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
            font-weight: bold;
        }

        .contact-info i {
            margin-right: 5px;
            font-weight: bold;
}
