/* ---------------- Global ---------------- */
*/* ---------------- Global ---------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background:white;
  color: #111;
  line-height: 1.6;
}

/* ---------------- Header ---------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: white;
  color: #fff;
  flex-wrap: wrap;
}
.header-contact {
  font-weight: bold;
  color: #0a1a3f;
  margin-bottom: 8px;
  text-align: right; /* aligns to right side */
}

.header-contact a {
  text-decoration: none;
  color: #ff7a00;
  font-size: 16px;
  transition: color 0.3s;
}

.header-contact a:hover {
  color: #e65c00;
}



.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  width: 180px;
  height: auto;
}

.company-name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #ff7a00;
}

.slogan {
  display: block;
  color: #0a0342;
  font-style: italic;
  margin-top: 6px;
}

/* Right side */
.right-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.search-bar input {
  padding: 8px 14px;
  border-radius: 22px;
  border: 1px solid #ccc;
  width: 220px;
}

.cart-icon i {
  font-size: 22px;
  color: #ff7a00;
  cursor: pointer;
}

/* ---------------- Navigation ---------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 14px;
  background: #fff;
  border-top: 4px solid #ff7a00;
  border-bottom: 2px solid #0a1a3f;
  flex-wrap: wrap;
}


nav a {
  text-decoration: none;
  color: #0a1a3f;
  font-weight: 700;
}

nav a:hover {
  color: #ff7a00;
}
/* ---------------- Search Bar BELOW NAV (CENTERED) ---------------- */
.search-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 25px 0 40px;
}

.search-bar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;          /* 🔥 forces perfect centering */
  position: relative;
}

.search-bar input#searchInput {
  width: 100%;
  text-align: center;
  padding: 16px 55px 16px 20px; /* 🔥 space for icon */
  font-size: 18px;
  border: none;
  border-bottom: 3px solid navy;
  outline: none;
  background: transparent;
}
/* Search icon button inside input */
.search-bar .search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: navy;
}

.search-bar .search-btn:hover {
  color: #0056b3;
}

.search-bar input#searchInput::placeholder {
  text-align: center;      /* 🔥 centers placeholder */
  color: #888;
}

.search-bar input#searchInput:focus {
  border-bottom-color: #0056b3;
}

/* Dropdown container */
nav .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* below the parent link */
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 100;
}

/* Links inside dropdown */
nav .dropdown-content a {
  color: #0a1a3f;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  transition: background 0.3s;
}

nav .dropdown-content a:hover {
  background-color: #ff7a00;
  color: #fff;
}

/* Show dropdown on hover */
nav .dropdown:hover .dropdown-content {
  display: block;
}
 
body {
  line-height: 1.6;
  color: #111;
  background-color: #f5f8f5;
}

/* ---------------- Buttons ---------------- */
.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 15px;
  background-color: #2f7a2f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}
.cta-btn:hover {
  background-color: #1f5f1f;
}

/* ---------------- Sections ---------------- */
section {
  padding: 60px 20px;
  text-align: center;
}

h1, h2 {
  color: #2f7a2f;
  margin-bottom: 20px;
}

/* ---------------- Hero Section ---------------- */
.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background-color: #e6f1e6;
  padding: 60px 20px;
}
.hero-content {
  max-width: 600px;
}
.hero-content h1 {
  font-size: 2.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}
.hero-image img {
  width: 300px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ---------------- Lists ---------------- */
ul {
  list-style: none;
  max-width: 700px;
  margin: 20px auto 0;
  padding-left: 0;
}
ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2f7a2f;
}

/* ---------------- Product Grid ---------------- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}
.product-card:hover {
  transform: translateY(-5px);
}

/* ---------------- Footer CTA ---------------- */
.cta-footer {
  background-color: #2f7a2f;
  color: #fff;
  padding: 50px 20px;
}
.cta-footer h2 {
  margin-bottom: 20px;
}

