body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f5f9ff;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 40px;
  background-color: #0b3c5d;
}

/* Left & Right nav */
.nav-left, .nav-right {
  display: flex;
  gap: 25px;
}

.nav-left {
  justify-content: flex-start;
}


.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
}

.logo-text {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #0b3c5d, #328cc1);
  color: white;
}

.hero button {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 50px;
  gap: 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  padding: 15px;
  background: #0b3c5d;
  color: white;
}
/* LOGO STYLES */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: white;
}

/* CHAT */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #328cc1;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.chat-container {
  max-width: 800px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 20px;
}

#chat-box {
  height: 400px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.message {
  margin: 10px 0;
}

.user {
  text-align: right;
  color: #0b3c5d;
  font-weight: 600;
}

.bot {
  text-align: left;
  color: #333;
}

.chat-input {
  display: flex;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}

.chat-input button {
  padding: 10px 20px;
  background: #0b3c5d;
  color: white;
  border: none;
  cursor: pointer;
}
/* CENTER LOGO NAVBAR */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 30px;
  background: #0b3c5d;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-left a,
.nav-right a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

.center-logo {
  justify-self: center;
}

/* LOGO STYLING */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: white;
}
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
