 body {
 margin: 0;
 font-family: Arial, sans-serif;
 }
html {
    scroll-behavior: smooth;
}
        header {
          position: relative;
          padding: 10px 20px;
          background-color: #ffffff;
          color: #ffffff;
          z-index: 1000; /* stays above hero */
        }

         .header-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
          width: 90%;
          max-width: 1200px;
          margin: 0 auto; /* centers everything */
        }

        .logo-title {
            display: flex;
            flex-direction: column; /* stack vertically */
            align-items: flex-start; /* align left */

        }

        .logo-title img {
            height: 150px;
            width: auto;
        }

        .logo-title h1 {
            font-size: 22px;
            margin: 5px 0 0 0; /* small space below logo */
            color: black;
        }

/* CENTER: Navigation */
     .center {
            flex: 1;
            display: flex;
            justify-content: center;
         
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            font-size: 18px;
           
            
        }

        nav ul li a {
            color: #fff;
            font-size: 16px;
            transition: 0.3s;
            text-decoration: none !important;
        }

        nav a {
            color: #000000;
           text-decoration: none;
        }

        nav ul li a:hover {
            color: #00aaff;
        }

        nav a:hover {
            color: #016da3;
            text-decoration: underline;
        }

        .nav-links a {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #555;
        text-decoration: none;
        transition: 0.3s ease;
        }


            /* MOBILE */
        @media (max-width: 768px) {
            nav ul {
                gap: 15px;
                font-size: 18px;
            }

            .logo-title h1 {
                font-size: 14px;
            }

            .auth-buttons a {
                padding: 5px 8px;
                font-size: 12px;
            }
        }
      
footer {
    background: #f4f4f4;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 40px 20px 10px;
    clear: both;
    position: relative;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #6c6c6c;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #000000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

/* HERO SECTION */
.hero {
  min-height: 100vh; 
  background: url('ware.png') no-repeat center center/cover;
  align-items: flex-start; /* move content to top */
  margin-bottom: 50px; 
  position: relative;
  display: flex; /* ADD THIS */
}

/* DARK OVERLAY */
.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  min-height: 100vh; 
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px; /* replaces your top:100px */
  text-align: center;
}

/* CONTENT */
.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;

}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #126ba2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #e65c00;
}

#services {
    padding: 60px 0;
    text-align: center;
}

#services-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #007BFF;
}

/* Text */
.card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Link */
.card a {
    display: inline-block;
    padding: 8px 15px;
    background: #007BFF;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card:nth-child(1) { border-color: #007BFF; }
.card:nth-child(2) { border-color: #28a745; }
.card:nth-child(3) { border-color: #ff9800; }
.card:nth-child(4) { border-color: #ff0000; }

.burger { 
  display: none; /* Hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  background: rgb(25, 102, 190);
  border: none;
  position:relative;
  left: 90px;
  top: 5px;
  border-radius: 5px; /* 👈 makes edges rounded */
  width: 55px;   /* 👈 increased size */
  height: 35px;  /* 👈 increased size */
  flex-direction: column;   /* 👈 stack spans vertically */
  align-items: center;      /* 👈 center horizontally */
  justify-content: center;  /* 👈 center vertically */
} 

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 0 1rem;
}


.burger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 2px 0;
  transition: 0.3s;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-links {
    display: none; /* Hide menu by default */
    flex-direction: column;
    position: absolute;
    left: 0;
    top:220px;
    background: #ffffff;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active { display: flex; } /* Show when toggled */

  /* Animate Burger to X */
  .burger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
  .burger.toggle span:nth-child(2) { opacity: 0; }
  .burger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }
}

.footer-section img{
    height: 100px;
    width: auto;
}