/* ============================================================
   UNIWIDES — India Meets UAE  |  style.css
   Saffron #FF9933 dominates, Green #138808 accents
   Fonts: Cormorant Garamond + DM Sans + Bebas Neue
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Bebas+Neue&display=swap');

:root {
  --saffron: #FF9933;
  --saffron-dark: #e07a10;
  --saffron-light: #ffb55a;
  --saffron-pale: #fff4e8;
  --green-india: #138808;
  --green-light: #1aad0a;
  --green-pale: #e8f5e6;
  --green-mid: #0e7a06;
  --navy: #0a1628;
  --navy-mid: #102040;
  --navy-light: #1a3258;
  --gold: #e8a020;
  --gold-light: #f5c040;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --bg-light: #f2f5fb;
  --grey-100: #eef1f7;
  --grey-200: #dde3ee;
  --grey-400: #8a96b0;
  --text: #141c2e;
  --text-muted: #4a5568;
  --text-light: #8892aa;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, .08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, .12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, .16);
  --shadow-saf: 0 8px 28px rgba(255, 153, 51, .35);
  --shadow-grn: 0 8px 28px rgba(19, 136, 8, .22);
  --nav-h: 116px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 48px;
  --ease: 0.35s cubic-bezier(.4, 0, .2, 1);
  --bounce: 0.5s cubic-bezier(.34, 1.56, .64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--saffron);
  border-radius: 3px;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.loader-logo-wrap {
  animation: logoZoom 1.2s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes logoZoom {
  from {
    transform: scale(0.15);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.loader-logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(255, 153, 51, .2));
}

.loader-tricolor {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  width: 160px;
  height: 5px;
  animation: loaderBar 1.5s .6s ease both;
}

@keyframes loaderBar {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.loader-tricolor span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.loader-tricolor span:nth-child(2) {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-200);
}

.loader-tricolor span:nth-child(3) {
  flex: 1;
  background: var(--green-india);
}

.loader-tagline {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  animation: fadeIn .8s 1s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================================
   STICKY SOCIAL — individual hover scale only
   ============================================================ */
.sticky-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ss-btn {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  color: var(--white);
  font-size: 1.15rem;
  position: relative;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  /* NO group animation — each one individually */
  transition: padding-right var(--ease), transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow var(--ease);
}

/* Individual hover: only the hovered one scales */
.ss-btn:hover {
  transform: translateX(-5px) scale(1.18);
  box-shadow: -4px 0 18px rgba(0, 0, 0, .25);
  z-index: 1;
}

.ss-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width var(--ease), margin-left var(--ease);
  margin-left: 0;
}

.ss-btn:hover .ss-label {
  max-width: 90px;
  margin-left: 9px;
}

.ss-whatsapp {
  background: #25d366;
  box-shadow: -2px 2px 10px rgba(37, 211, 102, .3);
}

.ss-phone {
  background: var(--saffron);
  box-shadow: -2px 2px 10px rgba(255, 153, 51, .3);
}

.ss-fb {
  background: #1877f2;
  box-shadow: -2px 2px 10px rgba(24, 119, 242, .25);
}

.ss-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: -2px 2px 10px rgba(220, 39, 67, .25);
}

/* Subtle stagger entrance on load (no repeating pulse — each its own) */
.ss-whatsapp {
  animation: ssEntry .6s .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

.ss-phone {
  animation: ssEntry .6s .45s cubic-bezier(.34, 1.56, .64, 1) both;
}

.ss-fb {
  animation: ssEntry .6s .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.ss-insta {
  animation: ssEntry .6s .75s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes ssEntry {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================================
   NAVIGATION & DOUBLE BAR HEADER
   ============================================================ */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(10, 22, 40, .08);
  transition: transform var(--ease);
}

.top-header {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: var(--white);
  height: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.15), inset 0 3px 8px rgba(255, 255, 255, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.top-header-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left,
.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-header-link,
.top-header-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: opacity var(--ease);
}

.top-header-link:hover {
  opacity: 0.85;
}

.nav {
  position: relative;
  height: 76px;
  z-index: 1000;
  background: #ffffff !important;
  transition: all var(--ease);
  box-shadow: 0 1px 0 var(--grey-200);
}

.nav.nav-transparent {
  background: #ffffff !important;
}

.nav.nav-scrolled {
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--grey-200), 0 4px 24px rgba(10, 22, 40, .07);
}

.nav-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-tricolor-bar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 5px;
}

.nav-tricolor-bar span {
  display: block;
  height: 5px;
  border-radius: 1px;
}

.nav-tricolor-bar span:nth-child(1) {
  background: var(--saffron);
}

.nav-tricolor-bar span:nth-child(2) {
  background: var(--white);
  border: 1px solid var(--grey-200);
}

.nav-tricolor-bar span:nth-child(3) {
  background: var(--green-india);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 13px;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .03em;
  color: var(--text-muted) !important;
  position: relative;
  transition: color var(--ease), background var(--ease);
}

.nav-scrolled .nav-link {
  color: var(--text-muted) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--saffron);
  transition: transform var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--saffron-dark) !important;
  background: var(--saffron-pale) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-quote {
  padding: 10px 22px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-saf);
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 153, 51, .5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text) !important;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-scrolled .nav-hamburger span {
  background: var(--text) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .05em;
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: var(--shadow-saf);
}

.btn-saffron:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255, 153, 51, .55);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .55);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-ghost-white:hover i {
  color: var(--white) !important;
}

.btn-primary-india {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary-india:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 96px 0;
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 12px;
}

.tag-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.section-subheading {
  color: var(--text-muted);
  font-size: .98rem;
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.75;
}

.text-saffron {
  color: var(--saffron-dark);
}

.text-green {
  color: var(--green-india);
}

