/* --- Global Styles & Reset --- */
:root {
  --primary-color: #5d4037;
  /* Brown from logo */
  --accent-color: #a1887f;
  /* Lighter brown */
  --text-color: #333;
  --bg-color: #ffffff;
  --card-bg: #fafafa;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text-color);
  background: #f8f4ec;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 0;
  /* 110px header + breathing space */
}


a {
  text-decoration: none;
  color: var(--primary-color);
}

h1,
h2,
h3 {
  color: var(--primary-color);
}

/* --- Header & Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  /* ✅ FIXED HEIGHT */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}



/* Logo alignment */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  /* 🔵 Circle size */
  height: 100px;
  padding: 8px;
  box-sizing: border-box;
}

.logo-link img {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
  border-radius: 50%;
  /* Extra smooth edge */
  position: relative;
  left: -20px;
}

/* Center Company Name */
.logo-company-name {
  position: relative;
  left: 40%;
  transform: translateX(-50%);
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
  /* ✅ Brown */
  letter-spacing: 1px;
  font-family: "Georgia", serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  padding-right: 5%;
}

.main-nav a {
  margin-left: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
}


.main-nav a:hover {
  color: var(--accent-color);
}



.main-nav a.active {
  border-bottom-color: #5d4037;
  /* your primary brown color */
  font-weight: 600;
}

/* --- Hero Section --- */
.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #301c14;
}

/* --- Product Grid --- */
.product-showcase h2,
.about-snippet h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Footer --- */
.main-footer {
  text-align: center;
  padding: 30px 0;
  background: var(--primary-color);
  color: white;
  margin-top: 40px;
}
.page-hero {
  text-align: center;
  padding: 60px 20px;
}

.product-section {
  padding: 50px 0;
}

.product-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #5d4037;
}

.light-bg {
  background-color: #fafafa;
}

.about-section {
  padding: 60px 20px;
}

.about-text {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.center {
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.enquiry-section {
  padding: 60px 20px;
}

.enquiry-wrapper {
  max-width: 1000px;
  margin: auto;
  gap: 40px;
}

.enquiry-form,
.enquiry-info {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.enquiry-form h2,
.enquiry-info h2 {
  margin-bottom: 20px;
  color: #5d4037;
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.enquiry-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #fdfffe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* IMPORTANT FIX */
.whatsapp-float img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.hero-section {
  min-height: 75vh;

  background-image: linear-gradient(rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)),
    url("hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-section h1 {
  color: #f8f4ec;
  /* warm off-white */
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1.2px;

  padding: 10px 22px;
  margin-bottom: 18px;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35));

  border-left: 5px solid #c7a76c;
  /* premium accent line */
  border-radius: 4px;
  display: inline-block;

  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
}

.hero-section p {
  color: #eae5db;
  font-size: 18px;
  max-width: 620px;

  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.about-section.light-bg {
  position: relative;
  background-image: url("factory bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  /* IMPORTANT */
  overflow: hidden;
  /* MOST IMPORTANT */
}

.about-section.light-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top, right, bottom, left = 0 */
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

/* CONTENT KO OVERLAY KE UPAR LANE KE LIYE */
.about-section.light-bg>* {
  position: relative;
  z-index: 2;
}
/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #5d4037;
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 35px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: 0.3s ease-in-out;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 18px;
  }
}

/* =========================
   MOBILE VIEW FIX (ONLY)
========================= */
@media (max-width: 768px) {

  /* ----- Header Fix ----- */
  .main-header {
    flex-direction: row;
    height: 80px;
    padding: 0px 0px;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo Left */
  .logo-link {
    width: auto;
    height: auto;
    padding: 0;
  }

  .logo-link img {
    height: 90px;
    max-width: none;
    max-height: none;
    left: 0;
  }

  /* Company Name Perfect Center */
  .logo-company-name {
  position: absolute;
  left: 53%;
  top: 47%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
  pointer-events: none; /* click conflict avoid */
}

  /* Hamburger Right */
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Container spacing fix */
  .container {
    padding: 110px 15px 0;
  }

  /* ----- Navigation ----- */
  .main-nav {
    text-align: center;
    padding: 0;
  }

  .main-nav a {
    display: inline-block;
    margin: 6px 10px;
    font-size: 13px;
  }

  .hero-section {
    min-height: 60vh;
    padding: 0 15px;
  }

  .hero-section h1 {
    font-size: 34px;
    padding: 8px 14px;
  }

  .hero-section p {
    font-size: 15px;
  }

  /* ----- Grids ----- */
  .grid-layout,
  .grid-2,
  .grid-3,
  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ----- About Section ----- */
  .about-section {
    padding: 50px 15px;
  }

  .about-text {
    font-size: 15px;
  }

  /* ----- Enquiry Section ----- */
  .enquiry-section {
    padding: 40px 15px;
  }

  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }

  /* ----- Footer ----- */
  .main-footer {
    font-size: 14px;
    padding: 25px 10px;
  }

}
.view-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background-color: #5d4037;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-more-btn:hover {
  background-color: #4a322b;
  transform: translateY(-2px);
}

.product-variant {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.gallery {
  flex: 1;
}

.main-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-img:hover {
  transform: scale(1.15);
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnails img:hover {
  border-color: #333;
}

.product-info {
  flex: 1;
}

.product-info h2 {
  margin-bottom: 15px;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}

.logo-preview {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 90px;
  display: none;
  opacity: 0.9;
}

.customize-box {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}

.customize-box label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.customize-box select,
.customize-box input {
  width: 100%;
  padding: 6px;
  margin-top: 5px;
}

.note {
  font-size: 12px;
  color: #666;
}
/* ===== IMAGE ZOOM POPUP ===== */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.img-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.page-title{
  font-size: 36px;
  letter-spacing: 1px;
  position: relative;
}

/* =========================
   TABLET PERFECT HEADER
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

  .main-header {
    position: relative;
    height: 85px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* Logo - Left Corner (WORKING FIX) */
.logo-link {
  position: relative;
  left: -35px;
}

.logo-link img {
  height: 100px;
  left: 0;
}
  /* Company Name - Exact Center */
  .logo-company-name {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Hamburger - Near Center */
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Slide Menu */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: 0.3s ease-in-out;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .container {
    padding: 120px 20px 0;
  }
}
/* ===== PREMIUM ECO STRIP ===== */

.premium-eco {
  background: linear-gradient(to right, #f8f9f6, #ffffff, #f8f9f6);
  padding: 90px 20px;
}

.premium-eco h3 {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 70px;
  font-weight: 700;
  color: #222;
  position: relative;
}

.premium-eco h3::after {
  content: "";
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #5d4037, #c7a76c);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.eco-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.eco-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93,64,55,.12), rgba(199,167,108,.15));
  opacity: 0;
  transition: .4s;
}

.eco-card:hover::before {
  opacity: 1;
}

.eco-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.eco-card img{
  width: 150px;     /* yaha size control karo */
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
}

.eco-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #5d4037;
}

.eco-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }
}
.eco-strip {
  margin-top: 80px;
}
.hero-banner {
  height: 300px;
  background: url("bag/slidee57.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-banner h1 {
  font-size: 36px;
}

.hero-banner p {
  font-size: 18px;
}
.highlight-strip {
  display: flex;
  overflow-x: auto;
  gap: 15px;
}

.highlight-strip img {
  height: 360px;
}

