/* General */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;

  background-image: url('images/Bg\ wall\ 5.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0 40px; /* good spacing on desktop */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* bigger to match 100px logo */
    z-index: 1000;

    box-sizing: border-box;
}

/* Logo */
.logo img {
    height: 100px; /* client’s requirement */
    object-fit: contain;
}

/* Navbar */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007BFF;
}

/* Button */
.btn-blue {
    background-color: #004DA8;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #007BFF;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: black;
    border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 1024px) {
    .header {
        padding: 0 20px;
        height: 100px; /* adjust for tablets */
    }

    .nav-menu, .header-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 100px; /* dropdown below taller header */
        right: 20px;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        width: 200px;
        border-radius: 8px;
    }

    .nav-menu.active {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 0 15px;
        height: 90px; /* slightly smaller for mobile */
    }

    .logo img {
        height: 80px; /* still big but fits on phones */
    }

    .first-section {
        padding-top: 120px; /* clear taller header */
    }
}











/*=====Form ==============*/

/* ===== BUSINESS FORM ===== */

.business-form-section {
  max-width: 850px;
  margin: 160px auto 80px;
  background: #f4f7ff;
  padding: 40px;
  border-radius: 12px;
}

.form-title {
  text-align: center;
  color: #004DA8;
  margin-bottom: 5px;
}

.form-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.note {
  font-size: 11px;
  color: #777;
}

.hidden {
  display: none;
}

.submit-btn {
  margin-top: 30px;
  background: #004DA8;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  width: 160px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #007BFF;
}



#gstStatus {
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

@media(max-width:768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .business-form-section {
  
  margin: 80px auto 80px;

}
}





/* Footer */

.footer-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Left Section */
.footer-left h3 {
  color: #000;
  margin-bottom: 15px;
}

.app-buttons a {
  display: inline-block;
  margin-right: 10px;
}

.app-buttons img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

/* Middle Section */
.footer-middle {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #007BFF;
}

/* Right Section */
.footer-right h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-right p {
  margin: 5px 0;
  color: #555;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.footer-right .copyright {
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-middle {
    gap: 40px;
    margin: 20px 0;
  }

  .app-buttons a {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .app-buttons img {
    width: 100px;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
  }
}

