/* ================================================================
   ICONIC INDUSTRIES PVT LTD — Main Stylesheet
   Colors: Orange #F47920 | Blue #0D2C6E
   ================================================================ */

/* ── Google Fonts imported in HTML ── */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:       #F47920;
  --orange-dark:  #D96510;
  --orange-light: #FFF4EB;
  --blue:         #0D2C6E;
  --blue-mid:     #1A4FA0;
  --blue-light:   #E8F0FC;
  --white:        #FFFFFF;
  --bg:           #F8F9FA;
  --dark:         #1A1A2E;
  --text:         #555;
  --border:       #E8E8E8;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow:       0 6px 30px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 50px rgba(0,0,0,.15);
  --radius:       14px;
  --radius-sm:    8px;
  --ease:         all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.text-center { text-align: center; }
.fw-600 { font-weight: 600; }

/* Section heading */
.sec-head { text-align: center; margin-bottom: 50px; }
.sec-head .tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.sec-head h2 span { color: var(--orange); }
.sec-head p {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--text);
  font-size: .96rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
  border-radius: 4px;
  margin: 14px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--ease);
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(244,121,32,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244,121,32,.45);
}
.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13,44,110,.3);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--orange);
  color: var(--white);
}

/* ─── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a { color: inherit; transition: var(--ease); }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); margin-right: 5px; }
.topbar-marquee { flex: 1; min-width: 0; overflow: hidden; }
.topbar-marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: rgba(255,255,255,.7);
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ─── HEADER ──────────────────────────────────────────────── */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text span:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}
.logo-text span:last-child {
  font-size: .65rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-main > li { position: relative; }
.nav-main > li > a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-main > li > a:hover,
.nav-main > li.active > a {
  color: var(--orange);
}
.nav-main > li > a.has-drop::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 7px;
  margin-bottom: 2px;
  transition: var(--ease);
}
.nav-main > li:hover > a.has-drop::after { transform: rotate(-135deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--ease);
  border-top: 3px solid var(--orange);
  z-index: 200;
}
.nav-main > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: .86rem;
  color: var(--dark);
  transition: var(--ease);
}
.dropdown li a i {
  width: 22px;
  color: var(--orange);
  font-size: .9rem;
}
.dropdown li a:hover {
  background: var(--orange-light);
  color: var(--orange);
  padding-left: 26px;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--blue-light);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--ease);
}
.header-contact:hover { background: var(--blue); color: var(--white); }
.header-contact i { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 3px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
}
.mobile-nav-list > li { border-bottom: 1px solid var(--border); }
.mobile-nav-list > li > a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.mobile-nav-list .sub-items a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  color: var(--text);
  border-left: 2px solid var(--orange-light);
  margin: 4px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mobile-nav-list .sub-items a:hover { background: var(--orange-light); color: var(--orange); }
.mobile-contact-box {
  margin-top: 30px;
  padding: 20px;
  background: var(--blue);
  border-radius: var(--radius);
  color: var(--white);
}
.mobile-contact-box p { font-size: .85rem; margin-bottom: 6px; opacity: .8; }
.mobile-contact-box a { color: var(--orange); font-weight: 700; font-size: 1.05rem; display: block; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, #1A4FA0 60%, #2C6ED5 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,44,110,.92) 0%,
    rgba(13,44,110,.6) 55%,
    rgba(13,44,110,.1) 100%
  );
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: var(--orange);
}
.hero-shapes span:nth-child(1) { width: 500px; height: 500px; top: -120px; right: -80px; }
.hero-shapes span:nth-child(2) { width: 300px; height: 300px; bottom: -80px; right: 200px; }
.hero-shapes span:nth-child(3) { width: 180px; height: 180px; top: 60px; right: 350px; opacity: .05; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 580px;
}
.hero-text { padding: 60px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,.18);
  border: 1px solid rgba(244,121,32,.4);
  color: #FFB87A;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--orange); font-size: .9rem; }
