 :root {
      --main-color: #ff7300;
      --heading-color: #ff7300;;
      --header-bg: #eaeaea;
      --head_button: #eee;
      --header-color: #d1d1d1;
      --footer-bg: #eee;
      --footer-gred: #111111;
      --dark-bg: #353535;
      --light-bg: #f4f4f4;
      --text-color: #2c3e50;
      --white: #ffffff;
      --black: #000000;
      --search-bg: #ffffff;
      --accent-color: #14cd1d;
      --border-radius: 12px;
    }

    body.dark {
      --main-color: #b75300;
      --heading-color: #ff7300;
      --header-bg: #e7e7e7;
      --head_button: #333;
      --header-color: #202020;
      --footer-bg: #222222;
      --footer-gred: #272727;
      --dark-bg: #ababab;
      --light-bg: #131313;
      --text-color: #ffffff;
      --white: #2c2c2c;
      --black: #f5f5f5;
      --search-bg: #0f0f0f;
      --accent-color: #14cd1d;
      --border-radius: 12px;
    }
        body {
      font-family: 'Nunito', sans-serif;
      margin: 0;
      padding: 0;
      background: var(--light-bg);
      color: var(--text-color);
      transition: all 0.3s ease-in-out;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
    }
    .toggle-theme {
      position: fixed;
      top: 1rem;
      right: 1rem;
      padding: 0.8rem 1.5rem;
      background: var(--main-color);
      color: white;
      border: none;
      border-radius: var(--border-radius);
      font-size: 1.4rem;
      cursor: pointer;
      z-index: 999;
    }
    h1, h2, h3, h4 {
      color: var(--heading-color);
      margin-bottom: 1.3rem;
    }
    .section {
      background: var(--white);
      padding: 1rem 2rem 2rem 2rem;
      border-radius: var(--border-radius);
      margin-bottom: 2rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
.section p {
  line-height: 1.8; /* Increase spacing between lines */
  font-size: 1.1rem;
}

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }
    .team-member {
      text-align: center;
      background: var(--light-bg);
      padding: 1.5rem;
      border-radius: var(--border-radius);
      transition: transform 0.3s ease;
    }
    .team-member:hover {
      transform: translateY(-5px);
    }
    .team-member img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
    }
    .testimonial {
      margin: 1rem 0;
      padding-left: 1rem;
      border-left: 4px solid var(--main-color);
      font-style: italic;
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group input,
    .form-group textarea {
      width: 93%;
      padding: 1rem;
      margin-inline-end: 3px;
      border-radius: var(--border-radius);
      border: none;
      font-size: 1.1rem;
      background: var(--light-bg);
      color: var(--text-color);
    }

    .form-group label.required::after {
      content: " *";
      color: red;
      font-weight: bold;
    }
    
    .btn {
      background: var(--main-color);
      padding: 1rem 2rem;
      color: white;
      border: none;
      border-radius: var(--border-radius);
      font-size: 1.4rem;
      cursor: pointer;
    }
        .bg-section {
      background-image: url('assets/images/bwlogo.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 400px;
      padding: 20px;
      color: #fff;
    }
.home-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--main-color);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  z-index: 999;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--header-color);
  padding: 1rem 2rem;
  color: var(--header-bg);
}

.header-left .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
}

.header-center .search-box {
  display: flex;
  background: var(--search-bg);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  align-items: center;
}
.search-box {
  display: flex;
  align-items: center;
  background: var(--search-bg);
  border-radius: 30px;
  width: 300px;
  padding: 0.5rem 1rem;
}

.search-box input {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #ccc;
  outline: none;
  padding: 0.5rem;
  width: 200px;
}


.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
  }

  .form-group label {
  min-width: 140px; /* Align all labels */
  font-weight: bold;
  padding-right: 10px;
  display: inline-block;
  }

  /* Automatically add red * if input is required */


  .form-group input[required] + label::after,
  .form-group label:has(+ input[required])::after {
    content: " *";
    color: red;
    font-weight: bold;
  }

  .form-group input {
  flex: 1;
  padding: 1rem;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  background: var(--light-bg);
  color: var(--text-color);
  }
.search-box button {
  background: none;
  border: none;
  color: var(--header-bg);
  font-size: 1.2rem;
  cursor: pointer;
}

