.jj-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 1rem auto;
}

.jj-nav-btn {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1rem;
  border: 2px solid #00e0c6;
  background: #00e0c6;
  border-radius: 10px;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-nav-btn:hover {
 
  transform: translateY(-2px);
}
h1, h2, h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #444;
}
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    :root {
      --accent: #6c63ff;
      --accent-dark: #5548e0;
    }

    body {
      background: #fff;
      color: #222;
      overflow-x: hidden;
    }

  /* ===== HEADER ===== */
.jj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", sans-serif;
}

.jj-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent, #6c63ff);
}

.jj-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}




/* ===== HAMBURGER ICON ===== */
.jj-menu-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #111;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  position: relative;
}




.jj-menu-btn i {
  position: absolute;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.jj-menu-btn .fa-xmark {
  transform: rotate(-90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-bars {
  transform: rotate(90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-xmark {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* ===== NAV MENU (DStudio Style) ===== */
.jj-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

.jj-nav-menu.active {
  transform: translateX(0);
}

/* ===== MENU HEADER ===== */
.jj-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 2rem;
}

.jj-menu-header h2 {
  font-size: 1.3rem;
}

.jj-close-btn {
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
  color: #111;
}

.jj-close-btn:hover {
  opacity: 0.6;
}

/* ===== NAV LINKS ===== */
.jj-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.jj-nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.jj-nav-links a:hover {
  color: #d4af37; /* gold hover */
}

/* ===== DROPDOWN ===== */
.jj-dropdown {
  position: relative;
}

.jj-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 0.8rem;
}

.jj-dropdown.active .jj-dropdown-content {
  display: flex;
}

.jj-dropdown-content a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}

.jj-dropdown-content a:hover {
  opacity: 1;
  color: #fff;
}

/* ===== MENU FOOTER ===== */
.jj-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa!important;
}
.jj-follow-label{
    color:#000!important;
}

.jj-socials {
  display: flex;
  gap: 1.5rem;
}

.jj-socials i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #aaa;
}

.jj-socials i:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .jj-menu-btn,
  .jj-close-btn {
    display: none;
  }

  .jj-nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    transform: none;
    padding: 0;
  }

  .jj-nav-links {
    flex-direction: row;
    gap: 1.5rem;
  }

  .jj-dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }

  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }
}
.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-5px); }
}
.sales-contact {
  background: linear-gradient(to bottom, #f9fbff, #ffffff);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.sales-contact .container {
  max-width: 600px;
  margin: 0 auto;
}

.sales-contact .intro {
  text-align: center;
  margin-bottom: 40px;
}

.sales-contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.sales-contact p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.sales-contact a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.sales-contact a:hover {
  text-decoration: underline;
}

/* Form Styles */
.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

label span {
  color: #e11d48;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
}

.btn {
  grid-column: 1 / -1;
  padding: 14px 0;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #1e40af;
}

#formAlert {
  margin: 15px 0;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 15px;
  display: none;
  animation: fadeIn 0.4s ease;
}

#formAlert.success {
  background: #d4ffd9;
  border-left: 4px solid #28a745;
  color: #196b26;
}

#formAlert.error {
  background: #ffe1e1;
  border-left: 4px solid #ff3b3b;
  color: #b30000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}
.jj-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;     /* adjust size */
    width: 100px;
}