.tricolor-divider {
  display: flex;
  gap: 0;
  margin: 16px auto 0;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.tricolor-divider span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.tricolor-divider span:nth-child(2) {
  flex: 1;
  background: var(--green-india);
}

.tricolor-divider span:nth-child(3) {
  flex: 1;
  background: var(--navy);
}

.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: .95rem;
}

.office-contact-body {
  padding: 0;
}

.office-contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media(min-width:760px) {
  .office-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.office-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  min-height: 120px;
  background: rgba(255, 153, 51, .08);
  border: 1px solid rgba(255, 153, 51, .18);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(255, 153, 51, .06);
  overflow: hidden;
}

.office-contact-card div:last-child {
  min-width: 0;
  flex: 1;
}

.office-contact-card p a {
  word-break: break-all;
  overflow-wrap: break-word;
  display: inline-block;
  max-width: 100%;
}

.office-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.office-contact-label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.office-contact-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .96rem;
}

.office-contact-card a {
  color: var(--navy);
  font-weight: 700;
  transition: color var(--ease);
}

.office-contact-card a:hover {
  color: var(--saffron-dark);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy);
  border-top: 3px solid var(--saffron);
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.marquee-track i.fa-diamond {
  color: var(--saffron);
  font-size: .5rem;
}

/* ============================================================
   HERO VIDEO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent !important;
}

.hero-tricolor-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg, var(--saffron) 33.3%, var(--white) 33.3%, var(--white) 66.6%, var(--green-india) 66.6%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px !important;
  max-width: 1050px !important; /* expanded to fit single line text */
  background: rgba(10, 22, 40, 0.353) !important;
  /* backdrop-filter:blur(12px) !important;
  -webkit-backdrop-filter:blur(12px) !important; */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-lg) !important;
  margin: 40px auto !important; /* center-align card container */
  text-align: center; /* center text content */
}

/* Hero title — one line desktop, reduced font */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem) !important; /* adjusted to fit single line */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 18px;
  white-space: nowrap;
  /* one line on desktop */
  overflow: visible;
  text-overflow: clip;
  animation: heroFadeIn .8s .2s ease both;
}

@media(max-width:900px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 36px;
  line-height: 1.65;
  animation: heroFadeIn .8s .38s ease both;
  white-space: nowrap; /* forced single line on desktop */
}

@media(max-width:900px) {
  .hero-subtitle {
    white-space: normal;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center; /* center-align buttons container */
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeIn .8s .52s ease both;
}

.hero-mute-btn {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  font-size: 1rem;
  transition: background var(--ease), transform var(--ease);
}

.hero-mute-btn:hover {
  background: rgba(255, 255, 255, .22);
  transform: scale(1.1);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: heroFadeIn .8s 1s ease both;
}

.scroll-mouse {
  width: 22px;
  height: 35px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 11px;
  position: relative;
}

.scroll-dot {
  width: 4px;
  height: 7px;
  background: var(--saffron);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    top: 5px;
    opacity: 1;
  }

  50% {
    top: 18px;
    opacity: .3;
  }
}

.hero-scroll-cue span {
  font-size: .6rem;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  margin-bottom: 20px;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.badge-flag {
  display: flex;
  flex-direction: column;
  width: 28px;
  border-radius: 2px;
  overflow: hidden;
}

.badge-flag .flag-saffron {
  height: 9px;
  background: var(--saffron);
}

.badge-flag .flag-white {
  height: 9px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-flag .flag-chakra {
  font-size: 7px;
  color: #000080;
}

.badge-flag .flag-green {
  height: 9px;
  background: var(--green-india);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-country {
  font-weight: 800;
  font-size: .8rem;
  color: var(--white);
  line-height: 1;
}

.badge-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .55);
}

.about-img-accent {
  position: absolute;
  bottom: -12px;
  right: 20px;
  width: 80%;
  height: 10px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green-india));
  border-radius: 0 0 6px 6px;
}

.about-img-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-mini-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform var(--ease);
  box-shadow: var(--shadow-sm);
}

.about-img-mini-row img:hover {
  transform: scale(1.03);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.about-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  border-left: 3px solid var(--saffron);
  transition: transform var(--ease), box-shadow var(--ease);
}

.about-hl-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.ahl-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  transition: transform var(--bounce);
}

.about-hl-item:hover .ahl-icon {
  transform: scale(1.12) rotate(-8deg);
}

.about-hl-item strong {
  font-size: .9rem;
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.about-hl-item p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   ANIMATED COUNTER STRIP
   ============================================================ */
.counter-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.counter-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green-india) 66%, var(--green-india) 100%);
}

.counter-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-india) 0%, var(--green-india) 33%, var(--white) 33%, var(--white) 66%, var(--saffron) 66%, var(--saffron) 100%);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.counter-card {
  padding: 48px 20px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--ease);
}

.counter-card:last-child {
  border-right: none;
}

.counter-card:hover {
  background: rgba(255, 255, 255, .04);
}

.counter-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-saf);
  transition: transform var(--bounce);
}

.counter-card:hover .counter-icon-wrap {
  transform: scale(1.12) rotate(-8deg);
}

/* Green variant for alternating counters */
.counter-icon-green {
  background: linear-gradient(135deg, var(--green-india), var(--green-light)) !important;
  box-shadow: var(--shadow-grn) !important;
}

.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--saffron-light);
  display: block;
  margin-bottom: 8px;
  transition: color var(--ease);
}

.counter-card:hover .counter-num {
  color: var(--white);
}

.counter-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}

/* ============================================================
   INFO 3-COL
   ============================================================ */
.info-section {
  background: var(--bg-light);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-col {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.info-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--saffron-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-dark);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.info-box-card h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.info-box-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: .96rem;
}

.info-box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--saffron-dark);
  transition: color var(--ease);
}

.info-box-link:hover {
  color: var(--saffron);
}

