/* ========== CSS RESET + VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fafafc;
  color: #1e1e2f;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== PREMIUM COLOR PALETTE ========== */
:root {
  /* ===== BRAND COLORS (HYBRID PACKAGING LOGO) ===== */

  --brand-orange: #f5a623;
  --brand-orange-dark: #e69512;
  --brand-orange-soft: #ffb84d;

  /* Map old variables to new brand colors so nothing breaks */

  --rich-gold: #f5a623;
  --soft-gold: #ffb84d;

  /* ===== DARK INDUSTRIAL COLORS ===== */

  --deep-navy: #1a1a1a;
  --charcoal: #1a1a1a;
  --dark-grey: #555555;
  --cool-grey: #8a8a8a;
  --slate: #6b7280;

  /* ===== BACKGROUNDS ===== */

  --light-bg: #f5f6f7;
  --pure-white: #ffffff;

  /* ===== GLASS EFFECT ===== */

  --glass-bg: rgba(255, 255, 255, 0.6);

  /* ===== SHADOWS ===== */

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.18);
  --shadow-lift: 0 30px 55px rgba(0, 0, 0, 0.25);

  /* ===== BRAND GLOW ===== */

  --border-glow: 0 0 0 2px rgba(245, 166, 35, 0.35);
}

.contact-info span {
  margin-right: 2rem;
  transition: color 0.2s;
}
.contact-info i {
  color: var(--rich-gold);
  /* margin-right: 0.4rem; */
}
.contact-info span:hover {
  color: var(--rich-gold);
}
.tagline {
  font-weight: 500;
  color: var(--soft-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ========== HEADER / NAV ========== */
.header {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(198, 164, 63, 0.2);
  width: 100%;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 420px;
  object-position: center;
  height: 69px;
}

 .footer .logo img{
    width: 410px;
    height: 100%;
    margin-bottom: 20px;
  }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-menu li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rich-gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-menu li a:hover::after {
  width: 100%;
}
.nav-menu li a:hover {
  color: var(--soft-gold);
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 22, 45, 0.98);
  backdrop-filter: blur(10px);
  min-width: 260px;
  padding: 1rem 0;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-heavy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  border: 1px solid rgba(198, 164, 63, 0.2);
  border-top: 2px solid var(--rich-gold);
  list-style: none;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  color: #e0e0f0;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
}
.dropdown-menu li a {
  display: block;
  padding: 0.7rem 2rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.dropdown-menu li:hover {
  background: rgba(198, 164, 63, 0.1);
  color: var(--rich-gold);
}
.dropdown-menu li:hover a {
  padding-left: 2.5rem;
}

/* mobile menu button */
.hamburger {
  display: none;
  font-size: 2.6rem; /* Large and readable */
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10002; /* Must be ABOVE the drawer (10001) to stay clickable for closing */
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.hamburger:hover {
  color: var(--rich-gold);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--deep-navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(198, 164, 63, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content .overline {
  color: var(--rich-gold);
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: white;
  margin-bottom: 1.8rem;
}
.hero-content h1 strong {
  color: var(--rich-gold);
  font-weight: 700;
}
.hero-content p {
  font-size: 1.2rem;
  color: #b0b8d0;
  margin-bottom: 2.8rem;
  max-width: 500px;
}
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  border: 2px solid var(--rich-gold);
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rich-gold);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn:hover::before {
  left: 0;
}
.btn:hover {
  color: var(--deep-navy);
  border-color: var(--rich-gold);
}
.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-heavy);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-image img:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}

/* ========== STATS ========== */
.stats {
  background: var(--pure-white);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  align-items: center;
}
.stat h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}
.stat p {
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 0;
  background: #f5f7fc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  /* height: 600px; */
  border-radius: 40px;
  box-shadow: var(--shadow-heavy);
  transition: all 0.4s;
}
.about-image img:hover {
  transform: scale(1.01) translateY(-5px);
}
.overline {
  color: var(--rich-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
  color: var(--deep-navy);
}
.about-content p {
  font-size: 1.1rem;
  color: #4a4b62;
  margin-bottom: 1.2rem;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
  padding: 6rem 0;
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: #f8faff;
  padding: 2.5rem 2rem;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  border: 1px solid transparent;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.1);
}
.why-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--rich-gold);
  box-shadow: var(--shadow-lift);
  background: white;
}
.why-card i {
  font-size: 3rem;
  color: var(--rich-gold);
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.why-card p {
  color: #5a5b70;
}

/* ========== PRODUCT TIMELINE (horizontal) ========== */
.timeline-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, #0b0c1e 0%, #1b1d3a 100%);
  color: white;
}
.timeline-section .overline,
.timeline-section .section-title {
  color: white;
}
.timeline-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
}
.timeline-item {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  position: relative;
}
.timeline-icon {
  width: 90px;
  height: 90px;
  background: rgba(198, 164, 63, 0.1);
  border: 2px dashed var(--rich-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--rich-gold);
  transition: all 0.3s;
}
.timeline-item:hover .timeline-icon {
  background: var(--rich-gold);
  color: var(--deep-navy);
  border: 2px solid white;
  transform: rotate(360deg) scale(1.1);
}
.timeline-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.timeline-item p {
  color: #b5bcd5;
  font-size: 0.95rem;
}

