/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; width:100%; overflow-x:hidden; font-family:"Poppins",sans-serif; background:#f5f5f5; color:#222; }

/* Header Base (keeps your original styling) */
/* ----- HEADER HIDE / SHOW ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #710000c8;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;      /* prevent clicking while hidden */
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide state */
.site-header.hide {
  top: -150px;  /* slightly more than header height */
}

/* Inner structure stays same */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}

.fade-container,
.fade-slide {
  z-index: 1 !important;
}
/* Prevent header from hiding while dropdown is open */
.site-header.hover-lock {
  top: 0 !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Logo */
.logo-area { display:flex; align-items:center; gap:12px; }
.logo-box { width:56px; height:56px; border-radius:50%; overflow:hidden; border:2px solid #000000; background:#fff; display:flex; align-items:center; justify-content:center; }
.logo-img { width:100%; height:100%; object-fit:cover; }
.brand-name { color:#fff; font-size:40px; font-weight:600; letter-spacing:0.6px; }

/* Nav */
.nav-container { flex:1; display:flex; justify-content:flex-end; }
.nav { display:flex; list-style:none; gap:28px; align-items:center; margin:0; padding:0; }
.nav > li { position:relative; }
nav ul li a {
    color: rgba(230, 230, 230, 0.796);      
    text-decoration: none;
    transition: 0.3s ease; 
}

nav ul li a:hover {
    color: #2de743;   
}

.nav-label { color:#fff; font-size:17px; font-weight:500; cursor:pointer; padding:8px; display:inline-block; }
.no-dropdown:hover { opacity:0.85; }

/* Dropdown (hover) */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;         /* instead of calc(100% + 8px) */
  left: 0;
  margin-top: 4px;   /* tiny gap but still hoverable */
  background: #d6fdc4d6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  z-index: 9999;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 32px;        /* hover buffer */
  background: transparent;
}

.dropdown:hover > .dropdown-content { display:flex; }
.dropdown-content.small-menu { width:340px; }

/* columns */
.menu-column { min-width:160px; }
.menu-column h3 { margin:0 0 8px; color:#d32f2f; font-weight:600; font-size:15px; }
.menu-column a { display:block; color:#222; text-decoration:none; padding:6px 0; font-size:14px; }
.menu-column a:hover { color:#d32f2f; transform:translateX(4px); }

/* Main content area - full width but center internal content using max-width */
.main-content { width:100%; }
.animation-section { width:100%; max-width:1200px; margin:0 auto; padding:22px 16px; }
.main-nav a.nav-button {
  color: #fff;
  text-decoration: none;
}

.main-nav a.nav-button:hover {
  color: #ffe0e0;  /* same hover effect as your other buttons */
}
/* ============================

/* ================= PRODUCT GRID ================= */

.product-section {
    max-width: 1300px;
    margin: 10px auto 80px;
    padding: 0 20px;
}

.product-title {
    text-align: center;
    font-size: 32px;
    margin-bottom:20x;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.product-card img {
    width: 620%;
    height: 620px;
    object-fit: cover;
    border-radius: 10px;
}

.p-name {
    font-size: 18px;
    margin: 12px 0;
    font-weight: 500;
}

.enquiry-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s;
}

.enquiry-btn:hover {
    background: #0d5ac1;
}
/* ----------------------------- Link not Appearing blue-------------------- */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #d32f2f;
}


/* ----------------------------- Footer --------------------------------- */
.footer {
  width: 100%;
  background: #2f2b1b;
  color: #fff;
  padding: 28px 0 36px;
  margin-top: 40px;
}
.footer-container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-col { min-width: 220px; }
.footer-col h3 { margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.footer-col p { margin: 6px 0; font-size: 15px; opacity: 0.95; }
.footer-nav { width: 100%; display: flex; justify-content: center; gap: 10px; margin-top: 12px; font-size: 14px; opacity: 0.95; }

/* ============================
   RESPONSIVE BEHAVIOR
   ============================ */
/* Tablet (3 columns) */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (2 columns) */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card img {
        height: 170px;
    }
}

/* Small Mobile (1 column) */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 160px;
    }
}
.brand-link {
  color: #ffffff !important;
  text-decoration: none !important; /* removes underline */
  font-weight: 600;   /* same as homepage */
}

.brand-link:hover {
  opacity: 0.75;
  text-decoration: none !important; /* no underline even on hover */
  color: #ffffff !important;
}

/* responsive */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}