* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: url('/images/header.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}
.logo-container {
  border: 2px dashed white;
      border-radius: 15px;
      padding: 30px;
      height: 150px;
      width: 650px;
      margin: 0 auto;
}
header {
  background: url('/images/header.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 20px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: dashed 2px white;
}
header {
  transition: box-shadow 0.3s ease;
}

header.sticky {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
}

#hero-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between boxes */
  max-width: 650px;
  margin: 20px auto;
}

.hero-box {
  flex: 1; /* take equal space */
  background: rgba(0, 122, 204, 0.2);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px; /* optional, matches box style */
}


section {
  padding: 20px 10px;
  max-width: 900px;
  margin: auto;
}

.service-box {
  font-size: large;
 border: 2px dashed white;
      border-radius: 15px;
  padding: 50px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: none;
  color: white;
}
/* Flex container for service boxes */
.services-container {
  font-size: medium;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Ensure service boxes flex nicely */
.service-box {
  font-size: medium;
  flex: 1 1 45%;
}
.services-container2 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}

.service-box2 {
  flex: 1 1 30%; /* three boxes side-by-side */
  border: 2px dashed white;
  border-radius: 15px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  color: white;
}


/* Responsive Navigation */
nav ul {
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
}

/* MEDIA QUERY FOR MOBILE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .services-container {
    flex-direction: column;
  }

  .service-box {
    flex: 1 1 100%;
  }

  section {
    padding: 20px;
  }

  #hero {
    padding: 20px;
  }

  form {
    width: 100%;
  }
}
/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Default nav links (horizontal) */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    text-align: right;
    margin-right: 20px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    background-color: #222;
    padding: 0;
  }

  nav ul.active {
    max-height: 500px; /* Enough to fit all menu items */
    padding: 10px 0;
  }
}
/* Keyframes for slide & fade */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation on page load (desktop and mobile) */
nav ul {
  animation: slideFadeIn 0.6s ease-out;
}

/* Mobile toggle override to preserve animation */
@media (max-width: 768px) 
{
  nav ul {
    animation: none; /* Reset by default on mobile */
  }

  nav ul.active {
    animation: slideFadeIn 0.4s ease-out;
  }
}
nav ul li {
  opacity: 0;
  animation: fadeInItem 0.5s forwards;
}

@keyframes fadeInItem {
  to {
    opacity: 1;
  }
}

/* Stagger delays */
nav ul li:nth-child(1) { animation-delay: 0.2s; }
nav ul li:nth-child(2) { animation-delay: 0.4s; }
nav ul li:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  #hero-container {
    flex-direction: column;
  }
   .services-container2 {
    flex-direction: column;
  }

  .service-box2 {
    flex: 1 1 100%;
  }
}
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  z-index: 9999;
  backdrop-filter: blur(5px); /* optional glassy effect */
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
}

