  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .header {
    background: linear-gradient(90deg, #e6cfc0, #f3e7df);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
  }

  /* Logo */
  .header img.logo {
    height: 60px;
  }


  /* Contact info on right */
  .header .contact {
    text-align: right;
    font-size: 14px;
    color: #222;
  }

  .sec-header {
    padding: 20px;
    background-color: #f8f8f8;
    /* optional */
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* spacing between elements */
  }

  .header-container img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    /* optional */
  }

  .header-container h3 {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
  }

  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      /* stack vertically */
      text-align: center;
    }

    .header-container img {
      max-width: 90%;
      /* make images responsive */
    }

    .header-container h3 {
      margin: 10px 0;
    }

    .footer-txt {
      display: flex;
      margin: 5px;
      justify-content: center;
      /* center items horizontally */
      flex-wrap: wrap;
      /* allow items to move to next line on small screens */
      gap: 10px;
      /* space between items */
    }

    footer {
      padding: 30px 15px;
      /* reduce padding on mobile */
    }

    footer div.footer-txt {
      flex-direction: column;
      /* stack vertically on mobile */
      text-align: center;
      font-size: 14px;
      /* slightly smaller text */
      margin: 10px;
      gap: 15px;
      /* spacing between footer items */
    }

    footer div.footer-txt p {
      margin: 0;
      /* remove default margins */
    }
  }


  .about {
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
  }

  span {
    font-size: 20px;
  }

  div.contact img.GPS {
    height: 65px;
    border-radius: 50%;
    margin-bottom: -15px;
  }

  .info-img {
    width: 90%;
  }

  footer {
    padding: 70px;
    background: linear-gradient(90deg, #dae8fa, #f3e7df);
    color: #222;
  }

  footer div.footer-txt {
    font-weight: bold;
    font-size: 18px;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  /* About Us */
  .who-we-are {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f5f5f5;
  }

  .who-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
  }

  .who-text {
    max-width: 600px;
  }

  .who-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #222;
  }

  .who-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }

  @media (max-width: 768px) {
    .who-we-are {
      flex-direction: column;
      text-align: center;
    }

    .who-image img {
      max-width: 100%;
    }

    .who-text {
      max-width: none;
    }
  }

  /* The vav Style */
  .nav-bar {
    background-color: #2563eb;
    padding: 10px 20px;
    text-align: center;
  }

  .nav-bar nav a {
    color: #fff;
    /* white text */
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }

  .nav-bar nav a:hover {
    color: #fbbf24;
    /* yellow on hover */
  }

  /* Mobile top bar */
  .mobile-top-bar {
    display: none;
    /* hidden on desktop */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #e6cfc0, #f3e7df);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-lang-switcher {
    display: flex;
    align-items: center;
  }

  .desktop-lang-switcher {
    display: block;
  }

  /* Mobile menu toggle button */
  .mobile-menu-toggle {
    display: none;
    /* hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #222;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Mobile responsive styles */
  @media (max-width: 768px) {
    .mobile-top-bar {
      display: flex;
      /* show mobile top bar */
    }

    .desktop-lang-switcher {
      display: none;
      /* hide desktop language switcher on mobile */
    }

    .mobile-menu-toggle {
      display: block;
      /* show hamburger on mobile */
    }

    .nav-bar {
      position: relative;
    }

    .nav-bar nav {
      display: none;
      /* hidden by default on mobile */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #2563eb;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .nav-bar nav.active {
      display: flex;
      /* show when active */
    }

    .nav-bar nav a {
      margin: 10px 0;
      padding: 10px;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-bar nav a:last-child {
      border-bottom: none;
    }
  }


  /* Error Page Styles */
  .error-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 40px 20px;
  }

  .error-code {
    font-size: 120px;
    font-weight: bold;
    color: #e74c3c;
    margin: 0;
    line-height: 1;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }

  .error-title {
    font-size: 32px;
    color: #2c3e50;
    margin: 20px 0 10px;
    font-weight: 600;
  }

  .error-message {
    font-size: 18px;
    color: #7f8c8d;
    margin: 20px 0 30px;
    line-height: 1.6;
  }

  .error-friendly {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 16px;
    color: #34495e;
    border-left: 4px solid #3498db;
  }

  .error-actions {
    margin-top: 40px;
  }

  .btn-home {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
    transition: background 0.3s;
  }

  .btn-home:hover {
    background: #2980b9;
    color: white;
  }

  .btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
    transition: background 0.3s;
  }

  .btn-back:hover {
    background: #7f8c8d;
    color: white;
  }

  .error-icon {
    font-size: 80px;
    margin-bottom: 20px;
  }

  /* End Of Error Page Styles */
  .flashes {
    max-width: 600px;
    margin: 20px auto;

  }
/* ==================== PWA INSTALL BUTTON ==================== */
.pwa-install-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.pwa-install-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.pwa-install-btn:active {
  transform: translateY(-1px);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .pwa-install-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ==================== PWA MANUAL INSTALL BUTTON ==================== */
.pwa-manual-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
}

.pwa-manual-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* ==================== INSTALL INSTRUCTIONS MODAL ==================== */
.install-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #000;
}

.modal-content h3 {
  margin: 0 0 20px 0;
  color: #1f2937;
  font-size: 24px;
  text-align: center;
}

.modal-content p {
  color: #4b5563;
  margin: 15px 0 10px 0;
  font-size: 16px;
}

.modal-content ol {
  color: #1f2937;
  line-height: 1.8;
  padding-left: 20px;
}

.modal-content ol li {
  margin: 10px 0;
  font-size: 15px;
}

.modal-content strong {
  color: #2563eb;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile styles for install buttons and modal */
@media (max-width: 768px) {
  .pwa-install-btn,
  .pwa-manual-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .modal-content {
    padding: 20px;
    width: 95%;
  }
  
  .modal-content h3 {
    font-size: 20px;
  }
  
  .modal-content ol li {
    font-size: 14px;
  }
}
