body {
  font-family: Arial, sans-serif;
  margin: 0;
  scroll-behavior: smooth;
  background-color: #f9f9f9;
  color: #333;
}
header {
  background-color: none;
  color: white;
  padding: 20px;
  text-align: center;
}
nav {
  background-color: none;
  display: flex;
  justify-content: center;
  padding: 10px;
  /*position: sticky;*/
  top: 0;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
nav a:hover { text-decoration: underline; }
section { padding: 30px 20px; margin-top: 0px; text-align: center; }
section h2 { color: #0066cc; margin-bottom: 20px; }
.hero {
   background: no-repeat center center;
   background-size: cover;
  color: gray;
  padding: 40px 20px;
  
}
.hero h1 {
  margin-top: 0;
  color: blue;
}
.services { display: flex; flex-wrap: wrap; justify-content: center; }
.service {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}
button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
}
button:hover { background-color: #004080; }
/* Hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* Visible state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* Topbar layout */
/*.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: none;
  color: white;
  padding: 10px 20px;
}*/

/*.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 250px;
  color: white;
  padding: 10px 20px;
}*/

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: url("images/banner3.jpg") no-repeat center;
  background-size: cover;

  min-height: 120px;   /* better than fixed height */
  padding: 20px 40px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000; /* ensures it stays above content*/
}

/* Logo section */

/* Make logo block vertical (image → name → tagline) */
.logo {
  display: flex;
  flex-direction: column;   /* ✅ stack items */
  align-items: flex-start;
}

/* Keep text properly aligned */
.logo-text {
  display: flex;
  flex-direction: column;
}

/* Menu */
/* DESKTOP (default) */
.menu {
  display: flex;
  gap: 20px;
  
}

/* Hamburger hidden in desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Hamburger hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
/* Text beside logo */
.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  margin: 0;
  font-size: 18px;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
}

/* Logo image */
.logo img {
  height: 150px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
    display: block;
  }
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: 100%;
    left: 0;
  }

  .menu a {
    padding: 12px;
    border-top: 1px solid #ccc;
    text-align: center;
  }

  .menu.active {
    display: flex;
  }
  .topbar {
    justify-content: space-between; /* keep logo left, hamburger right */
    align-items: center;
    text-align: left; /* prevent centering */
  }
   .logo {
    flex-direction: column; /* keep stacking */
    align-items: flex-start;
  }
  .logo-text {
    align-items: flex-start;
  }
  .logo h1,
  .logo p {
    text-align: left;
  }
}
