/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #223A54;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: navDrop 0.6s ease;
}

@keyframes navDrop {
  from { transform: translateY(-70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + BRANDNAME WRAPPER */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;  /* GAP BETWEEN LOGO & BRAND NAME */
}

/* LOGO CIRCLE */
.logo-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E5A70D; 
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseLogo {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
  50% { transform: scale(1.08); box-shadow: 0 0 15px 5px rgba(229,167,13,0.5); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BRAND NAME */
.brand-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: fadeInBrand 0.8s ease;
  padding-left: 25px;
}

@keyframes fadeInBrand {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 55px;  /* GAP BETWEEN LINKS */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: 0.3s ease;
}

.nav-links li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: #E5A70D;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= RESPONSIVE ================= */

/* Tablets & Small Desktops */
@media (max-width: 950px) {
  .nav-container {
    padding: 0 20px;
  }

  .brand-name {
    font-size: 20px;
    padding-left: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;
    background: #1F2937;
    padding: 25px 0;
    gap: 25px;
  }

  .nav-links.active {
    display: flex;
    animation: menuFade 0.5s ease;
  }

  @keyframes menuFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Phones */
@media (max-width: 500px) {
  .nav-container {
    padding: 0 12px;
  }

  .logo-box {
    width: 45px;
    height: 45px;
  }

  .brand-name {
    font-size: 16px;
    padding-left: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-links {
    top: 70px;
    gap: 20px;
    padding: 20px 0;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }
}

/* Very Small Screens (320px) */
@media (max-width: 320px) {
  .nav-container {
    padding: 0 8px;
    gap: 8px;
  }

  .logo-box {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 14px;
    padding-left: 10px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }
}

/* Ultra-Small Screens (200px - 260px) */
@media (max-width: 260px) {
  .nav-container {
    padding: 0 5px;
    gap: 5px;
  }

  .logo-box {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 12px;
    padding-left: 10px;
  }

  .nav-links li a {
    font-size: 12px;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
  }
}

/* BANNER */
.banner {
  width: 100%;
  height: 75vh; /* Adjust height as needed */
  background: url('images/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(34, 58, 84, 0.8),   /* Darker at top */
    rgba(34, 58, 84, 0.4)    /* Lighter at bottom */
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInBanner 1.2s ease forwards;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-style: italic;
  color: white;
}

.banner-btn {
  background: #c90c64;
  color: #f6f3f6;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #f9d67a;
  color: #223A54;
  transform: translateY(-3px);
}

/* Banner Animation */
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 950px) {
  .banner-content h1 { font-size: 38px; }
  .banner-content p { font-size: 18px; }
  .banner-btn { font-size: 16px; padding: 12px 25px; }
}

@media (max-width: 500px) {
  .banner {
    height: 60vh;
  }

  .banner-content h1 { font-size: 28px; }
  .banner-content p { font-size: 16px; }
  .banner-btn { font-size: 14px; padding: 10px 20px; }
}

@media (max-width: 320px) {
  .banner {
    height: 55vh;
  }

  .banner-content h1 { font-size: 22px; }
  .banner-content p { font-size: 14px; }
  .banner-btn { font-size: 12px; padding: 8px 16px; }
}

/* =================================
products
================================= */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8faff;
}

.product-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #223A54;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #4fa3f7;
  margin: 10px auto 0;
  border-radius: 2px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  background: #e7f1ff;
  color: #1d4ed8;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1d4ed8;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in a row for desktop */
  gap: 25px; /* proper gap between cards */
  justify-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f0f4ff;
  padding: 10px;
  transition: transform 0.3s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-content {
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #223A54;
  margin: 5px 0;
}



.price {
  color:transparent;
}

.desc {
  color: #666;
  font-size: 13px;
  margin-bottom: 5px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  flex-grow: 1;
}

.features li {
  font-size: 12px;
  color: #444;
  padding-left: 16px;
  margin-bottom: 3px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1d75f0;
  font-size: 11px;
  font-weight: bold;
}

.inquire-btn {
  background: linear-gradient(90deg, #4fa3f7, #1d75f0);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.inquire-btn:hover {
  background: linear-gradient(90deg, #1d75f0, #4fa3f7);
}

/* Responsive */
@media(max-width:1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet/laptop */
    gap: 20px;
  }
  .product-img { height: 170px; }
}

@media(max-width:768px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
    gap: 15px;
  }
  .product-img { height: 160px; }
  .product-section { padding: 40px 15px; }
}

/* =================================
End products
================================= */

/* ========================================
Footer
======================================== */

/* FOOTER SECTION */
.footer {
  background: #223A54; /* same as navbar */
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* Main Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 140px; /* Equal gap between all 3 columns */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
}

/* Footer Columns */
.footer-column {
  width: 300px; /* FIXED width = perfect spacing */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff6f61;
}

.footer-column p, 
.footer-column ul, 
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff6f61;
}

/* Logo + Text */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 55px;
  height: auto;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(12deg); }
  100% { transform: rotate(0deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}


/* ========================================
Footer
======================================== */


/* ===== QUICK VIEW PREMIUM ===== */

.quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.quick-view-box {
  background: linear-gradient(180deg,#ffffff,#f7faff);
  width: 95%;
  max-width: 480px;
  border-radius: 20px;
  padding: 22px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  animation: popupZoom 0.4s ease;
}

/* Close */
.close-modal {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.close-modal:hover {
  background: #ff3b3b;
}

/* Image */
.qv-image-wrap {
  position: relative;
  background: #eef4ff;
  border-radius: 16px;
  padding: 20px;
}

.qv-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.price::before {
  content: "Contact for Price";
  color: #1d75f0;
  font-weight: 600;
}
/* Price Badge */
.qv-price {
 display: none;
}

/* Title */
.qv-title {
  margin: 15px 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #223A54;
}

/* Features */
.qv-features {
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding-right: 5px;
}

.qv-features li {
  font-size: 13px;
  padding-left: 18px;
  margin-bottom: 6px;
  position: relative;
}

.qv-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1d75f0;
  font-weight: bold;
}

/* WhatsApp Button */
.qv-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg,#25D366,#1ebc59);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.qv-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.5);
}

/* Animation */
@keyframes popupZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media(max-width:480px) {
  .qv-image-wrap img {
    height: 200px;
  }
}

/* Image wrapper */
.img-wrap {
  position: relative;
}

/* Eye icon */
.img-wrap {
  position: relative;
}

/* Static Eye Button */
.quick-view-eye {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1d75f0;
  border: none;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 2;
  transition: 0.3s ease;
}

.quick-view-eye i {
  font-size: 16px;
}

.quick-view-eye:hover {
  transform: scale(1.1);
  background: #0f5ed7;
}

/* =====================================================
   PRICE VISIBILITY CONTROL
   -----------------------------------------------------
   Purpose:
   - Client requested NOT to show product prices.
   - Replaces price text with "Contact for Price"
   - Hides price in Quick View modal

   How it works:
   - .price::before  → shows "Contact for Price"
   - .price          → makes actual price text invisible
   - .qv-price       → hides price badge in quick view

   HOW TO REVERT:
      OR
   2) Change `.price { color: transparent; }`
      to `.price { color: #1d75f0; }`
      and remove `.price::before` rule
   ===================================================== */