* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding-top: 40px; /* Reduced padding */
}
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Header Layout */
.header {
  position: fixed; /* Better than absolute for navbars */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  background-color: #2d3248; /* Solid background for visibility */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Logo */
.logo img {
  height: 60px;
  width: auto;
}

/* ✅ Nav Links */
.navbar ul {
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffd740;
}

/* ---------- OFFICE TIMES SECTION ---------- */
.office-times {
  display: flex;
  flex-direction: row; /* Ensure horizontal layout */
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
}

.office {
  flex: 0 0 250px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.office:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.office h4 {
  font-size: 1.2rem;
  color: #c0392b;
  margin-bottom: 0.5rem;
}

.clock {
  margin: 1rem auto;
  display: block;
}

.time-text {
  font-size: 1rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 0.5rem 0;
}

.work-hours {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.work-hours span {
  color: #e74c3c;
  font-weight: 500;
}
 /* ✅ Footer */
 .footer {
  background-color: #333a56;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }

  .office-times {
    flex-direction: column;
    align-items: center;
  }

  .office {
    width: 90%;
  }
  
}
