/* =========================
   Header (Dark Glass / Modern)
========================= */
.header {
  display: flex;
  flex-direction: row;
  top: 10px; /* small gap from top */
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  position: fixed;
  width: calc(100% - 40px); /* almost full width */
  max-width: 1200px;
  padding: 0 20px;
  align-items: center;
  background: rgba(20, 20, 30, 0.85); /* dark semi-transparent */
  backdrop-filter: blur(10px);        /* glass blur effect */
  border-radius: 40px;                 /* pill corners */
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  z-index: 1000;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.1); /* subtle border */
  transition: all 0.3s ease;
}

/* Left section (phone) */
.left-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* Right section (email) */
.right-section {
  display: flex;
  align-items: center;
  margin-left: auto; /* push to the right edge */
  gap: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* Icons */
.phone-icon,
.email-icon {
  height: 35px;
  filter: invert(1); /* keep visible on dark background */
}

/* Hover effect */
.header:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.8);
  background: rgba(30, 30, 40, 0.95); /* slightly brighter on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    width: calc(100% - 20px);
    padding: 10px;
  }
  .left-section,
  .right-section {
    justify-content: center;
    width: 100%;
    margin: 5px 0;
  }
}