.header-right button {
  background: var(--head_button);
  border: none;
  color: var(--dark-bg);
  font-size: 1.2rem;
  margin-left: 0.5rem;
  padding: 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.header-right button:hover {
 
  background: color-mix(in srgb, var(--black) 60%, rgb(255, 255, 255));
}


.contact-box  {
  width: 50%;
  padding: 0rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--text-color);
}

.contact-box .h2 {
  margin-bottom: 1rem;
  padding-top: 0%;
  color: var(--main-color);
}
.contact-box .p .s {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-box button {
  background: var(--main-color);
  color: white;
  padding: 1rem 2rem 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.form-group label {
    padding: 0px 20px 0px 0px; /* Increase this value as needed */
    display: inline-block; /* Makes padding apply properly */
  }

.form-group {
    display: flex;
    align-items: center; /* vertically centers label & input */
    gap: 10px; /* space between label and input */
  }

  .form-group label {
    min-width: 120px; /* optional: set a width for alignment */
    font-weight: bold;
  }

  .form-group input {
    flex: 1; /* input takes remaining width */
    padding: 1rem;
    border-radius: 5px;
    border: none;
  }

.contact-section {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

/* Contact form styles (already in your CSS) */
.contact-box {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Map box */
.map-box {
  flex: 1;
  min-height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

/* Mobile: stack form above map */
.map-box iframe {
  width: 100%;
  height: 95%;     /* make it fill parent */
  min-height: 600px; /* or any height you like */
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.contact-container {
  display: flex;
  gap: 20px; /* space between form and map */
}

.contact-container .form-box {
  flex: 1;
}

.contact-container .map-box {
  flex: 1;
}
.contact-info a {
    color: var(--text-color); /* light white */
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: #018dff; /* dark orange */
  }

  .contact-info p {
    margin: 8px 0;
  }
  .whatsapp-link {
    color: #25D366; /* WhatsApp green */
    font-size: 28px; /* adjust icon size */
    transition: color 0.3s ease;
  }
    .whatsapp-link:hover {
    color: #00ea23; /* darker WhatsApp green on hover */
  }








  /* ---------- Footer Container ---------- */
footer {
  /* background: linear-gradient(to bottom, var(--footer-bg), var(--footer-gred));
   */
   background: linear-gradient(to bottom, var(--footer-bg) 78%, var(--footer-bg) 10%, var(--footer-gred) 78%);

  color: var(--black);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: var(--border-radius);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ---------- Footer Top Layout ---------- */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 220px;
  margin: 10px;
}

.footer-col h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ff8000; /* A nice orange to stand out */
}

/* Paragraph Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
}

/* Links */
.footer-col a {
  color:var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #ff8000;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

/* ---------- Social Icons (Optional) ---------- */
.social-icons a {
  margin-right: 10px;
  color: var(--header-bg);
  font-size: 16px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ff8000;
}

/* ---------- QR Code ---------- */
.scan-me .qr-image {
  max-width: 150px;
  display: block;
  margin-top: 10px;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #555555;
  padding-top: 20px;
}

/* Logo and Branding */
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  max-height: 40px;
  margin-right: 10px;
}

.footer-brand span {
  font-weight: bold;
  font-size: 16px;
}

/* Info and Links */
.footer-info p {
  font-size: 13px;
  margin: 5px 0;
  color: #eee;
}

.footer-info a {
  color: #ff8000;
  text-decoration: none;
  margin: 0 5px;
}
.footer-info a:hover {
  text-decoration: underline;
}


/* .contact-box {
  max-width: 500px; 
  margin: 2rem auto; 
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

body.dark .contact-box {
  background: #2c2c2c;
} */

/* Base (already set in your about.css & footer.css) */

/* Mobile Adjustments */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .header-right {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .container {
    padding: 1rem;
  }

  /* .section {
    padding: 1rem;
  } */

  .form-group input {
    width: 93%; /* Full width on mobile */
  }

  .contact-box {
    width: 100%; /* Expand form to fit screen */
  }

  .footer-top {
    display: flex;
    flex-direction: column; /* Stack all footer cols */
    gap: 1.5rem;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand img {
    max-width: 93%;
    margin-bottom: 1rem;
  }

 .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group label {
    min-width: auto;
    padding: 0;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    width: 93%;
  }

    .contact-section {
    flex-direction: column;
  }

  .map-box {
    height: 300px;
  }

}

/* Tiny screens (phones <480px) */
@media (max-width: 480px) {
  h1, h2, h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .header-left .logo {
    font-size: 1.4rem;
  }

  .header-right button {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
  }
}