/* Logo col */
.info-logo-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.info-logo {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.info-company-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .12em;
  background: linear-gradient(135deg, var(--saffron), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 4px;
}

.info-company-full {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.info-tricolor {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 20px;
  width: 70px;
}

.info-tricolor span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.info-tricolor span:nth-child(2) {
  flex: 1;
  background: var(--green-india);
}

.info-tricolor span:nth-child(3) {
  flex: 1;
  background: var(--navy);
}

/* tagline + cert badges removed */
.info-social-mini {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 4px;
}

.ism-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: var(--white);
  transition: transform var(--bounce), opacity var(--ease);
}

.ism-btn:hover {
  transform: translateY(-4px) scale(1.12);
}

.ism-wa {
  background: #25d366;
}

.ism-fb {
  background: #1877f2;
}

.ism-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.ism-li {
  background: #0077b5;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--ease);
}

.acc-item:hover {
  box-shadow: var(--shadow-sm);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  background: var(--white);
  font-weight: 700;
  font-size: .87rem;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}

.acc-head span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-icon {
  color: var(--saffron);
  font-size: .84rem;
}

.acc-arrow {
  color: var(--grey-400);
  font-size: .7rem;
  transition: transform var(--ease);
}

.acc-item.acc-open .acc-head {
  background: var(--saffron);
  color: var(--white);
}

.acc-item.acc-open .acc-icon {
  color: var(--white);
}

.acc-item.acc-open .acc-arrow {
  color: var(--white);
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
  background: var(--bg-light);
}

.acc-item.acc-open .acc-body {
  max-height: 320px;
}

.acc-body p {
  padding: 15px 17px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.values-list {
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
}

.values-list li i {
  color: var(--green-india);
  font-size: .8rem;
}

/* Contact Info col */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  transition: transform var(--bounce);
}

.ci-icon-green {
  background: linear-gradient(135deg, var(--green-india), var(--green-light)) !important;
}

.ci-item:hover .ci-icon {
  transform: scale(1.12) rotate(-6deg);
}

.ci-text {
  display: flex;
  flex-direction: column;
}

.ci-label {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.ci-value {
  font-weight: 600;
  font-size: .84rem;
  color: var(--navy);
}

.ci-value[href]:hover {
  color: var(--saffron-dark);
}

/* ============================================================
   CATEGORIES — 3 per row, icon on image top-right
   ============================================================ */
.categories-section {
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cat-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, .05) 0%, rgba(10, 22, 40, .5) 100%);
}

/* Icon — top right corner on the image, visible */
.cat-icon-top {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(255, 153, 51, .5);
  transition: transform var(--bounce), background var(--ease);
}

.cat-card:hover .cat-icon-top {
  transform: scale(1.15) rotate(-10deg);
  background: linear-gradient(135deg, var(--green-india), var(--green-light));
}

.cat-content {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-content h3 {
  font-weight: 800;
  font-size: .97rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.cat-content p {
  font-size: .79rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: var(--r-xl);
  align-self: flex-start;
  background: var(--saffron-pale);
  color: var(--saffron-dark);
  font-weight: 700;
  font-size: .73rem;
  letter-spacing: .04em;
  border: 1.5px solid rgba(255, 153, 51, .28);
  transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
}

.cat-card:hover .cat-btn {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  transform: scale(1.04);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-200);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--saffron-pale);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--saffron-dark);
  transition: background var(--ease), color var(--ease), transform var(--bounce);
}

.svc-icon-green {
  background: var(--green-pale) !important;
  color: var(--green-india) !important;
}

.svc-card:hover .svc-icon-wrap {
  background: var(--saffron);
  color: var(--white);
  transform: scale(1.1) rotate(-8deg);
}

.svc-card:hover .svc-icon-green {
  background: var(--green-india) !important;
  color: var(--white) !important;
}

.svc-card h3 {
  font-weight: 800;
  font-size: .98rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.svc-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  background: var(--white);
}

.brands-swiper {
  padding-bottom: 36px !important;
}

.brand-logo-card {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  transition: box-shadow var(--ease), transform var(--ease);
}

.brand-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-logo-card img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  transition: filter var(--ease), opacity var(--ease);
}

.brand-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.brands-pagination .swiper-pagination-bullet {
  background: var(--saffron);
}

.brands-pagination .swiper-pagination-bullet-active {
  background: var(--saffron-dark);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-swiper {
  padding: 8px 4px 44px !important;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  font-size: 1.9rem;
  color: var(--saffron);
  opacity: .25;
  margin-bottom: 9px;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: .93rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-weight: 800;
  font-size: .88rem;
}

.testi-author span {
  font-size: .74rem;
  color: var(--text-light);
}

.testi-pagination .swiper-pagination-bullet {
  background: var(--saffron);
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--saffron-dark);
  transform: scale(1.4);
}

.testi-prev,
.testi-next {
  color: var(--saffron) !important;
}

.testi-prev::after,
.testi-next::after {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}

/* ============================================================
   BLOG — REDESIGNED LAYOUT
   ============================================================ */
.blog-section {
  background: var(--white);
}

/* Category badge colours */
.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

.blog-cat-logistics {
  background: var(--saffron);
}

.blog-cat-trading {
  background: var(--green-india);
}

/* green used here */
.blog-cat-supply {
  background: var(--navy);
}

/* Blog meta row */
.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .73rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-meta-row i {
  color: var(--saffron);
}

/* Top layout: big featured left + 3 stacked right */
.blog-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Big hero card */
.blog-hero-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bhc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.bhc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.blog-hero-card:hover .bhc-img-wrap img {
  transform: scale(1.05);
}

.bhc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, .65) 100%);
}

.bhc-content {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bhc-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--navy);
}

.bhc-content p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.blog-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-xl);
  align-self: flex-start;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  box-shadow: var(--shadow-saf);
  transition: transform var(--ease), box-shadow var(--ease);
}

.blog-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 153, 51, .45);
}

/* Side stack */
.blog-side-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-side-card {
  display: flex;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  flex: 1;
}