/* ---------------- Responsive ---------------- */
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
  .hero-image img {
    margin-bottom: 0;
  }
}
/* ---------------- Footer ---------------- */
footer {
  background: #0a1a3f;
  color: #fff;
  padding: 40px 6%;
  text-align: center;
  margin-top: 30px;
  border-top: 4px solid #ff7a00;
}

footer img { width: 180px; height: auto; }
.footer-name { font-weight: 800; margin-top: 10px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 18px;
  margin-top: 22px;
  text-align: left;
}

.footer-grid h4 { color: #ff7a00; margin-bottom: 8px; }
.footer-grid p { color: #ddd; font-size: 14px; }
footer p { margin-top: 18px; color: #bbb; }

/* ---------------- Responsive ---------------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1.1rem; }
  .product { width: 250px; height: 380px; }
}

/* Mobile */
@media (max-width: 768px) {
 
  /* nav { flex-direction: column; gap: 12px; } */
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .cta-btn { padding: 8px 15px; }
  .product { width: 180px; height: 300px; }
  .search-bar input { width: 140px; }
  .customer-track img { height: 50px; }
  .hero-whatsapp { width: 55px; height: 55px; font-size: 26px; bottom: 20px; right: 10px; }
  .hero-arrow { font-size: 25px; padding: 6px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content p { font-size: 0.9rem; }
  .product { width: 150px; height: 250px; }
  .logo-box img { width: 120px; }
}
.hero-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* Floating Instagram - LEFT */
.hero-instagram {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* Live Search Input Styling
.search-bar input#searchInput {
  width: 100%;
  max-width: 300px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
} */

/* ================= HEADER – MOBILE ONLY ================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
    gap: 10px;
  }

  .logo-box {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .logo-box img {
    width: 120px;
  }

  .company-name {
    font-size: 16px;
  }

  .slogan {
    font-size: 13px;
  }

  .right-side {
    align-items: center;
    gap: 6px;
  }

  .header-contact {
    text-align: center;
    margin-bottom: 0;
  }

  /* IMPORTANT: search does NOT belong in header on mobile */
  header .search-bar {
    display: none;
  }
}

/* ================= NAV MOBILE PROFESSIONAL SCALING ================= */
@media (max-width: 768px) {

  nav {
    display: flex;
    flex-wrap: nowrap;                /* one line only */
    justify-content: space-between;
    gap: 12px;
    padding: 10px 6%;
  }

  nav a {
    flex: 1 1 auto;                   /* shrink proportionally */
    min-width: 0;                      /* prevent overflow */
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    color: #0a1a3f;
    background: #f7f7f7;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  nav a:hover {
    background: #ff7a00;
    color: #fff;
  }
}

/* Medium phones: 480px – 711px width */
@media (max-width: 711px) {
  nav a {
    padding: 7px 10px;
    font-size: 13px;
  }
  nav {
    gap: 10px;
  }
}

/* Small phones: 375px – 479px width */
@media (max-width: 479px) {
  nav a {
    padding: 6px 8px;
    font-size: 12px;
  }
  nav {
    gap: 8px;
  }
}

/* Extra small phones: <375px width */
@media (max-width: 374px) {
  nav a {
    padding: 5px 6px;
    font-size: 11px;
  }
  nav {
    gap: 6px;
  }
}

/* FAQ Section */
.faq-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  text-align: left;
}
.faq-toggle:hover {
  text-decoration: underline;
}

.faq-list {
  max-height: 0;           /* hide all questions by default */
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-bottom: 80px;    /* space for last answer and footer */
}

.faq-item {
  margin-bottom: 8px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 0;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  color: #ddd;
  padding-left: 5px;
  padding-bottom: 0; /* closed state */
}

/* Add bottom padding when open */
.faq-item.active .faq-answer {
  padding-bottom: 10px;
}

/* Optional: for mobile readability */
@media screen and (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
  }
}