/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(to right, #e9f89d, #0099cc, #617ee7, #ffffff);

}

/* Header Wrapper */
.header-wrapper {
  width: 100%;
  background: linear-gradient(to right, #f3f5f7, #f6f2f2, #f5f7f5, #fbfbf8);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding:  1rem 1rem 0.3rem 1rem;
  display: flex;
  justify-content: center;
}

/* Header Container */
header {
  width: 100%;
  max-width: 1500px;
  background: linear-gradient(to right, #85975b, #0099cc, #92ec8f, #9b9a9a);
  padding: 1rem;
}

/* Header Top Flex Layout */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

/* Navigation */
nav {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}
#nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
#nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #003366;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}
#nav-links li a:hover {
  background-color: #ffcc00;
  color: #000;
}
nav i {
  margin-right: 6px;
  font-size: 18px;
  color: #003366;
}
nav a:hover i {
  color: #ffcc00;
}

/* Contact Icon Colors */
#nav-links li a[href^="mailto:"],
#nav-links li a[href*="wa.me"] {
  color: #006400;
}
#nav-links li a[href^="mailto:"]:hover,
#nav-links li a[href*="wa.me"]:hover {
  background-color: #e6ffe6;
  color: #004d00;
}

/* Menu Toggle (for mobile) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Sidebar */
.container {
  display: flex;
  min-height: 80vh;
}
.sidebar {
  width: 25%;
  background: linear-gradient(to right, #cfd7bd, #bfdee8, #b3d6b2, #ddc9c9);
  padding: 1rem;
}
.sidebar h2 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 28px;
}
.sidebar ul {
  list-style: none;
}
.sidebar button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

/* Content Area */
.content {
  width: 75%;
  padding: 1rem;
}
.section {
  display: none;
}
.section:not(.hidden) {
  display: block;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  display: flex;
  justify-content: center;
  padding: 1rem;
  width: 100%;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.gallery-item {
  border: 1px solid #ddd;
  padding: 0.5rem;
  background-color: #f9f9f9;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

/* Section Styling (Freight, Movers, Storage, etc.) */
.freight-services,
.moving-services,
.storage-services,
.local-transfer,
.project-distribution,
.vsk-contact {
  padding: 1rem;
  background-color: #fefefe;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 1px solid #ddd;
}
.freight-services .intro,
.moving-content,
.storage-content,
.transfer-content,
.distribution-content,
.vsk-content {
  background-color: #f4f7fb;
  padding: 1.5rem;
  border-left: 4px solid #009688;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-radius: 6px;
  margin-bottom: 1rem;
}
.freight-services h2,
.moving-content h2,
.storage-content h2,
.transfer-content h2,
.distribution-content h2,
.vsk-content h2 {
  margin-top: 0;
  color: #009688;
}
.contact-block {
  background-color: #e6f2ff;
  padding: 1rem;
  border-radius: 6px;
}
.contact-block a {
  color: #004080;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  nav {
    width: 100%;
    justify-content: center;
  }

  #nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  header {
    padding: 0.5rem;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    width: 100%;
  }

  .container {
    flex-direction: column;
  }
}


body::before {
  content: "VSK";
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  color: #000;
  opacity: 0.03; /* Ultra subtle */
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