.blog-side-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-200);
}

.bsc-img-wrap {
  width: 110px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.bsc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-side-card:hover .bsc-img-wrap img {
  transform: scale(1.07);
}

.bsc-content {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bsc-content h3 {
  font-weight: 800;
  font-size: .87rem;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--navy);
}

.bsc-content p {
  font-size: .77rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.blog-link-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: .73rem;
  color: var(--saffron-dark);
  transition: gap var(--ease);
}

.blog-side-card:hover .blog-link-more,
.blog-grid-card:hover .blog-link-more {
  gap: 8px;
}

/* Bottom 3-col row */
.blog-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-grid-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.blog-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-200);
}

.bgc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 170px;
}

.bgc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.blog-grid-card:hover .bgc-img-wrap img {
  transform: scale(1.06);
}

.bgc-content {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bgc-content h3 {
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--navy);
}

.bgc-content p {
  font-size: .79rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--navy);
}

.cta-tricolor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  display: flex;
}

.cta-tricolor span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.cta-tricolor span:nth-child(2) {
  flex: 1;
  background: var(--white);
}

.cta-tricolor span:nth-child(3) {
  flex: 1;
  background: var(--green-india);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-ashoka {
  font-size: 3rem;
  margin-bottom: 16px;
  color: rgba(255, 153, 51, .35);
  animation: spinSlow 20s linear infinite;
  display: inline-block;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
  white-space: nowrap !important;
}

.cta-inner h2 span {
  color: var(--saffron-light);
}

.cta-inner p {
  color: rgba(255, 255, 255, .66);
  font-size: .98rem;
  margin-bottom: 34px;
  white-space: nowrap !important;
  text-align: center !important;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #043a14, #128231) !important;
}

.footer,
.footer p,
.footer a,
.footer h4,
.footer li,
.footer span,
.footer i {
  color: #ffffff !important;
}

.footer a:hover {
  opacity: 0.8 !important;
}

.footer-top {
  background: transparent !important;
  padding: 70px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-style: italic;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-tricolor {
  display: flex;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  width: 54px;
  margin-bottom: 16px;
}

.footer-tricolor span:nth-child(1) {
  flex: 1;
  background: var(--saffron);
}

.footer-tricolor span:nth-child(2) {
  flex: 1;
  background: var(--white);
}

.footer-tricolor span:nth-child(3) {
  flex: 1;
  background: var(--green-india);
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.fsoc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  color: var(--white);
  transition: transform var(--bounce), opacity var(--ease);
}

.fsoc-btn:hover {
  transform: translateY(-4px) scale(1.12);
}

.fsoc-wa {
  background: #25d366;
}

.fsoc-fb {
  background: #1877f2;
}

.fsoc-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.fsoc-li {
  background: #0077b5;
}

.footer-col-title {
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: .81rem;
  color: rgba(255, 255, 255, .46);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--ease), padding-left var(--ease);
}

.footer-links a i {
  font-size: .58rem;
  color: var(--saffron);
}

.footer-links a:hover {
  color: var(--saffron-light);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .81rem;
  color: rgba(255, 255, 255, .46);
}

.footer-contact-list li i {
  color: var(--saffron);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .8rem;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .46);
  transition: color var(--ease);
}

.footer-contact-list li a:hover {
  color: var(--saffron-light);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2) !important;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .77rem;
  color: #ffffff !important;
}

.footer-links-policies {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .77rem;
}

.footer-links-policies a {
  color: #ffffff !important;
  transition: opacity var(--ease);
}

.footer-links-policies a:hover {
  opacity: 0.8;
}

.flag-mini {
  display: flex;
  flex-direction: column;
  width: 20px;
  border-radius: 1px;
  overflow: hidden;
}

.flag-mini span {
  height: 3px;
}

.flag-mini span:nth-child(1) {
  background: var(--saffron);
}

.flag-mini span:nth-child(2) {
  background: var(--white);
}

.flag-mini span:nth-child(3) {
  background: var(--green-india);
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .8s;
}

[data-aos="fade-up"] {
  transform: translateY(42px);
}

[data-aos="fade-down"] {
  transform: translateY(-28px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="zoom-in"] {
  transform: scale(.88);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos-delay="50"] {
  transition-delay: 50ms;
}

[data-aos-delay="100"] {
  transition-delay: 100ms;
}

[data-aos-delay="150"] {
  transition-delay: 150ms;
}

[data-aos-delay="200"] {
  transition-delay: 200ms;
}

[data-aos-delay="250"] {
  transition-delay: 250ms;
}

[data-aos-delay="300"] {
  transition-delay: 300ms;
}

[data-aos-delay="350"] {
  transition-delay: 350ms;
}

[data-aos-delay="400"] {
  transition-delay: 400ms;
}

[data-aos-delay="450"] {
  transition-delay: 450ms;
}

[data-aos-delay="500"] {
  transition-delay: 500ms;
}

[data-aos-delay="550"] {
  transition-delay: 550ms;
}

[data-aos-delay="600"] {
  transition-delay: 600ms;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-side-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .blog-bottom-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:860px) {
  :root {
    --nav-h: 64px;
  }

  .nav-menu,
  .btn-quote {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .blog-side-stack {
    grid-template-columns: 1fr;
  }

  .blog-bottom-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-social {
    display: none !important;
  }

  .ss-btn {
    border-radius: 0;
    padding: 12px 16px;
  }

  .ss-label {
    display: none;
  }
}

@media(max-width:520px) {
  .hero-title {
    font-size: 1.55rem;
    white-space: normal;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-pad {
    padding: 64px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE BANNER — PARALLAX (shared across all inner pages)
   ============================================================ */
/* ============================================================
   PAGE BANNER — TRUE PARALLAX (background-attachment:fixed)
   Banner sits at very top; nav overlaps it via fixed positioning
   ============================================================ */
.page-banner {
  position: relative;
  height: 520px;
  /* tall banner — starts at absolute top of page */
  display: flex;
  align-items: center;
  /* NO margin-top — banner bleeds under the fixed nav */
}

.page-banner-sm {
  height: 400px;
}

/* Fixed-attachment parallax: bg stays put as page scrolls = true parallax */
.pb-parallax {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Disable fixed attachment - using JS parallax instead for better compatibility */
  background-attachment: scroll;
  z-index: 0;
  will-change: transform;
}

.pb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, .82) 0%,
      rgba(26, 40, 80, .65) 50%,
      rgba(10, 22, 40, .78) 100%);
}

.pb-tricolor-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg,
      var(--saffron) 33.3%,
      var(--white) 33.3%, var(--white) 66.6%,
      var(--green-india) 66.6%);
}

