
   
/* :root {
      --bg: #f3f4f6;
      --card: #ffffff;
      --text: #111827;
      --input-bg: #ffffff;
      --border: #d1d5db;
      --button: #16a34a;
      --button-hover: #15803d;
    }
    body.dark {
      --bg: #111827;
      --card: #1f2937;
      --text: #f9fafb;
      --input-bg: #374151;
      --border: #4b5563;
      --button: #10b981;
      --button-hover: #059669;
    }   */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Sticky Header */
.sticky-header {
  position: sticky;
  width: 100%;
  top: 0;
  /* background-color: #ffffff; */
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Container */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  height: 50px; /* Smaller height for responsiveness */
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links a:hover {
  color: #007bff;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------------------Responsive Header ----------------------------------------- */
/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.5rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}


.container {
      max-width: 700px;
      margin: auto;
      background: var(--card-bg);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      animation: fadeIn 0.4s ease-in-out;
    }

    .error-message {
    color: #ff0000;
    font-size: 0.8em;
    margin-top: 5px;
}

    h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 30px;
      color: var(--primary);
    }

    h3 {
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--secondary);
      border-bottom: 2px solid var(--primary);
      padding-bottom: 8px;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      margin-top: 18px;
    }

    input[type="text"],
    input[type="email"],
    input[type="file"],
    input[type="number"],
    input[type="date"],
    input[type="tel"],
    textarea,
    select {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--input-bg);
      font-size: 16px;
      margin-top: 5px;
      margin-bottom: 15px;
      transition: border 0.3s;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--primary);
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 80px;
    }

    .button-group {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 20px;
    }

    button {
      background: green;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: var(--secondary);
    }

    .step {
      display: none;
      animation: slideIn 0.3s ease-in-out;
    }

    .step.active {
      display: block;
    }

    #passportPreview {
      margin-top: 15px;
      max-width: 150px;
      border-radius: 10px;
      display: none;
      border: 1px solid var(--border);
    }

    #ninStatus {
      margin-top: 10px;
      font-weight: 500;
    }

    .verified {
      color: var(--success);
    }

    .not-verified {
      color: var(--error);
    }

    @keyframes slideIn {
      from {
        transform: translateY(20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .section input[type="checkbox"] {
    margin-right: 8px;
}


    @media (max-width: 600px) {
      .container {
        padding: 25px;
      }

      h2 {
        font-size: 24px;
      }

      .button-group {
        flex-direction: column;
      }

      button {
        width: 100%;
      }
    }
    /* ===== FOOTER STYLES ===== */
    footer {
      background-color: #2c3e50;
      color: white;
      padding: 40px 5% 20px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-branding {
      text-align: center;
      margin-bottom: 30px;
    }

    .footer-branding h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }

    .social-links a {
      color: white;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: #3498db;
    }

    .footer-branding p a {
      color: #3498db;
      transition: color 0.3s;
    }

    .footer-branding p a:hover {
      color: #2980b9;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #34495e;
      font-size: 0.9rem;
      color: #bdc3c7;
    }

    .site-footer {
      background-color: #34495e;
      color: #ecf0f1;
      padding: 40px 5% 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-column h3 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: #3498db;
    }

    .footer-column p {
      margin-bottom: 15px;
      color: #bdc3c7;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #bdc3c7;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #3498db;
    }

    address p {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #2c3e50;
    }

    .copyright {
      margin-bottom: 15px;
      text-align: center;
    }

    .payment-methods {
      display: flex;
      gap: 15px;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    /* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-icon-container {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-icon-container:hover {
  transform: scale(1.1);
}

/* WhatsApp Icon */
.whatsapp-icon-container img {
  width: 32px;
  height: 32px;
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 70px;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-icon-container:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Adjustment */
@media (max-width: 480px) {
  .whatsapp-icon-container {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon-container img {
    width: 24px;
    height: 24px;
  }

  .tooltip {
    font-size: 10px;
    bottom: 60px;
  }
}

  