/* ========== ASYMMETRICAL GALLERY ========== */
.gallery-section {
  padding: 6rem 0;
  background: #f0f3fa;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #4a4b62;
  font-size: 1.2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; /* Reduced from 1.5rem */
  max-width: 900px; /* Reduced by 10% from 1000px */
  margin: 3rem auto 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s ease;
  background: #ffffff;
  aspect-ratio: 1 / 1; /* Makes each card a perfect square */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
  padding: 1.5rem;
}

.img-zoom-20 {
  transform: scale(1.2); /* 20% zoom */
  padding: 0 !important; /* Removes padding for extra "zoom" effect */
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: transform 0.3s;
  display: block;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* responsive square grid */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 30, 0.98);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.image-modal.active {
  display: flex;
}
#modalImage {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: 30px;
  box-shadow: var(--shadow-heavy);
  border: 3px solid var(--rich-gold);
  object-fit: contain;
}
#modalTitle {
  color: white;
  font-size: 1.8rem;
  margin-top: 2rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}
.close-modal {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 4rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}
.close-modal:hover {
  color: var(--rich-gold);
  transform: scale(1.1);
}

/* ========== CERTIFICATION ========== */
.certification-section {
  padding: 6rem 0;
  background: white;
  text-align: center;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.cert-card {
  flex: 0 1 340px;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2rem;
  /* Fixed space for background image */
  padding-top: 200px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);

  /* Background common settings */
  background-size: 140px; /* Uniform icon size */
  background-repeat: no-repeat;
  background-position: center 3rem;
}

.cert-card.cert-1 {
  background-image: url('../assets/images/quality.png');
}

.cert-card.cert-2 {
  background-image: url('../assets/images/uasl.png');
  /* Apply filter to whiten the slightly grey background of this specific logo */
  filter: brightness(1.05) contrast(1.05);
}

.cert-card.cert-3 {
  background-image: url('../assets/images/quality2.png');
}

.cert-card.cert-4 {
  background-image: url('../assets/images/iso9001.png');
}

.cert-card.cert-5 {
  background-image: url('../assets/images/quality3.png');
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--rich-gold);
}