.pb-inner {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-h) + 40px);
  /* push content below fixed nav */
}

/* Mobile responsive fixes for parallax banner */
@media (max-width: 768px) {
  .page-banner {
    height: 400px;
  }

  .pb-parallax {
    /* On mobile, extend the background to prevent gaps during parallax */
    inset: -50px 0;
  }

  .pb-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .pb-sub {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 350px;
  }

  .pb-inner {
    padding-top: calc(var(--nav-h) + 20px);
  }
}

.pb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}

.pb-breadcrumb a {
  color: rgba(255, 255, 255, .75);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pb-breadcrumb a:hover {
  color: var(--saffron-light);
}

.pb-breadcrumb i.fa-chevron-right {
  font-size: .58rem;
  color: rgba(255, 255, 255, .35);
}

.pb-breadcrumb span {
  color: var(--saffron-light);
  font-weight: 600;
}

.pb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}

.pb-title span {
  background: linear-gradient(135deg, var(--saffron-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pb-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.abt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image stack */
.abt-img-col {
  position: relative;
}

.abt-img-stack {
  position: relative;
}

.abt-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.abt-img-float {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 54%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease);
}

.abt-img-float:hover {
  transform: scale(1.03);
}

/* India flag badge */
.abt-flag-badge {
  position: absolute;
  top: 24px;
  left: -18px;
  display: flex;
  flex-direction: column;
  width: 32px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.fb-saffron {
  height: 11px;
  background: var(--saffron);
  display: block;
}

.fb-white {
  height: 11px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-chakra {
  font-size: 8px;
  color: #000080;
}

.fb-green {
  height: 11px;
  background: var(--green-india);
  display: block;
}

/* Locations chip */
.abt-locations-chip {
  position: absolute;
  bottom: 12px;
  left: -18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--r-xl);
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.abt-locations-chip i {
  color: var(--saffron);
}

/* Text col */
.abt-text-col {}

.abt-para {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 16px;
  font-size: .95rem;
}

/* Presence pills */
.abt-presence {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.presence-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-xl);
  background: var(--saffron-pale);
  color: var(--saffron-dark);
  font-weight: 700;
  font-size: .78rem;
  border: 1.5px solid rgba(255, 153, 51, .28);
  transition: background var(--ease), transform var(--bounce);
}

.presence-pill:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
}

.presence-pill i {
  font-size: .75rem;
}

/* Vision/Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.vm-card-navy {
  background: #138808;
  color: var(--white);
}

.vm-card-saffron {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  color: var(--white);
}

.vm-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 22px;
  transition: transform var(--bounce);
}

.vm-card:hover .vm-icon-wrap {
  transform: scale(1.12) rotate(-8deg);
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.vm-card p {
  opacity: .88;
  line-height: 1.82;
  font-size: .93rem;
}

/* Quality Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pillar-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform var(--bounce);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.12) rotate(-8deg);
}

.pillar-saffron {
  background: var(--saffron-pale);
  color: var(--saffron-dark);
}

.pillar-card:hover .pillar-saffron {
  background: var(--saffron);
  color: var(--white);
}

.pillar-green {
  background: var(--green-pale);
  color: var(--green-india);
}

.pillar-card:hover .pillar-green {
  background: var(--green-india);
  color: var(--white);
}

.pillar-card h3 {
  font-weight: 800;
  font-size: .93rem;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: .04em;
}

.pillar-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us-img-col {
  position: relative;
}

.why-us-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.why-us-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: var(--r-xl);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  box-shadow: var(--shadow-saf);
  animation: float 5s ease-in-out 1s infinite;
}

.why-us-badge i {
  font-size: 1.1rem;
  opacity: .85;
}

.why-us-text-col {}

.why-us-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.wuc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
}

.wuc-item i {
  color: var(--green-india);
  font-size: .88rem;
  flex-shrink: 0;
}

/* Products assist */
.pa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pa-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.pa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-200);
}

.pa-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: transform var(--bounce);
}

.pa-card:hover .pa-icon {
  transform: scale(1.12) rotate(-8deg);
}

.pa-saffron {
  background: var(--saffron-pale);
  color: var(--saffron-dark);
}

.pa-card:hover .pa-saffron {
  background: var(--saffron);
  color: var(--white);
}

.pa-green {
  background: var(--green-pale);
  color: var(--green-india);
}

.pa-card:hover .pa-green {
  background: var(--green-india);
  color: var(--white);
}

.pa-card h4 {
  font-weight: 800;
  font-size: .93rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.pa-card p {
  font-size: .81rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PRODUCTS LISTING PAGE
   ============================================================ */

/* Filter bar */
.prod-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: 0 4px 20px rgba(10, 22, 40, .06);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}

.prod-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.prod-filter-inner::-webkit-scrollbar {
  display: none;
}

.pf-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .05em;
  border: 1.5px solid var(--grey-200);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--ease);
  flex-shrink: 0;
}

.pf-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron-dark);
}

.pf-btn.pf-active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-saf);
}

/* Category block */
.prod-category-block {
  margin-bottom: 64px;
  transition: opacity var(--ease);
}

