/* Reset and base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, Arial, sans-serif;
  background: #f0f4f8;
  color: #33475b;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header + nav */
.site-header,
header {
  background: linear-gradient(#0000a8);
  color: #0000a8;
  padding: 18px 32px;
  box-shadow: 0 4px 20px rgba(25, 42, 86, 0.15);
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: saturate(180%) blur(10px);
  transition: background-color 0.3s ease;
  text-align: justify;
}

/* Navigation container */
.navbar,
header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Optional: Style nav links with the same blue */
.navbar a,
header nav a {
  color: #0000a8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover,
header nav a:hover {
  color: #ffffff;
}
.logo-link {
  flex-shrink: 0;
}
.logo-link img.logo,
.logo {
  width: 160px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  transition: filter 0.3s ease;
  cursor: pointer;
}
.logo-link img.logo:hover,
.logo:hover {
  filter: drop-shadow(0 4px 10px rgba(226, 164, 65, 0.5));
}

/* Burger Menu */
.burger-menu {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #f5f7fa;
  cursor: pointer;
  user-select: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.burger-menu:hover,
.burger-menu:focus,
.burger-menu:active {
  background: #23305a;
  color: #ffa502;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  flex-wrap: nowrap;
}
.nav-links a {
  color: #0000a8;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus {
  background-color: #0000a8;
  color: #0000a8;
  box-shadow: inset 0 -4px 0 #c9a62e;
  outline: none;
}

/* Search + filters */
#product-search {
  margin-left: auto;
  padding: 8px 20px;
  border-radius: 24px;
  border: 2px solid #d1d9e6;
  max-width: 280px;
  font-size: 1rem;
  color: #33475b;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#product-search::placeholder {
  color: #a0a8b9;
  font-style: italic;
}
#product-search:focus {
  border-color: #e2a441;
  box-shadow: 0 0 10px #f1c40faa;
  outline: none;
  background-color: #fffef6;
}

/* Filters */
.filters {
  max-width: 1200px;
  margin: 40px auto 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #192a56;
  justify-content: center;
}
.filters label {
  font-weight: 700;
  color: #485a6b;
  white-space: nowrap;
  font-size: 1.05rem;
}
.filters select,
.filters input[type="range"] {
  cursor: pointer;
  border-radius: 36px;
  border: 2px solid #d1d9e6;
  padding: 8px 20px;
  font-size: 1rem;
  color: #33475b;
  background-color: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
  min-width: 160px;
}
.filters select:focus,
.filters input[type="range"]:focus {
  border-color: #e2a441;
  box-shadow: 0 0 14px #f1c40fbb;
  outline: none;
}

/* Grid */
#products {
  max-width: 1200px;
  margin: 0 auto 72px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 0 24px;
}

/* Card */
.product-card {
  background: #fff8e1;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.09);
  padding: 24px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.product-card:hover,
.product-card:focus-within {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 16px 48px rgba(226, 164, 65, 0.35);
  z-index: 3;
}
.product-card img {
  max-width: 90%;
  max-height: 160px;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 20px;
  user-select: none;
  transition: transform 0.3s;
}
.product-card:hover img {
  transform: scale(1.08) rotate(3deg);
}
.product-card h3 {
  margin: 12px 0 10px;
  font-size: 1.4rem;
  color: #3a4a64;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  text-shadow: 1px 1px 4px rgba(226,164,65,0.3);
}
.product-card p {
  flex-grow: 1;
  font-size: 1rem;
  color: #646f8a;
  margin-bottom: 20px;
  line-height: 1.35;
}
.price {
  font-size: 1.5rem;
  color: #e2a441;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.view-details-btn {
  margin-top: 12px;
  background-color: #3a4a64;
  color: #f5f7fa;
  border: none;
  padding: 10px 26px;
  border-radius: 32px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.35s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.view-details-btn:hover {
  background-color: #2d3e55;
  box-shadow: 0 6px 18px rgba(45, 62, 85, 0.5);
}

/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 480px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  overflow: hidden;
}
.modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #485a6b;
  font-weight: 700;
  transition: color 0.3s, transform 0.3s;
  user-select: none;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(72, 90, 107, 0.2);
}
.modal-close:hover,
.modal-close:focus {
  color: #e2a441;
  transform: scale(1.2);
  outline: none;
  box-shadow: 0 4px 12px rgba(226, 164, 65, 0.6);
}
.modal-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  user-select: none;
  touch-action: pan-y;
}
.carousel-images {
  display: flex;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  border-radius: 14px;
  overflow: hidden;
}
.carousel-images img {
  flex-shrink: 0;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background:#fff;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(226,164,65,0.85);
  color:#33475b;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  user-select: none;
  transition: background 0.3s;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(226,164,65,0.4);
}
.carousel-btn:hover {
  background:#f1c40f;
  color:#16243b;
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
#modal-description {
  font-size: 1.02rem;
  color: #5b6c82;
  margin-bottom: 10px;
  max-height: 160px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  line-height: 1.5;
}
#modal-price {
  font-size: 1.6rem;
  color: #e2a441;
  font-weight: 900;
  margin: 6px 0 8px;
  text-align: center;
  letter-spacing: 0.06em;
}

