* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
}

/* Logo */
.logo img {
  height: 48px;
}

/* Center Buttons */
.header-buttons {
  display: flex;
  gap: 24px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background-color: #f15a00;
  color: #fff;
}

.btn.primary:hover {
  background-color: #d94f00;
}

/* Contact Numbers */
.contact {
  display: flex;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
}

.contact a {
  color: #f15a00;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #f15a00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 36px;
  color: #f15a00;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-buttons .btn {
  width: 100%;
}

.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.sidebar-contact a {
  color: #f15a00;
  text-decoration: none;
}

.sidebar-contact a:hover {
  text-decoration: underline;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1001;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
  .header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-buttons {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .contact {
    order: 2;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none !important;
  }

  .logo img {
    height: 40px;
  }
}

.mainBanner {
  width: 100%;
  display: flex;
  overflow: hidden;
  height: 75vh;
  padding: 0 3vw;
  justify-content: space-between;
  background: url("./assets/Banner.jpg") no-repeat center center/cover;
}

.bannerTitle {
  display: flex;
  font-size: 3.3vw;
  font-weight: 800;
  text-align: center;
  align-items: center;
  padding-top: 4vh;
  gap: 15px;
}

.mobileScreenWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobileScreenWrapper img {
  width: 13vw;
}

.autoImgAnimate img {
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
  width: 25vw;
}

.autoImgAnimate img.fade-out {
  opacity: 0;
}

/* Main Banner Responsive */
@media (max-width: 992px) {
  .mainBanner {
    flex-direction: column;
    height: auto;
    min-height: 60vh;
    padding: 3vh 5vw;
  }

  .bannerTitle {
    font-size: 5vw;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2vh;
    gap: 10px;
  }

  .bannerTitle img {
    width: 5vw;
    height: auto;
  }

  .autoImgAnimate {
    display: flex;
    justify-content: center;
    margin: 3vh 0;
  }

  .autoImgAnimate img {
    width: 40vw;
    max-width: 300px;
  }

  .mobileScreenWrapper {
    margin-top: 3vh;
    gap: 15px;
  }

  .mobileScreenWrapper img {
    width: 20vw;
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .mainBanner {
    padding: 2vh 4vw;
    min-height: 50vh;
  }

  .bannerTitle {
    font-size: 6vw;
    gap: 8px;
    padding-top: 2vh;
  }

  .bannerTitle img {
    width: 6vw;
  }

  .autoImgAnimate img {
    width: 50vw;
    max-width: 250px;
  }

  .mobileScreenWrapper {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .mobileScreenWrapper img {
    width: 25vw;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .mainBanner {
    padding: 2vh 3vw;
    min-height: auto;
  }

  .bannerTitle {
    font-size: 7vw;
    gap: 6px;
    padding-top: 1.5vh;
  }

  .bannerTitle img {
    width: 7vw;
  }

  .autoImgAnimate {
    margin: 2vh 0;
  }

  .autoImgAnimate img {
    width: 60vw;
    max-width: 200px;
  }

  .mobileScreenWrapper {
    gap: 15px;
    margin-top: 1vh;
    margin-bottom: 2vh;
  }

  .mobileScreenWrapper img {
    width: 40vw;
    max-width: 300px;
  }
}

.footer {
  background: #000;
  color: #ff6a00;
  padding: 80px 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  /* gap: 60px; */
}

/* Headings */
.footer h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Text */
.footer p,
.footer a {
  font-size: 15px;
  line-height: 1.6;
  color: #ff6a00;
}

.footer .bold {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .mt {
  margin-top: 20px;
}

/* Links */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons img {
  width: 40px;
  cursor: pointer;
}

/* App Store Boxes */
.store-box {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ff6a00;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
}

/* Modal Box */
.modal-content {
  background: #fff;
  color: #333;
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff6a00;
  font-size: 26px;
}

/* Close Button */
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #ff6a00;
  line-height: 1;
  margin-bottom: 8px;
}

/* Form Inputs */
.modal-content label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  font-size: 14px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 4px;
  font-size: 15px;
}

.modal-content button {
  margin-top: 16px;
  width: 100%;
}

.vendor-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.vendor-form input {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
}

.vendor-form input:focus {
  border-color: #ff6a00;
}

/* Red Labels */
.red-label {
  font-size: 14px;
  margin-bottom: 4px;
  color: #e60000;
  font-weight: 600;
}

/* Button */
.vendor-form button {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #ff6a00;
  color: #fff;
}

.vendor-form button:hover {
  background: #e55c00;
}

/* Mobile */
@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
    width: 95%;
    max-height: 85vh;
  }

  .modal-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .close {
    font-size: 24px;
  }

  .vendor-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .vendor-form input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .vendor-form button {
    padding: 12px;
    font-size: 15px;
  }

  .red-label {
    font-size: 14px;
  }
}

@media (max-height: 700px) {
  .modal-content {
    padding: 16px;
    max-height: 95vh;
  }

  .modal-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .vendor-form {
    gap: 12px;
  }

  .vendor-form input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .vendor-form button {
    padding: 12px;
    font-size: 15px;
    margin-top: 8px;
  }

  .red-label {
    font-size: 14px;
    margin-bottom: 3px;
  }
}