.prod-category-block.hidden {
  display: none;
}

.pcb-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--grey-100);
}

.pcb-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-saf);
  transition: transform var(--bounce);
}

.pcb-header:hover .pcb-icon {
  transform: scale(1.1) rotate(-6deg);
}

.pcb-green {
  background: linear-gradient(135deg, var(--green-india), var(--green-light)) !important;
  box-shadow: var(--shadow-grn) !important;
}

.pcb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pcb-desc {
  font-size: .82rem;
  color: var(--text-muted);
}

/* Products grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prod-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  text-decoration: none;
  color: inherit;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--grey-200);
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, .04) 0%, rgba(10, 22, 40, .42) 100%);
}

.prod-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--saffron);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}

.prod-cat-green {
  background: var(--green-india) !important;
}

.prod-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-body h3 {
  font-weight: 800;
  font-size: .97rem;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.35;
}

.prod-card-body p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.prod-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
}

.prod-enquire {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  transition: color var(--ease);
}

.prod-card:hover .prod-enquire {
  color: var(--green-india);
}

.prod-arrow {
  color: var(--saffron);
  font-size: .85rem;
  transition: transform var(--ease), color var(--ease);
}

.prod-card:hover .prod-arrow {
  transform: translateX(4px);
  color: var(--green-india);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.pd-gallery-col {}

.pd-main-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.pd-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.pd-main-img-wrap:hover .pd-main-img {
  transform: scale(1.03);
}

.pd-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--saffron);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pd-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pd-thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--ease), transform var(--ease);
}

.pd-thumb:hover {
  border-color: var(--saffron);
  transform: scale(1.04);
}

.pd-thumb-active {
  border-color: var(--saffron);
}

.pd-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* Info col */
.pd-info-col {}

.pd-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--saffron);
  color: var(--saffron-dark);
  background: var(--saffron-pale);
  margin-bottom: 14px;
}

.pd-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.pd-tricolor-line {
  height: 4px;
  width: 70px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  margin-bottom: 22px;
}

.pd-tricolor-line::before {
  content: '';
  flex: 1;
  background: var(--saffron);
}

.pd-tricolor-line::after {
  content: '';
  flex: 2;
  background: var(--green-india);
}

/* faked with a pseudo - use a div instead */
.pd-enquire-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--blue-pale, var(--bg-light));
  border-left: 3px solid var(--saffron);
  margin-bottom: 22px;
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pd-enquire-note i {
  color: var(--saffron);
  margin-top: 2px;
  flex-shrink: 0;
}

.pd-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.pd-hl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  background: var(--bg-light);
  border: 1px solid var(--grey-100);
  font-weight: 700;
  font-size: .79rem;
  transition: border-color var(--ease), transform var(--ease);
}

.pd-hl-item:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}

.pd-hl-item i {
  color: var(--saffron);
  font-size: .88rem;
}

.pd-hl-green i {
  color: var(--green-india) !important;
}

.pd-description {
  margin-bottom: 22px;
}

.pd-description h3,
.pd-specs h3 {
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-description h3 i,
.pd-specs h3 i {
  color: var(--saffron);
}

.pd-description p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.pd-specs {
  margin-bottom: 22px;
}

.pd-spec-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pd-spec-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  color: var(--text-muted);
}

.pd-spec-list li i {
  color: var(--green-india);
  font-size: .82rem;
  flex-shrink: 0;
}

.pd-shipping-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  margin-bottom: 26px;
  border: 1px solid var(--grey-100);
}

.psi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .83rem;
}

.psi-item i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.psi-icon-saffron {
  color: var(--saffron-dark);
}

.psi-icon-green {
  color: var(--green-india);
}

.psi-item strong {
  display: block;
  font-weight: 800;
  font-size: .84rem;
  color: var(--navy);
}

.psi-item span {
  font-size: .78rem;
  color: var(--text-muted);
}

.pd-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pd-cta-btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

.pd-wa-btn {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 22px rgba(37, 211, 102, .32);
  flex: 1;
  justify-content: center;
  min-width: 120px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pd-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .48);
}

.pd-call-btn {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
  flex: 1;
  justify-content: center;
  min-width: 100px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pd-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pd-assurance {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-100);
}

.pa-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pa-item i {
  color: var(--green-india);
}

/* Why order grid */
.pd-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pd-why-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pd-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pd-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: transform var(--bounce);
}

.pd-why-card:hover .pd-why-icon {
  transform: scale(1.12) rotate(-8deg);
}

.pd-wi-saffron {
  background: var(--saffron-pale);
  color: var(--saffron-dark);
}

.pd-why-card:hover .pd-wi-saffron {
  background: var(--saffron);
  color: var(--white);
}

.pd-wi-green {
  background: var(--green-pale);
  color: var(--green-india);
}

.pd-why-card:hover .pd-wi-green {
  background: var(--green-india);
  color: var(--white);
}

.pd-why-card h4 {
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.pd-why-card p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — new pages
   ============================================================ */
@media(max-width:1100px) {

  .abt-intro-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-img-col {
    display: none;
  }

  .why-us-img-col {
    display: none;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pa-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-main-img {
    height: 320px;
  }

  .pd-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-banner {
    height: 340px;
  }

  .page-banner-sm {
    height: 280px;
  }
}

@media(max-width:860px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pa-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-checks {
    grid-template-columns: 1fr;
  }

  .pd-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-highlights {
    grid-template-columns: 1fr;
  }

  .pd-cta-row {
    flex-direction: column;
  }

  .pd-cta-btn,
  .pd-wa-btn,
  .pd-call-btn {
    flex: none;
    width: 100%;
  }

  .pb-title {
    font-size: 2.2rem;
  }

  .page-banner {
    height: 300px;
  }

  .page-banner-sm {
    height: 250px;
  }
}

@media(max-width:520px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .pd-thumb-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .pd-why-grid {
    grid-template-columns: 1fr;
  }

  .pb-title {
    font-size: 1.9rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    height: 260px;
  }
}

/* ============================================================
   PRODUCTS PAGE — LEFT SIDEBAR + MAIN GRID LAYOUT
   ============================================================ */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 48px;
}

/* ---- SIDEBAR ---- */
.prod-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sidebar-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-header h3 i {
  color: var(--saffron);
}

.sidebar-clear-btn {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--saffron-light);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
  padding: 0;
}

