* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
background-color: #ffffff;
color: #1f2937;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

.translate-bar {
  position: fixed;
  top: 0;
  left:0;
  right: 0;
  max-width: 100vw;
  /* padding: 2px 1px; */
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
}
.header {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(76, 18, 137); 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.header-content {
    max-width: 1280px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    padding-top: 2rem; 
    flex-wrap: wrap;
}
.header.scrolled {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.logo-company {
  display: flex;
  align-items: center;
  color: #1a1919;
  text-decoration: none;
  gap: 0.625rem;
}
.company-icon {
  height: 1.9rem;
  width: 1.9rem;
  border: 2px solid rgb(6, 6, 6);
  border-radius: 5px;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  color: #FAFAFA;
}


.nav {
  display: flex;
  gap: 2rem; 
  padding-right:2rem;
  } 
.nav-link {
color: rgb(255, 255, 255);
font-size: 1rem;
font-weight: 500;
font-family: "Inter", sans-serif;
transition: color 0.3s ease;
}
  
  .nav-link:hover {
    color: orange;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  .close-btn {
    display: none; /* hidden by default */
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  @media (max-width: 835px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 45%;
      background-color: #030c5b;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 2rem 1.5rem;
      transition: right 0.3s ease-in-out;
      z-index: 999;
    }
  
    .nav.show {
      right: 0;
    }
  
    .menu-toggle {
      display: block;
    }

    .nav-link{
      padding: 0.5rem 0;
    }
    .close-btn {
      display: block;
      text-align: right;
      font-size: 2rem;
      border: none;
      cursor: pointer;
      margin-bottom: 1rem;
      background: none;
    }
    
.header.scrolled .menu-toggle {
  color: black;
}
.header.scrolled .nav-link {
  color: rgb(250, 247, 247) !important;
}
  }
.scrolled .nav-link {
  color: black !important;
}
.scrolled  {
  background-color: black;
  color: white;
}
.scrolled .logo-text {
  color: black;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;

  padding: 1.8rem 1rem;
  margin-top: 70px;

  background: #f3f4f6;
}

/* Desktop layout */
@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 3rem 2rem;
  }
}



.contact-info {
  padding: 1rem 0.5rem;
  max-width: 520px;
}

.contact-heading {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: bolder; 

  color: #111827;

  margin-bottom: 0.8rem;

  letter-spacing: -0.3px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;

  margin-bottom: 1rem;
}

.info-box {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;

  font-size: 1rem;
  color: #374151;

  transition: all 0.2s ease;
}

.info-box strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-box:hover {
  border-color: #ff6600;
  transform: translateY(-1px);
}

.contact-form {
 background: #ffffff;
  padding: 1.8rem;

  border-radius: 12px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-form h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #111827;
  letter-spacing: -0.3px;
}


.form-subtext {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.form-label {
  display: block;

  font-size: 0.9rem;
  font-weight: 600;

  color: #111827;

  margin-bottom: 6px;
  margin-top: 12px; 

  letter-spacing: 0.2px;
}

/* ================= INPUT ================= */

form input,
form select,
form textarea {
  width: 100%;

  padding: 0.95rem;
  margin-bottom: 14px;

  border: 1px solid #d1d5db;
  border-radius: 8px;

  font-size: 0.95rem;
  font-weight: 400;

  background: #f9fafb;
  transition: all 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #ff6600;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.08);
}

::placeholder {
  color: #9ca3af;
  font-size: 0.9rem;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #ff6600;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.08);
}

form button {
  width: 100%;
  padding: 1rem;

  background-color: #ff6600;
  color: #fff;

  font-weight: 600;
  font-size: 0.95rem;

  border-radius: 10px;
  border: none;

  cursor: pointer;
  transition: all 0.25s ease;
}

form button:hover {
  background-color: #e65c00;
  transform: translateY(-1px);
}


.form-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}


textarea {
  resize: vertical;
}

@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

.footer {
  background: #f9fafb;
  color: #1f2937;
  padding: 3rem 1.2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  gap: 2rem;
}


.footer-col h3,
.footer-col h4 {
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-text {
  color: #4b5563;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: #374151;
}

.footer-col a:hover {
  color: #ff6600;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer-trust img {
  height: 50px;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-trust img{
    height: 60px;
  }
} 




/* .footer-content {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  text-align: left;
}

.footer-info,
.footer-links,
.footer-newsletter {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-info h4,
.footer-links h4,
.footer-newsletter h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #111827;
}

.footer-info p,
.footer-links ul,
.footer-newsletter form {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #374151;
  transition: 0.2s;
}

.footer-links ul li a:hover {
  color: #ff6600;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input[type="email"] {
  padding: 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-newsletter button {
  padding: 0.7rem;
  border-radius: 6px;
  border: none;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: #e65c00;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}


@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .footer-links,
  .footer-newsletter {
    width: 100%;
  }

  .footer-newsletter form {
    padding: 0 0.5rem;
  }
} */
.popup-card {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #065f46;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  z-index: 999;
}

.popup-card.hidden {
  display: none;
}

#popupClose {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  font-size: 15px;
}
@media (min-width: 768px) {
  form button {
    width: auto;
    display: block;
    margin: 0 auto;
    padding: 0.9rem 1.6rem;
  }
}