.cert-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cert-content p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cert-card {
    flex: 1 1 300px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--deep-navy);
  color: #cbd5e0;
  padding-top: 4rem;
}
.footer a{
  text-decoration: none;
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
  transition: 0.2s;
  cursor: default;
}
.footer-col ul li a {
  color: #cbd5e0;
  text-decoration: none;
}
.footer-col ul li:hover {
  color: var(--rich-gold);
  transform: translateX(5px);
}
.footer-col p {
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
  color: #8f9bb3;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cert-grid {
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 100vh !important; /* Force full height */
    background: rgba(11, 12, 30, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2.5rem; /* Adjusted for better spacing */
    gap: 1.8rem;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.4);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 10001; /* Highest priority for the drawer */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Header refinement for standard mobile devices (up to 426px) */
@media (max-width: 426px) {
  .hamburger {
    font-size: 2rem !important; /* Decreased icon size */
    width: 40px !important;
    height: 40px !important;
    color: #000000 !important; /* Forced absolute black */
  }
}

/* Finer mobile breakpoint for the drawer and tiny screens */
@media (max-width: 375px) {
  .nav-menu {
    width: 100vw !important; /* Full width for mobile devices */
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 900px) {
  /* Body lock when menu is open */
  body.no-scroll {
    overflow: hidden !important;
  }
  .nav-menu li a{
    color: white;
  }
  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .hamburger {
    display: flex; /* Using flex for perfect centering */
    color: #000000; /* Standard mobile color as black */
  }
  /* Ensure it stays on top */
  .hamburger {
    z-index: 10002;
  }
  
  /* If the menu is open, make the hamburger white and slightly smaller for feedback */
  body.no-scroll .hamburger {
    color: white !important;
    transform: scale(0.9);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 1rem 0 0 1rem;
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown > a i {
    transition: transform 0.3s;
  }
  .dropdown.active > a i {
    transform: rotate(180deg);
  }
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cert-grid {
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2.1rem;
  }
}
/* ========== CTA SECTION ========== */

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, #0b0c1e 0%, #1b1d3a 100%);
}

.cta-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 40px;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid rgba(198, 164, 63, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

/* subtle glow */
.cta-box::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(198, 164, 63, 0.15),
    transparent 70%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.cta-content .section-title {
  color: white;
  margin-bottom: 1.2rem;
}

.cta-content .section-title strong {
  color: var(--rich-gold);
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 2.2rem;
  color: #b5bcd5;
  font-size: 1.15rem;
}

/* buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* outline button */
.btn-outline {
  border: 2px solid white;
}

.btn-outline:hover {
  border-color: var(--rich-gold);
  color: var(--deep-navy);
}

.btn-outline::before {
  background: white;
}
/* CTA MOBILE */

@media (max-width: 900px) {
  .cta-box {
    padding: 3rem 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========== PRODUCTS SECTION ========== */

.products-section {
  padding: 5.4rem 0; /* Reduced from 6rem */
  background: white;
  text-align: center;
}

.products-grid {
  margin-top: 2.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  flex: 0 1 360px; /* Ensures 3 cards per row on large screens */
  background: #f8faff;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.12);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--rich-gold);
  box-shadow: var(--shadow-lift);
}

/* IMAGE */

.product-image {
  height: 200px; /* Reduced from 220px */
  overflow: hidden;
  background: white; /* Blends with catalog shots */
}

.product-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */

.product-content {
  padding: 1.8rem; /* Reduced from 2rem */
  text-align: left;
}

.product-content h3 {
  font-size: 1.35rem; /* Reduced from 1.5rem */
  margin-bottom: 0.72rem; /* Reduced from 0.8rem */
}

.product-content p {
  color: #5a5b70;
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  font-size: 0.85rem; /* Reduced from 0.95rem */
}

/* BUTTON */

.product-btn {
  text-decoration: none;
  font-weight: 600;
  color: var(--rich-gold);
  position: relative;
}

.product-btn::after {
  content: " →";
  transition: transform 0.3s ease;
}

.product-btn:hover::after {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .products-grid {
    gap: 1.5rem;
  }
  .product-card {
    flex: 1 1 340px;
  }
  .footer .logo img {
    width: 330px;
    height: 57px;
  }
  .logo img{
    width: 290px;
    height: 57px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    flex: 1 1 100%;
    max-width: 400px;
  }

  .product-image {
    height: 200px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 1.25rem; /* Tighter padding for very small screens */
  }
  .section-title {
    font-size: 1.8rem;
  }
}


/* ========== HYBRID PACKAGING MARQUEE ========== */

.hp-marquee {
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.hp-marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: hpMarquee 25s linear infinite;
}

.hp-marquee span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: white;
  opacity: 0.85;

  transition: all 0.35s ease;

  position: relative;
  cursor: default;
}

/* hover glow */

.hp-marquee span:hover {
  color: #f5a623;

  text-shadow:
    0 0 6px rgba(245, 166, 35, 0.8),
    0 0 12px rgba(245, 166, 35, 0.6),
    0 0 20px rgba(245, 166, 35, 0.4);

  transform: translateY(-3px);
}

/* divider dot */

.hp-marquee span::after {
  content: "•";
  color: rgba(245, 166, 35, 0.6);
  margin-left: 80px;
}

/* animation */

@keyframes hpMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .hp-marquee-track {
    gap: 50px;
    animation-duration: 30s;
  }

  .hp-marquee span {
    font-size: 1rem;
  }

  .hp-marquee span::after {
    margin-left: 50px;
  }
}

@media (max-width: 600px) {
  .hp-marquee {
    padding: 14px 0;
  }

  .hp-marquee span {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

/* Floating Contact Section */

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Call */
.float-btn.call {
  background: #ff3c3c;
}

/* WhatsApp */
.float-btn.whatsapp {
  background: #25d366;
}

/* Email */
.float-btn.email {
  background: #0077ff;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .floating-contact {
    right: 15px;
    bottom: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}


/* TRUST STRIP */
.trust-strip {
  padding: 70px 0;
  background: #0a0a0a;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-top h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}

.trust-top span {
  color: #ff3c00;
  font-weight: 700;
}

/* MARQUEE */
.trust-marquee {
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

/* ITEMS */
.trust-track span {
  color: rgba(255,255,255,0.7);
  font-size: 25px;
  letter-spacing: 0.5px;
  position: relative;
  padding-right: 40px;
}

/* separator dot */
.trust-track span::after {
  content: "•";
  position: absolute;
  right: 10px;
  color: #ff3c00;
}

/* animation */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* hover pause (premium feel) */
.trust-track:hover {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-top h3 {
    font-size: 18px;
  }

  .trust-track {
    gap: 30px;
  }

  .trust-track span {
    font-size: 13px;
  }
}