.sidebar-clear-btn:hover {
  color: var(--white);
}

.sidebar-section {
  padding: 22px 24px;
  border-bottom: 1px solid var(--grey-100);
}

.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-section-title {
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-section-title i {
  color: var(--saffron);
  font-size: .82rem;
}

/* Category list */
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.sidebar-cat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--saffron);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.sidebar-cat-item:hover,
.sidebar-cat-item.sc-active {
  background: var(--saffron-pale);
  border-color: rgba(255, 153, 51, .25);
}

.sidebar-cat-item:hover::before,
.sidebar-cat-item.sc-active::before {
  transform: scaleY(1);
}

.sc-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--text-muted);
  transition: background var(--ease), color var(--ease), transform var(--bounce);
}

.sidebar-cat-item:hover .sc-icon,
.sidebar-cat-item.sc-active .sc-icon {
  background: var(--saffron);
  color: var(--white);
  transform: scale(1.12) rotate(-6deg);
}

.sc-label {
  font-weight: 600;
  font-size: .84rem;
  color: var(--text-muted);
  transition: color var(--ease);
}

.sidebar-cat-item:hover .sc-label,
.sidebar-cat-item.sc-active .sc-label {
  color: var(--saffron-dark);
  font-weight: 700;
}

.sc-count {
  font-size: .7rem;
  font-weight: 700;
  background: var(--grey-100);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: var(--r-xl);
  transition: background var(--ease), color var(--ease);
}

.sidebar-cat-item:hover .sc-count,
.sidebar-cat-item.sc-active .sc-count {
  background: var(--saffron);
  color: var(--white);
}

/* Price range slider */
.price-range-wrap {
  padding-top: 4px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.price-labels span {
  color: var(--saffron-dark);
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) var(--pct, 60%), var(--grey-200) var(--pct, 60%));
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  box-shadow: 0 2px 8px rgba(255, 153, 51, .4);
  cursor: pointer;
  transition: transform var(--bounce);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  cursor: pointer;
}

/* Sort + result count bar */
.prod-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.prod-result-count {
  font-size: .84rem;
  color: var(--text-muted);
  font-weight: 500;
}

.prod-result-count strong {
  color: var(--navy);
}

.prod-sort-select {
  appearance: none;
  background: var(--bg-light);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 8px 36px 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e07a10' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--ease);
}

.prod-sort-select:focus {
  border-color: var(--saffron);
}

/* Availability filter checkboxes */
.avail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}

.avail-item:hover {
  background: var(--bg-light);
}

.avail-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--saffron);
  cursor: pointer;
  flex-shrink: 0;
}

.avail-label {
  color: var(--text-muted);
  transition: color var(--ease);
}

.avail-item:hover .avail-label {
  color: var(--navy);
}

/* Active filter tags */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.af-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  background: var(--saffron-pale);
  color: var(--saffron-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 153, 51, .28);
}

.af-tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--saffron-dark);
  font-size: .65rem;
  padding: 0;
  line-height: 1;
  transition: transform var(--ease);
}

.af-tag button:hover {
  transform: scale(1.3) rotate(90deg);
}

/* No results */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  display: none;
}

.no-results i {
  font-size: 3rem;
  color: var(--grey-200);
  margin-bottom: 18px;
  display: block;
}

.no-results h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
  font-size: .9rem;
}

/* ============================================================
   FLIPBOX — "What Drives Our Excellence"
   ============================================================ */
.flipbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flipbox {
  height: 300px;
  perspective: 1100px;
  cursor: pointer;
}

.flipbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.4, 0, .2, 1);
}

.flipbox:hover .flipbox-inner {
  transform: rotateY(180deg);
}

.flipbox-front,
.flipbox-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Front */
.flipbox-front {
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}

.flipbox-front-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
  z-index: 0;
}

.flipbox:hover .flipbox-front-bg {
  transform: scale(1.07);
}

.flipbox-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, .05) 0%, rgba(10, 22, 40, .82) 100%);
  z-index: 1;
}

.flipbox-front-content {
  position: relative;
  z-index: 2;
}

.flipbox-front-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.flipbox-front h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.flipbox-front p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
}

.flipbox-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.flipbox-hint i {
  font-size: .58rem;
}

/* Back */
.flipbox-back {
  transform: rotateY(180deg);
  justify-content: center;
}

.flipbox-back-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}

.flipbox-back-saffron {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  color: var(--white);
}

.flipbox-back-green {
  background: linear-gradient(135deg, var(--green-mid), var(--green-india));
  color: var(--white);
}

.flipbox-back-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  opacity: .9;
}

.flipbox-back h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.flipbox-back p {
  font-size: .84rem;
  line-height: 1.78;
  opacity: .9;
}

.flipbox-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 9px 18px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .07em;
  border: 1.5px solid rgba(255, 255, 255, .35);
  transition: background var(--ease);
}

.flipbox-back-cta:hover {
  background: rgba(255, 255, 255, .28);
}

/* ============================================================
   PRODUCT DETAIL — ADD TO CART + QUANTITY
   ============================================================ */