.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
}
.hero-stat p {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  letter-spacing: .5px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
/* Banner placeholder */
.hero-img-wrap {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 3px solid rgba(255,255,255,.15);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
  transition: transform .5s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

/* ─── FEATURES STRIP ─────────────────────────────────────── */
.features-strip {
  background: var(--orange);
  padding: 22px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 10px 16px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.feature-item p  { font-size: .74rem; opacity: .85; }

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories-section { background: var(--bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  cursor: pointer;
  border: 1px solid var(--border);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.cat-img {
  height: 200px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-img .cat-icon-bg {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
}
.cat-body {
  padding: 20px 22px 22px;
}
.cat-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: var(--ease);
}
.cat-card:hover .cat-body h3 { color: var(--orange); }
.cat-body p {
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 14px;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
}
.cat-link i { transition: transform .25s ease; }
.cat-card:hover .cat-link i { transform: translateX(4px); }
.cat-count {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.about-img-badge i {
  font-size: 2rem;
  color: var(--orange);
}
.about-img-badge h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
.about-img-badge p {
  font-size: .75rem;
  color: var(--text);
}
.about-text .sec-head { text-align: left; margin-bottom: 24px; }
.about-text .sec-head .divider { margin: 14px 0 0; }
.about-text > p { font-size: .94rem; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 30px;
}
.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg);
  padding: 14px;
  border-radius: var(--radius-sm);
}
.about-feat-item i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feat-item h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-feat-item p { font-size: .77rem; color: var(--text); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 10px;
}
.stat-box {
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
}
.stat-box h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-box p {
  font-size: .74rem;
  color: var(--text);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 500;
}

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border-bottom: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--orange);
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
  transition: var(--ease);
}
.why-icon-orange { background: var(--orange-light); color: var(--orange); }
.why-icon-blue   { background: var(--blue-light);   color: var(--blue); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(-6deg); }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: .85rem; color: var(--text); line-height: 1.7; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(110deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .08;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,.75);
  font-size: .94rem;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── PRODUCT PAGE BANNER ────────────────────────────────── */
.page-banner {
  background: linear-gradient(110deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .07;
}
.page-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.page-banner p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .82rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--ease); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.5); }

/* ─── PRODUCT FILTER TABS ────────────────────────────────── */
.filter-section { background: var(--bg); padding: 20px 0; border-bottom: 1px solid var(--border); }
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: var(--ease);
  cursor: pointer;
}
.filter-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ─── PRODUCTS SECTION ───────────────────────────────────── */
.products-section { background: var(--white); }
.subcategory-block { margin-bottom: 60px; }
.subcat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.subcat-title::before {
  content: '';
  width: 5px;
  height: 22px;
  background: var(--orange);
  border-radius: 3px;
  flex-shrink: 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--ease);
  position: relative;
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-img {
  height: 190px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .35s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img .prod-icon {
  font-size: 3rem;
  color: var(--blue-mid);
  opacity: .25;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge-modular { background: var(--blue-light); color: var(--blue); }
.badge-decor   { background: var(--orange-light); color: var(--orange-dark); }
.badge-premium { background: #FFF8E1; color: #B8860B; }

.product-body {
  padding: 16px 18px 18px;
}
.product-code {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}
.product-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
}
.product-hsn {
  font-size: .72rem;
  color: var(--text);
  margin-bottom: 14px;
}
.product-hsn span { font-weight: 600; color: var(--blue); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.enquire-btn {
  flex: 1;
  padding: 9px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  transition: var(--ease);
  display: block;
}
.enquire-btn:hover { background: var(--orange); }
.whatsapp-btn {
  width: 36px;
  height: 36px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--ease);
  flex-shrink: 0;
}
.whatsapp-btn:hover { background: #1ebe5a; transform: scale(1.08); }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-full { background: var(--white); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.about-full-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.mv-card {
  padding: 34px 28px;
  border-radius: var(--radius);
  border-left: 5px solid var(--orange);
}
.mv-card.blue-border { border-left-color: var(--blue); }
.mv-card.bg-orange { background: var(--orange-light); }
.mv-card.bg-blue { background: var(--blue-light); }
.mv-card i { font-size: 2rem; margin-bottom: 14px; }
.mv-card.bg-orange i { color: var(--orange); }
.mv-card.bg-blue i { color: var(--blue); }
.mv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.mv-card p { font-size: .88rem; color: var(--text); line-height: 1.7; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.contact-info-box {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
}
.contact-info-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-box > p {
  font-size: .87rem;
  opacity: .75;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: .82rem;
  font-weight: 700;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text p {
  font-size: .9rem;
  color: var(--white);
  line-height: 1.6;
}
.contact-detail-text a:hover { color: var(--orange); }
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--ease);
}
.contact-social a:hover { background: var(--orange); }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-box > p {
  font-size: .87rem;
  color: var(--text);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .88rem;
  color: var(--dark);
  background: var(--bg);
  transition: var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,121,32,.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; font-size: .95rem; border-radius: var(--radius-sm); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #81c784;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
}

/* Map */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(20%);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: var(--ease);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: .95rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--orange); }

/* ─── SCROLL TOP ─────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(244,121,32,.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--ease);
  z-index: 900;
  font-size: 1rem;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  z-index: 900;
  transition: var(--ease);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.75); }
}

/* ─── PAGE TRANSITIONS ───────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-text h1 { font-size: 2.5rem; }
}

@media (max-width: 900px) {
  .nav-main, .header-contact { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .about-full-grid { grid-template-columns: 1fr; }
  .about-img-main, .about-full-img { height: 300px; }
  .about-img-badge { left: 0; bottom: -20px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sec-head h2 { font-size: 1.6rem; }
  .hero-text h1 { font-size: 2rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-inner { text-align: center; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
}
