body {
  margin: 0;
  font-family: Arial;
  scroll-behavior: smooth;
}

/* TOPBAR */
.topbar {
  background: #1e2c54;
  color: white;
  padding: 10px;
}

.topbar a {
  color: white;
  text-decoration: none;
}

.container {
  display: flex;
  justify-content: space-between;
}

/* NAVBAR */
/* NAVBAR FIX */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* 🔥 vertical alignment fix */
  padding: 10px 20px;
}

/* LEFT & RIGHT MENUS */
.nav-left, .nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* ===== NAVBAR FULL FIX ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
}

/* LEFT & RIGHT MENUS */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  flex: 1;   /* 🔥 equal space */
}

/* LEFT ALIGN */
.navbar ul:first-child {
  justify-content: flex-start;
}

/* RIGHT ALIGN */
.navbar ul:last-child {
  justify-content: flex-end;
}

/* ===== LOGO CENTER PERFECT ===== */
.logo {
  flex: 0;   /* 🔥 prevent stretching */
  text-align: center;
}

.logo img {
  height: 110px;   /* 🔥 perfect size */
  width: auto;
  display: block;
  margin: 0 auto;
  
}

/* REMOVE ROUND IF ANY */
.logo img {
  border-radius: 0;
}

/* ===== LINKS ===== */
.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #1e2c54;
}

/* ===== HERO (UNCHANGED BUT CLEAN) ===== */
.hero {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active {
  display: block;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* CERTIFICATIONS */
.certifications {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

/* ABOUT */
.about {
  padding: 40px;
  text-align: center;
}

/* ===== CONTACT SECTION UPGRADE ===== */
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  background: #f5f7fb;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  text-decoration: none;
  color: #1e2c54;
}

/* RIGHT SIDE */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #1e2c54;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #1e2c54;
  color: white;
  text-align: center;
  padding: 10px;
}