.pd-cart-section {
  background: var(--bg-light);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.pd-cart-title {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-cart-title i {
  color: var(--saffron);
}

/* Quantity selector */
.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pd-qty-label {
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
  flex-shrink: 0;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--ease);
}

.qty-selector:focus-within {
  border-color: var(--saffron);
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: background var(--ease), color var(--ease);
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--saffron);
  color: var(--white);
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-unit-note {
  font-size: .76rem;
  color: var(--text-light);
  font-style: italic;
}

/* Min order badge */
.pd-moq-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-xl);
  background: var(--green-pale);
  color: var(--green-india);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .05em;
  border: 1px solid rgba(19, 136, 8, .2);
  margin-bottom: 18px;
}

.pd-moq-badge i {
  font-size: .78rem;
}

/* Cart action buttons */
.pd-cart-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-add-cart-btn {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-saf);
  transition: transform var(--ease), box-shadow var(--ease);
  font-family: 'DM Sans', sans-serif;
}

.pd-add-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255, 153, 51, .55);
}

.pd-add-cart-btn.added {
  background: linear-gradient(135deg, var(--green-india), var(--green-light));
  box-shadow: var(--shadow-grn);
}

.pd-enquire-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  border-radius: var(--r-xl);
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: .84rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.pd-enquire-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.pd-wishlist-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--r-xl);
  background: transparent;
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--grey-400);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--ease);
}

.pd-wishlist-btn:hover,
.pd-wishlist-btn.wished {
  border-color: #e74c3c;
  color: #e74c3c;
  background: #fef0f0;
  transform: scale(1.1);
}

/* Stock status */
.pd-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 14px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-india);
  animation: pulseStock 2s ease-in-out infinite;
}

@keyframes pulseStock {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(19, 136, 8, .4);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(19, 136, 8, 0);
  }
}

.pd-stock span {
  color: var(--green-india);
}

/* Cart added toast */
.cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .88rem;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
  pointer-events: none;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast i {
  color: var(--saffron);
  font-size: 1.1rem;
}

.cart-toast-left {
  border-left: 3px solid var(--saffron);
  padding-left: 12px;
}

/* ============================================================
   EXTRA ANIMATIONS
   ============================================================ */

/* Shimmer on product images loading */
@keyframes shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

.prod-img-loading {
  background: linear-gradient(90deg, var(--grey-100) 25%, var(--grey-200) 50%, var(--grey-100) 75%);
  background-size: 1200px 100%;
  animation: shimmer 1.6s infinite;
}

/* Bounce-in for sidebar when page loads */
@keyframes sidebarEntry {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.prod-sidebar {
  animation: sidebarEntry .7s .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* Stagger product cards */
.prod-card {
  animation: cardEntry .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom stagger delays for cards 1-9 */
.prod-card:nth-child(1) {
  animation-delay: .05s;
}

.prod-card:nth-child(2) {
  animation-delay: .12s;
}

.prod-card:nth-child(3) {
  animation-delay: .19s;
}

.prod-card:nth-child(4) {
  animation-delay: .26s;
}

.prod-card:nth-child(5) {
  animation-delay: .33s;
}

.prod-card:nth-child(6) {
  animation-delay: .40s;
}

.prod-card:nth-child(7) {
  animation-delay: .47s;
}

.prod-card:nth-child(8) {
  animation-delay: .54s;
}

.prod-card:nth-child(9) {
  animation-delay: .61s;
}

/* Flipbox entrance */
@keyframes flipboxEntry {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(12deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.flipbox.aos-animate .flipbox-inner {
  animation: flipboxEntry .75s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* Qty bounce on change */
@keyframes qtyPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.qty-pop {
  animation: qtyPop .3s ease;
}

/* ============================================================
   RESPONSIVE — sidebar
   ============================================================ */
@media(max-width:1100px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .prod-sidebar {
    position: static;
    display: none;
    /* hidden by default on mobile — toggle button shows it */
  }

  .prod-sidebar.open {
    display: block;
  }

  .flipbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:860px) {
  .flipbox-grid {
    grid-template-columns: 1fr;
  }

  .flipbox {
    height: 280px;
  }

  /* On mobile, flip cards flip on tap instead of hover */
}

/* ============================================================
   TYPOGRAPHY & GLOBAL OVERRIDES (Poppins & Outfit)
   ============================================================ */
p {
  font-family: 'Poppins', sans-serif !important;
  text-align: justify !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-heading,
.pb-title,
.footer-col-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

@media(max-width:860px) {
  .top-header {
    display: none !important;
  }
}

.hero-subtitle {
  text-align: center !important;
}

.btn-primary-india:hover {
  color: #ffffff !important;
}

@media(max-width:900px) {
  .cta-inner h2,
  .cta-inner p {
    white-space: normal !important;
  }
}
/* ============================================================
   COMPANY DOCUMENTS (Trade License / COF) — homepage, above footer
   ============================================================ */
.uw-doc-section {
  background: var(--bg-light);
}

.uw-doc-header {
  text-align: center;
  margin-bottom: 40px;
}

.uw-doc-grid {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .uw-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.uw-doc-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.uw-doc-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}

.uw-pdf-viewer-container {
  background: var(--bg-light);
  padding: 20px;
  text-align: center;
  border-radius: var(--r-md);
  border: 1px solid var(--grey-200);
  min-height: 420px;
  position: relative;
}

.uw-pdf-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.05rem;
  color: var(--navy);
}

.uw-pdf-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.uw-pdf-nav-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: .88rem;
  font-family: inherit;
  transition: filter .2s, transform .2s;
}

.uw-pdf-nav-btn i {
  color: var(--white) !important;
}

.uw-pdf-nav-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.uw-pdf-page-info {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}

.uw-pdf-page-info span {
  font-weight: 700;
  color: var(--saffron-dark);
}

.uw-pdf-canvas-wrap {
  display: inline-block;
  box-shadow: 0 10px 25px rgba(10, 22, 40, .12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  max-width: 100%;
}

.uw-pdf-canvas-wrap canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.uw-pdf-note {
  text-align: center;
  color: var(--text-light);
  font-size: .82rem;
  font-style: italic;
  margin-top: 16px;
}
