/* ---------------- 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;      /* 🔥 centers text */
  padding: 16px 20px;
  font-size: 18px;
  border: none;
  border-bottom: 3px solid navy;
  outline: none;
  background: transparent;
}

.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;
}

/* Contact Page Styling */
.contact-page {
  font-family: 'Poppins', Arial, sans-serif;
  color: #2f2f2f;
}

/* Hero Section */
.contact-hero {
  background-color: #e6f1e6;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 30px 6%;
}

.contact-hero h1 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  color: navy;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #3a3a3a;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #fff;
  padding: 50px 20px;
  border-radius: 15px;
  margin: 30px 6%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
  text-align: center;
  font-family: 'Amatic SC', cursive;
  font-size: 2.2rem;
  color: navy;
  margin-bottom: 30px;
}

.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form-section textarea {
  resize: none;
}

.contact-form-section .cta-btn {
  background-color: #4caf50;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contact-form-section .cta-btn:hover {
  background-color: #388e3c;
  transform: scale(1.05);
}

.contact-form-section .form-feedback {
  text-align: center;
  font-weight: bold;
  color: #d32f2f;
  margin-top: 10px;
}

/* Contact Info */
.contact-info {
  margin: 50px 6%;
  text-align: center;
}

.contact-info h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 2.2rem;
  color: navy;
  margin-bottom: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.info-item h3 {
  font-size: 1.2rem;
  color: navy;
  margin-bottom: 10px;
}

.info-item p a {
  color: #ff7a00;
  text-decoration: none;
}

.info-item p a:hover {
  text-decoration: underline;
}

/* Map */
.contact-map {
  margin: 50px 6%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
/* ---------------- 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 ---------------- */
.social-icon {
  color: #2e7d32; /* earth green */
  font-size: 20px;
  margin-right: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #1b5e20;
  transform: scale(1.15);
}
.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;
} */