/* Get Quote */
.modal-cta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
button,
.page-btn,
.page-link,
.cta-btn {
  background-color: transparent;
  border: 2px solid #0000a8;
  color: #0000a8;
  padding: 14px 26px;
  border-radius: 32px;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  text-shadow: none;
  transition: all 0.3s ease;
  user-select: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-btn {
  background-color: #0000a8;
  border: 2px solid #0000a8;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 32px;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  text-shadow: none;
  transition: all 0.3s ease;
  user-select: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: blink 1.2s infinite;
}

button:hover,
.cta-btn:hover {
  background-color: #ffffff;
  color: #0000a8;
  border-color: #0000a8;
  box-shadow: 0 0 12px rgba(0, 0, 168, 0.6);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* Quote form with floating labels */
.quote-form {
  margin-top: 12px;
  background: #f9fafb;
  border: 1px solid #e8eef5;
  border-radius: 16px;
  padding: 14px;
  display: none;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from {opacity:0; transform: translateY(6px)} to {opacity:1; transform:none} }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 10px; }
.form-floating { position: relative; }
.form-floating input, .form-floating select, .form-floating textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #d1d9e6;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  color: #33475b;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-floating textarea { resize: vertical; min-height: 110px; }
.form-textarea { grid-column: 1 / -1; }
.form-floating label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a8699;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  transition: all .2s;
}
.form-floating input:focus, .form-floating select:focus, .form-floating textarea:focus {
  border-color: #e2a441;
  box-shadow: 0 0 0 3px rgba(226,164,65,0.15);
}
.form-floating input:not(:placeholder-shown) + label,
.form-floating input:focus + label,
.form-floating select:focus + label,
.form-floating textarea:not(:placeholder-shown) + label,
.form-floating textarea:focus + label {
  top: -8px;
  transform: none;
  font-size: 0.82rem;
  color: #a37922;
}
.quote-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}
.btn-primary {
  background: linear-gradient(135deg, #e2a441, #f1c40f);
  color: #233140;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(241,196,15,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(241,196,15,0.6); }
.btn-secondary {
  background: #3a4a64;
  color: #f5f7fa;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.btn-secondary:hover { background: #2d3e55; }
.quote-note { margin-top: 6px; font-size: 0.9rem; color: #6b7a8f; }

/* Backdrop and responsive */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33,47,61,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1010;
}
.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
body.modal-open { overflow: hidden; }

/* Footer - sticky at bottom */
.site-footer, footer {
  background: #0000a8;
  color: #0000a8;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.96rem;
  border-top: 2px solid #ffc107;
  user-select: none;
  width: 100%;
  margin-top: auto;
}

/* Chatbot button */
   /* Chatbot */
    .chatbot {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 300px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
      display: none;
      flex-direction: column;
      z-index: 999;
    }
    .chatbot.open {
      display: flex;
    }
    .chatbot-header {
      background: #0000a8;
      color: white;
      padding: 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    .chatbot-messages {
      flex-grow: 1;
      padding: 1rem;
      overflow-y: auto;
      max-height: 300px;
    }
    .chatbot-form {
      display: flex;
      padding: 0.5rem;
      gap: 0.5rem;
    }
    .chatbot-form input {
      flex-grow: 1;
      padding: 0.5rem;
    }
    .chatbot-form button {
      background: #0000a8;
      border: none;
      color: white;
      padding: 0.5rem 1rem;
      cursor: pointer;
    }
    .chatbot-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #0000a8;
      color: white;
      border: none;
      padding: 0.75rem 1rem;
      border-radius: 50px;
      cursor: pointer;
      font-size: 1.25rem;
      z-index: 1000;
    }

    .message.bot {
      background: #eee;
      padding: 0.5rem;
      border-radius: 6px;
      margin-bottom: 0.5rem;
    }
    .message.user {
      text-align: right;
      padding: 0.5rem;
      margin-bottom: 0.5rem;
    }
.chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.chatbot-close:hover {
  color: #0000a8;
}
.chatbot-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
  font-size: 0.94rem;
  color: #333;
}
.chatbot-messages .message {
  margin-bottom: 12px;
}
.chatbot-messages .message.user {
  text-align: right;
  color: #0000a8;
  font-weight: 600;
}
.chatbot-messages .message.bot {
  text-align: left;
  color: #222;
  font-weight: 400;
}
.chatbot-form {
  display: flex;
  border-top: 1px solid #ddd;
}
.chatbot-form input[type="text"] {
  flex-grow: 1;
  border: none;
  padding: 8px 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #2c3e50;
}
.chatbot-form button {
  background: #0000a8;
  border: none;
  color: #fff;
  padding: 0 16px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.chatbot-form button:hover, .chatbot-form button:focus {
  background: #0000a8;
}

/* Social Handles */
.social-handles {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-handles a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #192a56;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.social-handles a:hover {
  transform: translateY(-2px);
}
.social-handles a[aria-label="X"]:hover {
  background: #000;
}
.social-handles a[aria-label="WhatsApp"]:hover {
  background: #25d366;
}
.social-handles a[aria-label^="Send Email"]:hover {
  background: #ea4335;
}
.social-handles i {
  font-size: 18px;
  line-height: 1;
}

/* Responsive Queries */
@media (max-width: 980px) {
  main {
    padding: 24px 1rem;
  }
}
@media (max-width: 720px) {
  .burger-menu{display:block;}
  .nav-links{display:none;flex-direction:column;width:100%;gap:18px;margin-top:14px;background-color:#0000a8;border-radius:10px;padding:18px 28px;}
  .nav-links.show{display:flex;}
  .nav-links a{padding:14px 0;font-size:1.2rem;margin:0;font-weight:700;}
  #product-search{max-width:100%;margin-left:0;margin-top:12px;padding:10px 18px;font-size:1.1rem;}
  .filters {
    margin: 1rem 0;
    padding: 0 0.5rem;
    gap: 1rem;
    justify-content: space-around;
  }
}
@media (max-width: 700px) {
  .burger-menu {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1.1rem;
    margin-top: 1rem;
    background-color: #0000a8;
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
  }
  .nav-links.show {
    display: flex;
    animation: fadeInMenu 0.35s;
  }
  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: none;}
  }
  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem;
    margin: 0;
  }
  #product-search {
    max-width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }
  .filters {
    margin: 1rem 0;
    padding: 0 0.5rem;
    gap: 1rem;
    justify-content: space-around;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #products{grid-template-columns:1fr;padding:0 16px;}
  .modal { max-width: 95vw; max-height: 80vh; padding: 16px 18px; }
  #modal-description{ max-height:140px;}
  .carousel-images img{ max-height:220px;}
  .chatbot {
    width: 95vw;
    right: 2vw;
  }
  .chatbot-button {
    bottom: 16px;
    right: 16px;
  }
}

/* Color change animation */
.color-change {
  animation: colorChange 2s ease-in-out forwards;
  color: white;
}
@keyframes colorChange {
  from { color: white; }
  to { color: navy; }
}
.page-link {
  padding: 6px 12px;

  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.page-link:hover:not(:disabled) {
}

.page-link[aria-current="page"] {
  cursor: default;
  border-color: #007bff;
}

.page-link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.phone-launcher {
  position: fixed; left: 20px; bottom: 20px; z-index: 2000;
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: #ff6f00; color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: transform .2s ease, box-shadow .2s ease;
  font-weight: 700; font-size: 18px;
  text-decoration: none; /* Add this line */
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


    .phone-launcher:hover {
      transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.35);
      color: #ff5722;
    }
    .phone-panel {
      position: fixed; left: 20px; bottom: 90px; width: auto; max-height: 70vh;
      background: rgba(255,255,255,0.98); border-radius: 14px; overflow: hidden; z-index: 2000;
      box-shadow: 0 16px 40px rgba(0,0,0,.35); display: none; flex-direction: column;
      border: 1px solid rgba(0,0,0,.08);
      padding: 10px 14px; font-size: 16px; color: #2b3d5b;
      white-space: nowrap;
      user-select: none;
    }
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  padding: 0 20px;
}

.partner-logo {
  transition: all 0.3s ease;
  width: 100%;
  height: 120px;
  object-fit: contain;
  user-select: none;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
  cursor: default;
}
.product-content
{
margin:15px;
padding: 0 15px;
width:100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.hero-grid img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.hero-text h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.hero-text h2 {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid img {
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 1.2rem;
  }

  .hero-text h2 {
    font-size: 0.75rem;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #0000a8;
  min-width: 180px;
  z-index: 99;
  margin-top: 8px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Show dropdown (desktop or touch) */
.dropdown.show .dropdown-content,
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Dropdown Links */
.dropdown-content a {
  color: white !important;
  padding: 14px 18px;
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
}

.dropdown-content a:hover {
  background: #1717e7;
}

/* Align Parent Nav/Centers for looks */
.dropdown {
  position: relative;
  text-align: center;
}


@media (max-width: 768px) {
  .dropdown-content {
    display: none;
    position: fixed;
    transform: none;
    min-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .dropdown.show .dropdown-content {
    display: none;
  }

  .dropdown-content a {
    padding: 16px 18px;
    border-radius: 0;
    font-size: 1.07em;
  }
}
/* --- Base and Utility: Clean & Professional --- */
body {
    /* Keeping the original light background for brightness */
    background: #f0f4f8;
    color: #33475b; 
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif; /* Modern Font */
}

/* --- Header & Navigation: Elegant Glass Effect --- */
.site-header,
header {
    /* Use the Navy Blue transparently for a subtle glass effect */
    background: rgba(0, 0, 168, 0.9);
    color: #f5f7fa; /* White text for contrast */
    padding: 18px 32px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px) saturate(150%);
    border-bottom: 2px solid #f1c40f; /* Gold accent line */
    /* Soft-landing transition for all properties */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

/* Navigation Links - Highlight Pulse Effect */
.nav-links a {
    color: #f5f7fa; /* White text on blue header */
    font-weight: 600;
    font-size: 0.98rem;
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
    /* Custom ease for smooth, controlled motion */
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); 
}

.nav-links a:hover,
.nav-links a:focus {
    color: #f1c40f; /* Gold on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Subtle transparent white background */
    transform: translateY(-2px); /* Gentle lift */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* Search input - Deepened Focus Effect */
#product-search {
    border-radius: 24px;
    border: 1px solid #c8d2e0;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#product-search:focus {
    border-color: #0000a8; /* Navy Blue border */
    box-shadow: 0 0 0 3px rgba(0, 0, 168, 0.3), 0 0 15px rgba(0, 0, 168, 0.1);
    transform: scale(1.01);
}

/* --- Product Card: Soft Hover & Entrance Animation --- */

/* Grid Entrance Animation (Soft Slide-up) */
#products {
    opacity: 0;
    /* Use JS to add a class on load, but this sets the animation base */
    animation: gridSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s;
}
@keyframes gridSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

.product-card {
    background: #ffffff; /* Clean white card */
    border-radius: 16px; /* Slightly reduced border for modern feel */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 24px;
    /* Custom Cubic-Bezier for a soft, decelerating lift */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                border 0.4s;
    border: 1px solid transparent;
}
.product-card:hover,
.product-card:focus-within {
    transform: translateY(-8px) scale(1.02); 
    /* Subtler lift but pronounced shadow and border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 3px #0000a8; 
    border: 1px solid #0000a8;
    z-index: 5;
}

.product-card img {
    max-width: 95%;
    max-height: 180px;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Standard smooth ease-out for image */
}
.product-card:hover img {
    transform: scale(1.05); /* Gentle scale, no rotation */
}

.product-card h3 {
    color: #0000a8; /* Navy Blue Heading */
    letter-spacing: 0.01em;
    text-shadow: none;
}
.price {
    color: #e2a441; /* Gold Price Accent */
    font-size: 1.6rem;
    font-weight: 800;
}

.view-details-btn {
    background-color: #0000a8; /* Navy Blue Button */
    color: #ffffff;
    border-radius: 28px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 168, 0.4);
    /* Slower, more elegant button press effect */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.view-details-btn:hover {
    background-color: #000080; 
    box-shadow: 0 8px 25px rgba(0, 0, 168, 0.6);
    transform: translateY(-2px);
}

/* --- Modal: Elegant Pop-in (Scale + Slide) --- */

.modal {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    /* Starting slightly higher and smaller for a distinct entrance */
    transform: translate(-50%, -60%) scale(0.85); 
    opacity: 0;
    /* Combined transform/opacity for a premium entrance */
    transition: opacity 0.3s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
}
.modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.modal-close {
    color: #33475b;
    background: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}
.modal-close:hover {
    color: #e2a441;
    transform: scale(1.1) rotate(90deg); /* Subtle spin */
}

/* Carousel Button - Accent Fade */
.carousel-btn {
    background: #e2a441; /* Gold background */
    color: #33475b;
    transition: background 0.3s, transform 0.3s;
}
.carousel-btn:hover {
    background: #f1c40f;
    transform: scale(1.1);
}


/* Form Fields - Clean Navy Focus */
.form-floating input:focus, .form-floating select:focus, .form-floating textarea:focus {
    border-color: #0000a8;
    box-shadow: 0 0 0 3px rgba(0, 0, 168, 0.15);
}
.form-floating input:not(:placeholder-shown) + label,
.form-floating input:focus + label,
.form-floating select:focus + label,
.form-floating textarea:not(:placeholder-shown) + label,
.form-floating textarea:focus + label {
    color: #0000a8;
}

/* --- Footer and Utility --- */

.site-footer, footer {
    background: #0000a8;
    color: #c9c9e8; /* Very light blue for subtle contrast */
    border-top: none;
    padding: 1.5rem 1rem;
    transition: background-color 0.3s ease;
}

/* Phone Launcher - Gold Accent Pulse */
.phone-launcher {
    background: #e2a441; /* Use gold for the launcher */
    box-shadow: 0 10px 20px rgba(226, 164, 65, 0.5);
    animation: pulse 1.5s infinite;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.phone-launcher:hover {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 15px 30px rgba(226, 164, 65, 0.8);
}

/* Social Handles - Navy Pop */
.social-handles a {
    background: #0000a8; /* Navy Blue background */
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.3s; /* Spring/Bounce effect */
}
.social-handles a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #f1c40f; /* Gold accent on hover */
    color: #33475b;
}

/* --- Responsive Menu (Mobile) Enhancement --- */
@media (max-width: 700px) {
    .nav-links {
        background-color: #0000a8;
        border: 1px solid #f1c40f;
    }
    .nav-links.show {
        animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: none; }
    }
    .nav-links a {
        color: #f5f7fa;
    }
    .nav-links a:hover {
        background-color: rgba(241, 196, 15, 0.2);
        color: #f1c40f;
    }
}
/* --- Modified Chatbot Button CSS --- */

.chatbot-button {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background: #0000a8; 
    color: white; 
    border: none; 
    padding: 0.75rem 1rem; 
    border-radius: 50px; 
    cursor: pointer; 
    font-size: 1.25rem; 
    z-index: 1000; 
    
    /* ADDED: Initial shadow and perpetual animation */
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    transition: all 0.3s ease-in-out;
    /* Animation applied here to run continuously */
    animation: subtleBlink 2.5s infinite cubic-bezier(0.42, 0, 0.58, 1); /* Custom ease for continuous pulse */
}

/* Keyframes for the Subtle Blink Effect (No change here, still uses box-shadow and opacity) */
@keyframes subtleBlink {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        opacity: 1;
    }
    50% {
        /* Make the shadow larger and more vibrant for the pulse */
        box-shadow: 0 10px 30px rgba(255, 111, 0, 0.8), 0 0 0 0 rgba(255, 111, 0, 0);
        opacity: 0.85; /* Slight dimming at peak shadow */
    }
}

/* Hover retained but REMOVED the 'animation: none' line so the blink continues */
.chatbot-button:hover {
    background: #0000a8 /* Lighter shade on hover */
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
    transform: translateY(-2px);
    /* NOTE: The 'subtleBlink' animation is allowed to continue running */
}