/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-dark: #0A1A3C;
  --navy-light: #14275A;
  --gold: #D4AF37;
  --gold-light: #F0C75E;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --text-dark: #1C1C1C;
  --font-heading: 'Cormorant Garamond', serif;
  --font-logo: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;  
  background-image: none;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAVBAR ===== */
html, body {
  overflow-x: hidden;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  background: transparent;
  border: none;
  border-radius: 100px;
  box-shadow: none;
  z-index: 1000;
  transition: top 0.5s cubic-bezier(.4,0,.2,1), background 0.5s cubic-bezier(.4,0,.2,1),
              border-radius 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s ease;
  height: 82px;
  display: flex;
  align-items: center;
  animation: navDrop 0.9s cubic-bezier(.2,.8,.2,1) both;
  padding: 0;
  overflow: visible;
}

@keyframes navDrop {
  from { opacity: 0; transform: translate(-50%, -40px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 32px;
  position: relative;
  overflow: visible;
  height: 100%;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 1;
  visibility: visible;
  transition: 0.4s ease;
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-side a {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-side a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-side a:hover { color: var(--gold-light); transform: translateY(-1px); }
.nav-side a:hover::after { width: 100%; }

/* ===== LOGO ===== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 100%;
  transition: 0.4s ease;
  z-index: 3;
  line-height: 1;
  position: relative;
  overflow: visible;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  max-height: 68%;
  height: 68%;
}

.logo-suffix {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 300;
  text-align: center;
  transition: 0.4s ease;
  white-space: nowrap;
  line-height: 1;
  margin-top: 4px;
}

.logo img {
  width: auto;
  max-height: 72px;
  border-radius: 0;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
  border: none;
  box-shadow: none !important;
  background: none !important;
  object-fit: contain;
  filter: none !important;
  flex-shrink: 0;
}

.navbar.scrolled .logo img {
  max-height: 53.5px;
}

.logo-text {
  color: var(--gold);
  font-family: var(--font-logo);
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 700;
  transition: 0.4s ease;
  position: relative;
  white-space: nowrap;
  text-shadow: none;
  line-height: 1;
}

.logo-left {
  color: var(--gold);
  margin-right: -16px;
}

.logo-right {
  color: var(--gold);
  margin-left: -16px;
}

/* ===== SCROLLED STATE ===== */
.navbar.scrolled {
  top: 8px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: 60px;
  height: 68px;
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.25);
}

.navbar.scrolled .nav-side { opacity: 1; visibility: visible; }
.navbar.scrolled .nav-side a { color: var(--white); }

.navbar.scrolled .logo-text {
  font-size: clamp(18px, 6.5vw, 25px);
}

.mobile-nav { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

/* ===== NAV DROPDOWN (DESKTOP) ===== */
.nav-dropdown { position: relative; }

/* ===== NAV DROPDOWN - CATEGORIES ===== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-dark);
  min-width: 220px;
  padding: 12px 0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 50;
  max-height: 80vh;
  overflow-y: auto;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(14px);
}

.dropdown-category {
  padding: 4px 0;
}

.dropdown-category-title {
  display: block;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 4px;
}

.dropdown-menu a {
  display: block;
  padding: 6px 20px 6px 30px;
  font-size: 13px;
  white-space: nowrap;
  color: rgba(255,255,255,0.8);
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
}

/* ===== MOBILE ACCORDION - CATEGORIES ===== */
.mobile-category-title {
  display: block;
  padding: 8px 0 4px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 6px;
}

.accordion-content a {
  padding-left: 24px !important;
}

/* ==========================================================
   NAVBAR — RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 20px);
    top: clamp(10px, 2.5vw, 16px);
    height: clamp(76px, 18vw, 95px);
    overflow: visible;
    border-radius: 100px;
  }

  .navbar.scrolled {
    height: clamp(64px, 15vw, 78px);
  }

  .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: clamp(6px, 2vw, 10px) clamp(14px, 5vw, 22px);
    overflow: visible;
  }

  .nav-left,
  .nav-right,
  .nav-side {
    display: none !important;
  }

  .hamburger {
    position: absolute;
    left: clamp(10px, 2.5vw, 16px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 10;
  }

  .navbar.scrolled .hamburger {
    left: clamp(14px, 3.5vw, 22px);
  }

  .hamburger span {
    width: clamp(24px, 7vw, 30px);
    height: 3px;
    background: var(--gold);
  }

  .logo {
    max-width: 100%;
    margin: 0;
    margin-left: clamp(30px, 8vw, 50px);
    overflow: visible;
    margin-top: 4px;
  }

  .navbar.scrolled .logo {
    margin-left: clamp(20px, 6vw, 40px);
  }

  .logo-row {
    gap: 0px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    max-height: clamp(60px, 18vw, 90px);
    height: auto;
    width: auto;
    margin: 0;
    margin-top: -2px;
  }

  .navbar.scrolled .logo img {
    max-height: clamp(48px, 14vw, 72px);
  }

  .logo-text {
    font-size: clamp(18px, 5.5vw, 30px);
    letter-spacing: clamp(1px, 0.3vw, 2px);
  }

  .navbar.scrolled .logo-text {
    font-size: clamp(17px, 4.5vw, 28px);
  }

  .logo-left {
    margin-right: clamp(-25px, -3vw, -12px);
    margin-left: 0px;
  }

  .logo-right {
    margin-left: clamp(-25px, -3vw, -12px);
    margin-right: 0px;
  }

  .navbar.scrolled .logo-left {
    margin-right: clamp(-20px, -2.5vw, -8px);
    margin-left: 0px;
  }

  .navbar.scrolled .logo-right {
    margin-left: clamp(-20px, -2.5vw, -8px);
    margin-right: 0px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 16px);
    left: 10px;
    right: 10px;
    background: var(--navy-dark);
    flex-direction: column;
    width: auto;
    padding: 20px 22px;
    gap: 16px;
    display: none;
    z-index: 999;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.35);
    border: 1px solid rgba(212, 175, 55, 0.15);
    max-height: 80vh;
    overflow-y: auto;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 4px 0;
  }

  .mobile-nav a:hover {
    color: var(--gold-light);
  }

  /* ===== MOBILE ACCORDION ===== */
  .mobile-accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .accordion-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 4px 0;
  }

  .accordion-toggle .arrow {
    color: var(--gold);
    transition: 0.3s ease;
    font-size: 14px;
  }

  .accordion-toggle.open .arrow {
    transform: rotate(180deg);
  }

  .accordion-content {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 4px 16px;
  }

  .accordion-content.open {
    display: flex;
  }

  .accordion-content a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    padding: 4px 0;
  }

  .accordion-content a:hover {
    color: var(--gold-light);
  }

  .mobile-category-title {
    display: block;
    padding: 8px 0 4px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 4px;
  }
}/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  margin: 0;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(10, 26, 60, 0.28);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 480px;
    border-radius: 0 0 50px 50px;
  }
}

.slider {
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 1.4s cubic-bezier(.4,0,.2,1), visibility 1.1s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* ✅ Slide background — koi zoom nahi */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

/* ✅ Ken Burns animation BAND */
.slide.active .slide-bg {
  animation: none;
}

/* ===== OVERLAY HATAYA - SAB SLIDES PAR ===== */
.slide-overlay {
  display: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-content > * {
  opacity: 0;
  transform: translateY(28px);
  animation: contentUp 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}

.slide.active .slide-content .eyebrow  { animation-delay: 0.25s; }
.slide.active .slide-content h1        { animation-delay: 0.42s; }
.slide.active .slide-content .sub      { animation-delay: 0.6s; }
.slide.active .slide-content .btn-gold { animation-delay: 0.78s; }

@keyframes contentUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== EYEBROW - COMMON STYLES ===== */
.eyebrow {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
}

/* ===== SLIDE 1 - EYEBROW ===== */
.eyebrow-1 {
  color: #DC143C;
}
.eyebrow-1::before,
.eyebrow-1::after {
  background: #DC143C;
}

/* ===== SLIDE 2 - EYEBROW ===== */
.eyebrow-2 {
  color: var(--navy-dark);
}
.eyebrow-2::before,
.eyebrow-2::after {
  background: var(--navy-dark);
}

/* ===== SLIDE 3 - EYEBROW ===== */
.eyebrow-3 {
  color: #DC143C;
}
.eyebrow-3::before,
.eyebrow-3::after {
  background: #DC143C;
}

/* ===== SLIDE 4 - EYEBROW ===== */
.eyebrow-4 {
  color: var(--navy-dark);
}
.eyebrow-4::before,
.eyebrow-4::after {
  background: var(--navy-dark);
}

/* ===== ABOUT DESCRIPTION - BRAND HIGHLIGHT ===== */
.about-brand-highlight {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-logo);
  letter-spacing: 1px;
}

/* ===== SLIDE 5 - EYEBROW ===== */
.eyebrow-5 {
  color: #DC143C;
}
.eyebrow-5::before,
.eyebrow-5::after {
  background: #DC143C;
}

/* ===== HEADING - COMMON STYLES ===== */
.slide-content h1 {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 22px;
}

/* ===== SLIDE 1 - HEADING ===== */
.heading-1 {
  color: var(--navy-dark);
}
.heading-1 .highlight-1 {
  color: var(--navy-dark);
}

/* ===== SLIDE 2 - HEADING ===== */
.heading-2 {
  color: var(--gold);
}
.heading-2 .highlight-2 {
  color: var(--gold);
}

/* ===== SLIDE 3 - HEADING ===== */
.heading-3 {
  color: var(--gold);
}
.heading-3 .highlight-3 {
  color: var(--gold);
}

/* ===== SLIDE 4 - HEADING ===== */
.heading-4 {
  color: var(--gold);
}
.heading-4 .highlight-4 {
  color: var(--gold);
}

/* ===== SLIDE 5 - HEADING ===== */
.heading-5 {
  color: #FFFFFF;
}
.heading-5 .highlight-5 {
  color: #DC143C;
}

/* ===== SUB - COMMON STYLES ===== */
.slide-content .sub {
  font-size: 16px;
  font-weight: 500;
  max-width: 460px;
  margin: 0 auto 34px;
}

/* ===== SLIDE 1 - SUB ===== */
.sub-1 {
  color: #FFFFFF;
}

/* ===== SLIDE 2 - SUB ===== */
.sub-2 {
  color: #FFFFFF;
}

/* ===== SLIDE 3 - SUB ===== */
.sub-3 {
  font-weight: 800;
  color: #FFFFFF;
}

/* ===== SLIDE 4 - SUB ===== */
.sub .sub-4 {
  color: var(--gold);
}

/* ===== SLIDE 5 - SUB ===== */
.sub-5 {
  color: #FFFFFF;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn-gold:hover::before {
  transform: scaleX(1);
}

.btn-gold span, .btn-gold .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Slider progress bar */
.slider-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 5;
}

.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width linear;
}

/* ===== SLIDER NAV - DOTS + ARROWS ===== */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: var(--white);
  padding: 0 20px;
}

/* ===== DOTS - CENTER ===== */
.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.35s cubic-bezier(.4,0,.2,1);
}

.dot:hover {
  background: rgba(255,255,255,0.7);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* ===== ARROWS - BADE ===== */
.slider-arrows {
  display: flex;
  gap: 10px;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 20px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
  font-weight: 400;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  line-height: 0.5;
}

.slider-arrow:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Hide counter */
.slide-counter {
  display: none;
}

/* ===== RESPONSIVE - ARROWS ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .slider-arrow {
    width: 68px;
    height: 68px;
    font-size: 38px;
  }
  .slider-nav {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 480px;
    border-radius: 0 0 50px 50px;
  }
  .slider-arrow {
    width: 62px;
    height: 62px;
    font-size: 36px;
  }
  .slider-nav {
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .slider-arrow {
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
  .slider-nav {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .slider-arrow {
    width: 48px;
    height: 48px;
    font-size: 50px;
    border-width: 2px;
  }
  .slider-nav {
    gap: 25px;
  }
  .slide-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 380px) {
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 40px;
  }
  .slider-nav {
    gap: 20px;
  }
  .slide-content h1 {
    font-size: 28px;
  }
} 
/* 
   TICKER / BROADCAST BAR - COMPLETE
   */

/* ===== FIRST TICKER  */
.ticker-wrap {
  width: 95%;
  max-width: 1300px;
  margin: 6px auto 30px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 16px 50px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.ticker-wrap .ticker-item {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 3px;
  padding: 0 80px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.4;
}

.ticker-wrap .ticker-item .highlight {
  color: var(--gold-light);
  font-weight: 700;
  background: transparent;
  padding: 0;
}

/* ===== SECOND TICKER (Category se pehle) */
.ticker-wrap.ticker-gold {
    background: rgba(202, 182, 115, 0.821);
  border: 2px solid var(--navy-dark);
  border-radius: 50px;
  /* box-shadow: 0 8px 30px rgba(229, 224, 122, 0.83); */
}

.ticker-wrap.ticker-gold .ticker-item {
  color: var(--navy-dark);
  font-weight: 600;
  letter-spacing: 3px;
}

.ticker-wrap.ticker-gold .ticker-item .highlight {
  color: var(--navy-dark);
  font-weight: 600;
  letter-spacing: 3px;
  background: transparent;
  padding: 0;
}

/* ===== TICKER ANIMATION (Common) ===== */
.ticker {
  display: flex;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes tickerScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap:hover .ticker {
  animation-play-state: running;
}

/*
   RESPONSIVE - TABLET & MOBILE
   */
@media (max-width: 768px) {
  .ticker-wrap {
    width: 98%;
    margin: 6px auto 20px;
    padding: 12px 24px;
    border-radius: 30px;
  }
  
  .ticker-item {
    font-size: 15px;
    padding: 0 40px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .ticker-wrap {
    width: 100%;
    margin: 6px auto 15px;
    padding: 10px 16px;
    border-radius: 20px;
  }
  
  .ticker-item {
    font-size: 12px;
    padding: 0 25px;
    letter-spacing: 0.5px;
  }
}
/* ===== ABOUT SNIPPET - COMPLETE (Text Full Visible) ===== */

.about-snippet {
  padding: 90px 24px;
  background: #FFFFFF;
  text-align: center;
}

.about-snippet .tag-label.center {
  margin-bottom: 24px;
}

.tag-label {
  display: inline-block;
  color: #DC143C;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 45px;
  margin-top: 10px;
}

/* ===== GALAXY LABELS HEADING ===== */
.about-brand {
  font-family: var(--font-logo);
  font-size: clamp(18px, 4vw, 48px); /* ✅ Clamp: min 28px, scales with viewport, max 48px */
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}

.about-brand::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.18) 45%, transparent 75%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

/* ===== ABOUT DESCRIPTION (Justify — jaisa tha) ===== */
.about-description {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  text-align: justify;          /* ✅ Justify hi rahega */
  text-justify: inter-word;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 100%;
}

.about-punchline {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--navy-dark);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-card-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  text-align: justify;          /* ✅ Justify */
}

/* ===== DESKTOP CARD (pill windows) ===== */
.about-card {
  position: relative;
  width: 1100px;
  max-width: 100%;
  height: 520px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 26, 60, 0.15);
}

.about-card-media {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 0;
}

.media-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 248, 246, 0.95);
  z-index: 1;
}

.pill-window {
  position: absolute;
  left: 560px;
  width: 560px;
  height: 90px;
  border-radius: 999px;
  overflow: hidden;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(10, 26, 60, 0.15);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.34,1.56,.64,1);
}

.pill-window.p1 { top: 20px; }
.pill-window.p2 { top: 170px; }
.pill-window.p3 { top: 320px; }

.pill-window-inner {
  position: absolute;
  width: 1100px;
  height: 460px;
  background-image: url('images/slide2.jpeg');
  background-size: 1100px 460px;
  transform: rotate(45deg);
}

.p1 .pill-window-inner { left: -560px; top: -20px;  transform-origin: 840px 65px; }
.p2 .pill-window-inner { left: -560px; top: -170px; transform-origin: 840px 215px; }
.p3 .pill-window-inner { left: -560px; top: -320px; transform-origin: 840px 365px; }

.about-card.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}

.about-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-card.reveal.visible .pill-window {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.about-card.reveal.visible .p1 { transition-delay: 0.15s; }
.about-card.reveal.visible .p2 { transition-delay: 0.3s; }
.about-card.reveal.visible .p3 { transition-delay: 0.45s; }

/* ===== TEXT SIDE (Desktop) — Width barha di ===== */
.about-card-text {
  position: relative;
  z-index: 3;
  max-width: 560px;             /* ✅ 480px se barha kar 560px */
  padding: 40px 50px 40px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* ✅ Center — koi space nahi upar/neeche */
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}
/* ============================================================
   TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .about-snippet {
    padding: 60px 0px;
  }

  .about-brand {
    /* font-size handled by base clamp() now — no hard override needed */
    letter-spacing: 2px;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .about-brand::before {
    filter: blur(20px);
    width: 140%;
    height: 180%;
  }

  .about-card {
    height: 460px;
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
    box-shadow: 0 20px 50px rgba(10, 26, 60, 0.18);
    display: block;
    overflow: hidden;
    position: relative;
    margin-top: 17px;
  }

  .about-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .about-card.reveal.visible .about-card-media {
    opacity: 1;
    transform: translateX(0);
  }

  .media-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pill-window { display: none; }
  .media-overlay { display: none; }

  .about-card-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 80%;
    height: 100%;
    max-width: none;
    background: rgba(248, 248, 246, 0.92);
    clip-path: url(#waveClipText);
    filter: drop-shadow(6px 0 18px rgba(10, 26, 60, 0.2));
    padding: 40px 24px 40px 22px;
    text-align: justify;
    justify-content: flex-start;
    padding-top: 60px;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: visible;
  }

  .about-card.reveal.visible .about-card-text {
    opacity: 1;
    transform: translateX(0);
  }

  .about-card-text .about-brand {
    /* font-size handled by base clamp() now — no hard override needed */
    font-weight: 700;
    color: var(--gold);
    text-align: left;
    position: relative;
    display: inline-block;
    z-index: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .about-card.reveal.visible .about-card-text .about-brand {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
  }
  
  .about-card-text .about-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.15) 45%, transparent 75%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
  }

  .about-card-text .about-punchline {
    font-size: 20px;
    color: var(--navy-dark);
    text-align: left;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .about-card.reveal.visible .about-card-text .about-punchline {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
  }

  /* ✅ Paragraph — clamp se har screen par adjust */
  .about-card-text .about-description,
  .about-card-text p {
    font-size: clamp(13px, 1.8vw, 16.5px);   /* ✅ Responsive text */
    color: #555;
    text-align: justify;
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0;
    width: 80%;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .about-card.reveal.visible .about-card-text .about-description,
  .about-card.reveal.visible .about-card-text p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
}

/* ============================================================
   MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .about-snippet {
    padding: 40px 0px;
  }

  .about-brand {
    /* font-size handled by base clamp() now — no hard override needed */
    letter-spacing: 1.5px;
    white-space: wrap;
    line-height: 1;
    margin-top: 7px;
    margin-bottom: 12px;
  }
  
  .about-brand::before {
    filter: blur(15px);
    width: 150%;
    height: 160%;
  }

  .about-card {
    height: 520px;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0px;
    margin: 0;
  }

  .about-card-media {
    transform: translateX(40px);
  }

  .about-card-text {
    width: 72%;
    padding: 30px 18px 20px 16px;
    background: rgba(248, 248, 246, 0.9);
    clip-path: url(#waveClipText);
    filter: drop-shadow(6px 0 18px rgba(10, 26, 60, 0.2));
    transform: translateX(-40px);
    justify-content: flex-start;
    padding-top: 30px;
    overflow: visible;
    text-align: justify;
  }

  .about-card-text .about-brand {
    /* font-size handled by base clamp() now — no hard override needed */
    letter-spacing: 1.5px;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 8px;
    transform: translateX(-20px);
  }

  .about-card-text .about-brand::before {
    width: 150%;
    height: 160%;
    filter: blur(15px);
  }

  .about-card-text .about-punchline {
    font-size: 18px;
    transform: translateX(-20px);
  }

  /* ✅ Paragraph — clamp se har screen par adjust */
  .about-card-text .about-description,
  .about-card-text p {
    font-size: clamp(11.5px, 3.2vw, 13px);   /* ✅ Responsive text */
    line-height: 1.6;
    text-align: justify;
    margin-top: 10px;
    margin-right: 10px;
    transform: translateX(-20px);
  }
}
/* ============================================================
   PROCESS STEPS - COMPLETE (Straight Level Alignment)
   ============================================================ */

.section-title {
  margin-left: 16px;
}

.process-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 60px 30px;
  border-radius: 24px;
  overflow: hidden;
  background: #fafafa;
}

/* ===== ANIMATED BACKGROUND BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: 0.7;
}

.blob-1 {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -40px;
  background: rgba(212, 175, 55, 0.7);
  animation: blobMove1 14s ease-in-out infinite;
}

.blob-2 {
  width: 260px;
  height: 260px;
  top: -30px;
  right: -30px;
  background: rgba(220, 90, 90, 0.6);
  animation: blobMove2 18s ease-in-out infinite;
}

.blob-3 {
  width: 240px;
  height: 240px;
  bottom: -40px;
  left: 10%;
  background: rgba(8, 145, 178, 0.6);
  animation: blobMove3 16s ease-in-out infinite;
}

.blob-4 {
  width: 260px;
  height: 260px;
  bottom: -50px;
  right: 5%;
  background: rgba(10, 26, 60, 0.55);
  animation: blobMove4 20s ease-in-out infinite;
}

.blob-5 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 40%;
  background: rgba(231, 111, 81, 0.5);
  animation: blobMove5 22s ease-in-out infinite;
}

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.2); }
}

@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 60px) scale(0.85); }
}

@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.15); }
}

@keyframes blobMove4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -40px) scale(1.1); }
}

@keyframes blobMove5 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) translate(30px, 30px) scale(1.25); }
}

.process-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, #fafafa 85%);
  z-index: 1;
  pointer-events: none;
}

/* ===== PROCESS GRID - DESKTOP LAYOUT ===== */
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Row 1: 01, 02, 03 Straight Line */
.process-grid .process-step:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.process-grid .process-step:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.process-grid .process-step:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1;
}

/* Row 2: 04, 05 Centered */
.process-grid .process-step:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
  justify-self: center;
}

.process-grid .process-step:nth-child(5) {
  grid-column: 4 / 6;
  grid-row: 2;
  justify-self: center;
}

/* ===== CARD BASE STYLING ===== */
.process-step {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 26px 20px;
  min-height: 160px;
  width: 100%;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(10, 26, 60, 0.08);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, opacity 0.6s ease;
  transform: translateY(0) !important; /* Fixed: Zig-zag removed */
}

.process-step:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(10, 26, 60, 0.2);
}

/* Odd/Even Zig-zag complete disable */
.process-step:nth-child(odd),
.process-step:nth-child(even) {
  transform: translateY(0) !important;
}

.step-number {
  position: absolute;
  top: -6px;
  right: 8px;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  color: var(--navy-dark);
  opacity: 0.1;
  line-height: 1;
}

.process-step h4 {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.process-step p {
  position: relative;
  z-index: 2;
  text-align: justify;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== REVEAL ANIMATIONS ===== */
.process-grid.reveal-stagger > .process-step {
  opacity: 0;
  transform: translateY(60px) scale(0.7) rotate(-8deg) !important;
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-grid.reveal-stagger.visible > .process-step,
.process-grid.reveal-stagger.visible > .process-step:nth-child(odd),
.process-grid.reveal-stagger.visible > .process-step:nth-child(even) {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg) !important;
}

.process-grid.reveal-stagger.visible > .process-step:nth-child(1) { transition-delay: 0.05s; }
.process-grid.reveal-stagger.visible > .process-step:nth-child(2) { transition-delay: 0.15s; }
.process-grid.reveal-stagger.visible > .process-step:nth-child(3) { transition-delay: 0.25s; }
.process-grid.reveal-stagger.visible > .process-step:nth-child(4) { transition-delay: 0.35s; }
.process-grid.reveal-stagger.visible > .process-step:nth-child(5) { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE - TABLET (992px)
   ============================================================ */
@media (max-width: 992px) {
  .process-wrapper {
    padding: 50px 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: stretch;
  }

  /* Row 1: 01 & 02 */
  .process-grid .process-step:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 2;
  }

  .process-grid .process-step:nth-child(2) {
    grid-row: 1;
    grid-column: 2 / 3;
  }

  /* Row 2: 03 & 04 */
  .process-grid .process-step:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / 2;
    justify-self: stretch;
    margin: 0;
  }

  .process-grid .process-step:nth-child(4) {
    grid-row: 2;
    grid-column: 2 / 3;
    justify-self: stretch;
    margin: 0;
  }

  /* Row 3: 05 Center */
  .process-grid .process-step:nth-child(5) {
    grid-row: 3;
    grid-column: 1 / 3;
    justify-self: center;
    max-width: 320px;
    margin: 0;
  }

  .process-step {
    min-height: 150px;
    padding: 24px 18px;
    max-width: 100%;
  }

  .step-number {
    font-size: 50px;
  }

  .process-step h4 {
    font-size: 18px;
  }

  .process-step p {
    font-size: 12.5px;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (600px)
   ============================================================ */
@media (max-width: 600px) {
  .process-wrapper {
    padding: 30px 16px;
    margin: 40px auto 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .process-grid .process-step:nth-child(1),
  .process-grid .process-step:nth-child(2),
  .process-grid .process-step:nth-child(3),
  .process-grid .process-step:nth-child(4),
  .process-grid .process-step:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .process-step {
    min-height: 130px;
    padding: 20px 16px;
  }

  .step-number {
    font-size: 42px;
    top: -4px;
    right: 6px;
    opacity: 0.08;
  }
  
  .process-step h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .process-step p {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* ============================================================
   AIM & MISSION
   ============================================================ */
.aim-mission-grid {
  max-width: 900px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ===== AIM CARD ===== */
.am-aim {
  background: linear-gradient(145deg, 
    #14275A 0%,
    #1C3670 30%,
    #2A4A85 55%,
    #6B5B3A 80%,
    #B8960F 100%
  );
  border-radius: 20px;
  padding: 40px 28px 32px;
  box-shadow: 0 15px 40px rgba(10, 26, 60, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: justify;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.am-aim::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.am-aim::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.am-aim:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(10, 26, 60, 0.35);
}

/* ===== MISSION CARD ===== */
.am-mission {
  background: linear-gradient(145deg, 
    #0A1A3C 0%,
    #1C2E5C 30%,
    #3A3220 55%,
    #7A5F1E 80%,
    #B8960F 100%
  );
  border-radius: 20px;
  padding: 40px 28px 32px;
  box-shadow: 0 15px 40px rgba(10, 26, 60, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: justify;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.am-mission::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.am-mission::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.am-mission:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(10, 26, 60, 0.35);
}

/* ===== ICON ===== */
.am-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 14px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.am-aim .am-icon { 
  color: #FFFFFF;
}

.am-mission .am-icon { 
  color: #FFFFFF;
}

.am-card:hover .am-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.am-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== HEADING ===== */
.am-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
  text-align: center;
}

/* ===== LIST ===== */
.am-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: justify;
  text-justify: inter-word;
}

.am-list li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
  text-align: justify;
  text-justify: inter-word;
  padding-left: 28px;
  position: relative;
  list-style: none;
  word-spacing: 0.5px;
}

/* Star Left */
.am-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 2px;
  color: #FFFFFF;
  font-size: 16px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 768px) {
  .aim-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .am-card {
    padding: 32px 20px 28px;
  }

  .am-card h3 {
    font-size: 22px;
  }

  .am-list li {
    font-size: 13.5px;
    text-align: justify;
    text-justify: inter-word;
    padding-left: 24px;
    word-spacing: 0.4px;
  }

  .am-list li::before {
    font-size: 14px;
  }

  .am-icon {
    width: 54px;
    height: 54px;
    padding: 12px;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .aim-mission-grid {
    gap: 20px;
    margin: 30px auto 0;
  }

  .am-card {
    padding: 28px 16px 24px;
    border-radius: 16px;
  }

  .am-card h3 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .am-list li {
    font-size: 13px;
    text-align: justify;
    text-justify: inter-word;
    padding-left: 22px;
    line-height: 1.7;
    word-spacing: 0.3px;
  }

  .am-list li::before {
    font-size: 13px;
  }

  .am-icon {
    width: 48px;
    height: 48px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .am-aim,
  .am-mission {
    padding: 28px 16px 24px;
  }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */
@media (max-width: 380px) {
  .am-card h3 {
    font-size: 18px;
  }

  .am-list li {
    font-size: 12px;
    text-align: justify;
    text-justify: inter-word;
    padding-left: 18px;
    word-spacing: 0.2px;
  }

  .am-list li::before {
    font-size: 12px;
  }

  .am-icon {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .am-aim,
  .am-mission {
    padding: 22px 12px 18px;
  }
}
/* ===== PRODUCTS ===== */
.products {
  padding: 60px 24px 40px;
  text-align: center;
}

.tag-label.center {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 45px;
  color: var(--navy-dark);
  margin-bottom: 50px;
  font-weight: 800;
  
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--navy-dark);
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--gold-light);
}

.product-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  background: var(--off-white);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-item-learn-more {
  padding: 6px 16px;
  font-size: 11px;
}

@media (max-width: 992px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item {
    height: 150px;
  }
  .tab-btn {
    padding: 9px 18px;
    font-size: 12.5px;
  }
}

/* ============================================================
   PRODUCT CATEGORIES SHOWCASE — FINAL VERSION
   ============================================================ */

.category-showcase {
  background: linear-gradient(160deg, rgba(58, 42, 16, 0.85) 0%, rgba(31, 22, 8, 0.9) 55%, rgba(20, 13, 5, 0.95) 100%);
  padding: 30px 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  max-width: 1300px;
  margin: 0 auto 60px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.category-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(212, 175, 55, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.category-intro,
.category-columns,
.category-col {
  position: relative;
  z-index: 1;
}

.category-intro {
  flex: 0 0 200px;
  color: var(--white);
}

.category-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.category-eyebrow-big {
  display: block;
  font-family: var(--font-heading);
  font-size: 67px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0;
}

.category-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.category-intro p {
  font-size: 15.3px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
}

.category-columns {
  flex: 1 1 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  height: 100%;
}

/* ===== BOX BASE ===== */
.category-col {
  border-radius: 26px;
  width: 200px;
  height: 440px;
  padding: 37px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  clip-path: polygon(28px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 28px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0,0,0,0.25);
}

.category-col::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  clip-path: polygon(24px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 24px);
  pointer-events: none;
  z-index: 3;
}

.category-col-hole {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(10, 26, 60, 0.95);
  border: 2px solid rgba(212, 175, 55, 0.75);
  box-shadow: inset 0 2px 3px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
  z-index: 4;
}

.category-col-hole::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 34px;
  height: 12px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-left: none;
  border-radius: 0 10px 10px 0;
  transform: translateY(-50%);
}

.category-col:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.category-col-woven {
  background-image: url('images/sl1.jpg');
  justify-content: flex-start;
}

.category-col-print {
  background-image: url('images/sli2.jpg');
  justify-content: flex-start;
}

.category-col-school {
  background-image: url('images/sli5.jpg');
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .category-col-school {
    position: static;
    transform: translateY(0);
    margin-top: -25px;
    align-self: flex-start;
  }
  .category-col-school:hover {
    transform: translateY(-10px);
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .category-columns {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    height: 480px;
  }

  .category-col-woven,
  .category-col-print {
    position: static;
    transform: translateY(0);
  }

  .category-col-woven {
    margin-top: -25px;
    align-self: flex-start;
  }
  .category-col-woven:hover {
    transform: translateY(-10px);
  }

  .category-col-print {
    align-self: flex-end;
    margin-bottom: -25px;
  }
  .category-col-print:hover {
    transform: translateY(10px);
  }
}

/* ===== BLUR ONLY BEHIND TEXT AREA ===== */
.category-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(16px) brightness(0.5);
  transform: scale(1.15);
  z-index: 0;
}

/* ===== WOVEN - BLUR TOP ===== */
.category-col-woven::before {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

/* ===== PRINT - BLUR TOP ===== */
.category-col-print::before {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

/* ===== UNIFORM & TIE - BLUR TOP ===== */
.category-col-school::before {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

/* ===== TEXT POSITION - SAB TOP PAR ===== */
.category-col-woven,
.category-col-print,
.category-col-school {
  justify-content: flex-start;
}

.category-col h3,
.category-col ul,
.category-col li,
.category-col .learn-more-btn {
  position: relative;
  z-index: 2;
}

.category-col h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.category-col ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.category-col li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  line-height: 1.9;
  padding-left: 18px;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.category-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== CATEGORY BUTTONS ===== */
.category-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  line-height: 1.9;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-align: left;
  width: 100%;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.category-btn:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.category-btn::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.category-col ul {
  list-style: none;
  margin-bottom: 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.category-col li {
  margin-bottom: 4px;
  padding-left: 18px;
  position: relative;
}

/* ===== ENTRANCE ANIMATIONS ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 769px) {
  .reveal-top {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-top.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-bottom.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-top li,
.reveal-bottom li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-top.visible li,
.reveal-bottom.visible li {
  opacity: 1;
  transform: translateX(0);
}
.reveal-top.visible li:nth-child(1), .reveal-bottom.visible li:nth-child(1) { transition-delay: 0.1s; }
.reveal-top.visible li:nth-child(2), .reveal-bottom.visible li:nth-child(2) { transition-delay: 0.2s; }
.reveal-top.visible li:nth-child(3), .reveal-bottom.visible li:nth-child(3) { transition-delay: 0.3s; }
.reveal-top.visible li:nth-child(4), .reveal-bottom.visible li:nth-child(4) { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 992px) and (min-width: 769px) {
  .category-col {
    width: 230px;
    height: 420px;
    padding: 38px 20px;
  }

  .category-col h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .category-col li,
  .category-btn {
    font-size: 16px;
    line-height: 2.1;
  }

  .category-col ul {
    margin-bottom: 0;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .category-showcase {
    border-radius: 24px;
    padding: 50px 22px;
    flex-wrap: wrap;
    height: auto;
  }

  .category-intro {
    text-align: center;
    width: 100%;
  }
  .category-intro p {
    margin: 0 auto;
  }

  .category-columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    min-height: 0;
  }

  .category-col {
    height: auto;
    min-height: 350px;
    width: 100%;
    max-width: 340px;
    justify-content: center;
    transform: none;
    margin: 0;
    padding: 42px 22px 30px;
  }

  /* ===== CIRCLE FIX ===== */
  .category-col-hole {
    top: 14px;
    left: 14px;
    width: 14px;
    height: 14px;
  }

  .category-col-hole::before {
    display: none;
  }

  /* ===== HEADINGS ===== */
  .category-col h3 {
    margin-top: 6px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .category-col ul {
    margin-top: 12px;
    margin-bottom: 0;
  }

  .category-btn {
    font-size: 17px;
    line-height: 2.3;
    font-weight: 500;
  }

  .category-btn::before {
    top: 10px;
    width: 6px;
    height: 6px;
  }

  .category-col-woven,
  .category-col-print,
  .category-col-school {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
  }

  .reveal-top,
  .reveal-bottom {
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .category-col-woven.reveal-top {
    opacity: 0;
    transform: translateX(-70px);
  }
  .category-col-woven.reveal-top.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .category-col-print.reveal-bottom {
    opacity: 0;
    transform: translateX(70px);
  }
  .category-col-print.reveal-bottom.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .category-col-school.reveal-top {
    opacity: 0;
    transform: translateX(-70px);
  }
  .category-col-school.reveal-top.visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .category-col {
    max-width: 300px;
    min-height: 320px;
    padding: 34px 18px 26px;
  }

  .category-col h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1.5px;
  }

  .category-col li,
  .category-btn {
    font-size: 15px;
    line-height: 2.2;
  }
}

/* ============================================================
   RESPONSIVE - PRODUCT MODAL
   ============================================================ */
@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-modal-content {
    padding: 25px 18px 20px;
    max-width: 95%;
  }

  .product-modal-content h3 {
    font-size: 22px;
  }

  .product-modal-close {
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .product-modal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-modal-content {
    padding: 20px 12px 16px;
  }

  .product-modal-content h3 {
    font-size: 18px;
  }
}

/* ===== ZOOM OVERLAY - */
.zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 60, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: default;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay .zoom-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
}

.zoom-overlay .zoom-container img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1);
}

.zoom-overlay .zoom-container img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

/* Zoom controls */
.zoom-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  background: rgba(10, 26, 60, 0.7);
  padding: 10px 20px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.zoom-controls button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-controls button:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.zoom-controls .zoom-level {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 500;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: var(--navy-dark);
  color: var(--gold-light);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-close:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: rotate(90deg);
}

/* ===== TEXT POSITION  */
.category-col-woven,
.category-col-print,
.category-col-school {
  justify-content: flex-start !important;
}
.category-col h3,
.category-col ul,
.category-col li,
.category-col .learn-more-btn {
  position: relative;
  z-index: 2;
}

.category-col h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  /* white-space: nowrap; */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.category-col ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.category-col li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  line-height: 1.9;
  padding-left: 18px;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.category-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== ENTRANCE ANIMATIONS ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 769px) {
  .reveal-top {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-top.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-bottom.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-top li,
.reveal-bottom li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-top.visible li,
.reveal-bottom.visible li {
  opacity: 1;
  transform: translateX(0);
}
.reveal-top.visible li:nth-child(1), .reveal-bottom.visible li:nth-child(1) { transition-delay: 0.1s; }
.reveal-top.visible li:nth-child(2), .reveal-bottom.visible li:nth-child(2) { transition-delay: 0.2s; }
.reveal-top.visible li:nth-child(3), .reveal-bottom.visible li:nth-child(3) { transition-delay: 0.3s; }
.reveal-top.visible li:nth-child(4), .reveal-bottom.visible li:nth-child(4) { transition-delay: 0.4s; }
/* ===== CATEGORY BUTTONS ===== */
.category-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  line-height: 1.9;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-align: left;
  width: 100%;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.category-btn:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.category-btn::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.category-col ul {
  list-style: none;
  margin-bottom: 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.category-col li {
  margin-bottom: 4px;
  padding-left: 18px;
  position: relative;
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 60, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-modal.active {
  display: flex;
}

.product-modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  padding: 35px 30px 30px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--navy-dark);
  color: var(--gold-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.product-modal-close:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.product-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy-dark);
  margin-bottom: 20px;
  text-align: center;
}

/* ===== PRODUCT MODAL GRID ===== */
.product-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-modal-grid .modal-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-modal-grid .modal-img-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-modal-grid .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-modal-grid .modal-img-wrap img:hover {
  transform: scale(1.05);
}

/* ===== ZOOM OVERLAY (Image click par) ===== */
.zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 60, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-modal-content {
    padding: 25px 18px 20px;
    max-width: 95%;
  }

  .product-modal-content h3 {
    font-size: 22px;
  }

  .product-modal-close {
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .product-modal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-modal-content {
    padding: 20px 12px 16px;
  }

  .product-modal-content h3 {
    font-size: 18px;
  }

  .zoom-overlay {
    padding: 20px;
  }
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .category-showcase {
    border-radius: 24px;
    padding: 50px 22px;
    flex-wrap: wrap;
    height: auto;
  }

  .category-intro {
    text-align: center;
    width: 100%;
  }
  .category-intro p {
    margin: 0 auto;
  }

  .category-columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    min-height: 0;
  }

  .category-col {
    height: auto;
    min-height: 320px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    transform: none !important;
    margin: 0 !important;
    padding: 35px 20px 25px !important;
  }

  /* ===== CIRCLE FIX ===== */
  .category-col-hole {
    top: 14px !important;
    left: 14px !important;
    width: 14px !important;
    height: 14px !important;
  }

  .category-col-hole::before {
    display: none !important;
  }

  .category-col h3 {
    margin-top: 4px !important;
    font-size: 22px !important;
  }

  .category-col ul {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  .category-col li {
    font-size: 13px !important;
    line-height: 1.8 !important;
  }

  .category-col-woven,
  .category-col-print,
  .category-col-school {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: center !important;
  }

  .reveal-top,
  .reveal-bottom {
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .category-col-woven.reveal-top {
    opacity: 0;
    transform: translateX(-70px) !important;
  }
  .category-col-woven.reveal-top.visible {
    opacity: 1;
    transform: translateX(0) !important;
  }

  .category-col-print.reveal-bottom {
    opacity: 0;
    transform: translateX(70px) !important;
  }
  .category-col-print.reveal-bottom.visible {
    opacity: 1;
    transform: translateX(0) !important;
  }

  .category-col-school.reveal-top {
    opacity: 0;
    transform: translateX(-70px) !important;
  }
  .category-col-school.reveal-top.visible {
    opacity: 1;
    transform: translateX(0) !important;
  }
}
/* ===== FACILITY ===== */
.facility {
  padding: 50px 24px;
}

.facility-grid {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.machine-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.machine-wrap:hover {
  transform: translateY(-4px);
}

.machine-card {
  position: relative;
  height: 360px;              /* ✅ Height barha di (300 → 360) */
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 24px rgba(10, 26, 60, 0.08);
  display: flex;
  flex-direction: column;
}

/* ✅ Title bar — light gold background, dark navy text */
.machine-title {
  background: var(--gold-light);       /* ✅ Light gold */
  color: var(--navy-dark);             /* ✅ Dark navy blue text */
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 12px 14px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ✅ Image — card ke andar, title ke neeche */
.machine-card img {
  flex: 1;                    /* ✅ Bachi hui height le */
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ✅ Cover — div bhar de */
  transition: 0.4s ease;
}

.machine-card:hover img {
  transform: scale(1.05);
}

/* ✅ Play button — center mein */
.play-overlay {
  position: absolute;
  top: 44px;                  /* Title bar ke neeche se */
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-overlay svg {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(10, 26, 60, 0.75);
  border-radius: 50%;
  padding: 12px;
  box-sizing: content-box;
  transition: 0.3s ease;
}

.machine-wrap:hover .play-overlay svg {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

/* ============================================================
   TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .machine-card {
    height: 320px;            /* ✅ Tablet par thoda chota */
  }
}

/* ============================================================
   MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .machine-card {
    height: 300px;            /* ✅ Mobile par thoda chota */
  }
  .machine-title {
    font-size: 16px;
    padding: 10px 12px;
    min-height: 40px;
  }
  .play-overlay {
    top: 40px;                /* Title bar ke hisaab se adjust */
  }
}
/* ===== CEO MESSAGE ===== */
.ceo-message {
  padding: 40px 24px 70px;
  background: #FFFFFF;
}

.ceo-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== HEADING - CENTER ===== */
.ceo-tag {
  display: block;
  background: none;
  border-bottom: 3px solid var(--gold);
  padding: 0 0 8px 0;
  border-radius: 0;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 95px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTENT - FLEX ===== */
.ceo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* ===== LEFT COLUMN - Image + Signature ===== */
.ceo-left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ceo-image {
  display: flex;
  margin: 0;
}

.ceo-image img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
}

/* ===== SIGNATURE ===== */
.ceo-signature {
  margin-top: 22px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  line-height: 1.8;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ceo-name {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--navy-dark);
  font-weight: 900;
  text-align: center;
}

.ceo-title {
  font-size: 12.5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  font-weight: 700;
  text-align: center;
}

/* .ceo-title {
  display: block;        
} */

.ceo-company {
  display: block;       
  margin-top: 2px;
  font-size: 15px;
  color: var(--gold);     
}

/* ===== RIGHT COLUMN - Text ===== */
.ceo-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-quote {
  font-family: var(--font-heading);
  font-size: 29px;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.4;
   margin-top: 5px;
  margin-bottom: 16px;
  margin-left: 25px;
  margin-right: 25px;
}

/* ===== WELCOME WRAPPER - SAME LINE ===== */
.welcome-wrapper {
   color: #555;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 16px;
  margin-left: 25px;
  margin-right: 25px;
  text-align: justify;
  text-justify: inter-word;
}

.welcome-text {
  font-size: 16px;
  color:var(--navy-dark);
  font-weight: 500;
  /* font-weight: 300; */
  display: inline;
   line-height: 1.85;
}

.brand-text {
  font-size: 17px;
  color: var(--gold);
  font-weight: 500;
  display: inline;
}

.brand-suff {
  font-size: 14px;
  color: var(--navy-dark);
  font-weight: 500;
  display: inline;
  /* margin-left: px;
} */
  }

.inline-para {
  color: #555;
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
 margin-top: 5px;
  margin-bottom: 16px;
  /* margin-left: 2px; */
  margin-right: 25px;
  text-align: justify;
  text-justify: inter-word;
}

/* ===== DOSRA PARAGRAPH ===== */
.ceo-para {
  color: #555;
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
 margin-top: 5px;
  margin-bottom: 16px;
  margin-left: 25px;
  margin-right: 25px;
  text-align: justify;
  text-justify: inter-word;
}
/* ============================================================
   RESPONSIVE - TABLET (992px)
   ============================================================ */
@media (max-width: 992px) {
  .ceo-inner {
    max-width: 700px;
  }

  .ceo-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ceo-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .ceo-image img {
    width: 260px;
    height: 260px;
  }

  .ceo-right {
    text-align: justify;
    padding: 0 20px;
    width: 100%;
  }

  .ceo-tag {
    font-size: clamp(24px, 5vw, 35px);
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .ceo-quote {
    font-size: clamp(24px, 4.5vw, 34px);
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }

  .ceo-content p {
    font-size: 15px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 1.8;
    padding: 0 5px;
  }

  .brand-suff {
    font-size: 18px;
    display: inline;
  }

  .ceo-signature {
    margin-top: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .ceo-signature .ceo-name {
    font-size: 27px;
  }

  .ceo-signature .ceo-title {
    font-size: 16px;
    text-transform: uppercase;
  }

  /* ===== WELCOME WRAPPER - TABLET ===== */
  .welcome-wrapper {
    font-size: 16px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
  }

  .welcome-text {
    font-size: 16px;
    font-weight: 500;
    display: inline;
  }

  .brand-text {
    font-size: 17px;
    font-weight: 500;
    display: inline;
  }

  .brand-suff {
    font-size: 14px;
    font-weight: 500;
    display: inline;
  }

  .inline-para {
    font-size: 14.5px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
  }

  .ceo-para {
    font-size: 15px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .ceo-message {
    padding: 30px 16px 50px;
  }

  .ceo-image img {
    width: 200px;
    height: 200px;
  }

  .ceo-tag {
    font-size: 20px;
    padding: 8px 16px;
    border-bottom: 3px solid var(--gold);
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .ceo-quote {
    font-size: 22px;
    text-align: center;
    margin-left: 8px;
    margin-right: 8px;
  }

  .ceo-content p {
    font-size: 14px;
    text-align: justify;
    margin-left: 8px;
    margin-right: 8px;
    line-height: 1.8;
    padding: 0 5px;
  }

  .ceo-signature {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .ceo-signature .ceo-name {
    font-size: 20px;
    font-weight: 900;
  }

  .ceo-signature .ceo-title {
    font-size: 13px;
    text-transform: uppercase;
  }

  /* ===== WELCOME WRAPPER - MOBILE ===== */
  .welcome-wrapper {
    font-size: 14px;
    text-align: justify;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
  }

  .welcome-text {
    font-size: 14px;
    font-weight: 500;
    display: inline;
  }

  .brand-text {
    font-size: 15px;
    font-weight: 500;
    display: inline;
  }

  .brand-suff {
    font-size: 12px;
    font-weight: 500;
    display: inline;
  }

  .inline-para {
    font-size: 14px;
    text-align: justify;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
    display: inline;
  }

  .ceo-para {
    font-size: 14px;
    text-align: justify;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.85;
  }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (380px)
   ============================================================ */
@media (max-width: 380px) {
  .ceo-image img {
    width: 160px;
    height: 160px;
  }

  .ceo-content p {
    font-size: 13px;
    padding: 0 5px;
    text-align: justify;
  }

  .ceo-quote {
    font-size: 18px;
  }

  /* ===== WELCOME WRAPPER - SMALL MOBILE ===== */
  .welcome-wrapper {
    font-size: 13px;
    text-align: justify;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.8;
  }

  .welcome-text {
    font-size: 13px;
    font-weight: 500;
    display: inline;
  }

  .brand-text {
    font-size: 14px;
    font-weight: 500;
    display: inline;
  }

  .brand-suff {
    font-size: 11px;
    font-weight: 500;
    display: inline;
  }

  .inline-para {
    font-size: 13px;
    text-align: justify;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.8;
    display: inline;
  }

  .ceo-para {
    font-size: 13px;
    text-align: justify;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.8;
  }
}
/* ===== CONTACT ===== */
.contact {
  padding: 0;
}

/* ✅ Hero — image screen bhare, blue nahi */
.contact-hero {
  position: relative;
  width: 100%;
  height: clamp(340px, 40vw, 560px); /* ✅ Barhai — cover ab kam crop karta hai */
  background-image: url('images/contact-hero.jpeg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,60,0.3) 0%, rgba(10,26,60,0.75) 100%);
  z-index: 1;
}

.contact-hero-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 32px);
  padding: 0 40px 30px;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-brand {
  font-family: var(--font-logo);
  font-size: 30px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.contact-intro-text p {
  color: #555;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;
  text-align: justify;
  max-width: 550px;
}

.contact-intro-icon {
  width: 135px;
  height: 135px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 100px;
  margin-top: -30px;
}

.contact-intro-icon svg {
  width: 100%;
  height: 100%;
}

.contact-details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}
.map-box {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-box iframe {
  position: relative;
  z-index: 1;
}

.map-address-card {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  max-width: 150px;
  background: #fff;
  border-radius: 6px;
  padding: 6px 8px;
  box-shadow: 0 6px 16px rgba(10, 26, 60, 0.25);
}

.map-address-card h4 {
  margin: 0 0 3px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
}

.map-address-card p {
  margin: 0 0 5px;
  font-size: 9px;
  line-height: 1.35;
  color: #555;
}

.map-address-card a {
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.map-address-card a:hover {
  text-decoration: underline;
}
/* ✅ Sirf mobile par dikhao — jahan Google apna card hide kar deta hai */
@media (max-width: 480px) {
  .map-address-card {
    display: block;
    max-width: 165px;
    padding: 7px 9px;
  }
}

.info-box {
  background: linear-gradient(145deg, 
    #0A1A3C 0%,
    #14275A 25%,
    #2A3A5C 45%,
    #6B5518 75%,
    #B8960F 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10, 26, 60, 0.25);
}

.info-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.info-box .info-item {
  position: relative;
  z-index: 1;
}

.info-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.info-item p {
  color: var(--white);
  font-size: 15px;
  margin-top: 4px;
}

.info-item.clickable {
  display: block;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 6px;
  padding: 6px 8px;
  margin: -6px -8px;
}

.info-item.clickable:hover {
  background: rgba(212, 175, 55, 0.1);
}

.info-item.clickable:hover .info-label {
  color: var(--gold-light);
}
/* Fine-tune crop position per screen width — height stays the same */
@media (min-width: 1400px) {
  .contact-hero {
    background-position: center 15%;
  }
}

@media (min-width: 993px) and (max-width: 1399px) {
  .contact-hero {
    background-position: center 22%;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .contact-hero {
    background-position: center 30%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    background-position: center 40%;
  }
}
/* ============================================================
   TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-intro {
    flex-direction: row !important;
    text-align: left !important;
  }
}

/* ============================================================
   MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .contact-hero {
    height: 280px;                       /* ✅ Mobile par bhi thora barhai, crop kam */
    background-position: center 40%;
  }

  .contact-hero-text {
    font-size: 20px;
    padding: 0 20px 20px;
  }

  .contact-intro {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 40px 20px !important;
  }
  .contact-brand {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  .contact-intro-text p {
    font-size: 13px !important;
  }
  .contact-intro-icon {
    width: 70px !important;
    height: 70px !important;
    margin-top: -5px;
    margin-left: -3px;
    order: -1 !important;
  }
}
/* ===== SOCIAL ICONS ===== */
.social-row {
  margin-top: -39px;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 24px 60px;
}

.social-icon {
  width: 41px;
  height: 41px;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s ease;
  font-size: 19px;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon.facebook {
  background: #1877F2;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.email {
  background: var(--white);
  /* border: 2px solid rgba(212, 175, 55, 0.3); */
}

.social-icon.email svg {
  width: 27px;
  height: 27px;
  
}

.social-icon.youtube {
  
  background: #FF0000;
}
/* ===== FOOTER ===== */
.footer {
  background: transparent;
  text-align: center;
  padding: 30px 0 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-banner-img {
  width: 100%;
  max-width: 650px;
  max-height: 300px;
  display: block;
  border-radius: 16px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 70px;
  object-fit: cover;
  box-shadow: none;
  filter: none;
  border: none;
}

.footer-copy-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 10px;
}

/* ============================================================
   RESPONSIVE - TABLET 
   ============================================================ */
@media (max-width: 992px) and (min-width: 769px) {
  .footer-banner-img {
    max-width: 80%;
    max-height: 280px;
    border-radius: 14px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE 
   ============================================================ */
@media (max-width: 768px) {
  .footer-banner-img {
    max-width: 90%;
    max-height: 260px;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .footer-banner-img {
    max-width: 90%;
    max-height: 230px;
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

@media (max-width: 380px) {
  .footer-banner-img {
    max-width: 92%;
    max-height: 200px;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE*/
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 34px;
  }
}
/* ===== EMAIL CONTACT FORM STYLING ===== */
.email-form-section {
  padding: 40px 24px 60px;
  background: #FFFFFF;
}

.email-form-wrapper {
  max-width: 620px; 
  margin: 0 auto;
  background: linear-gradient(160deg, 
    rgba(212, 175, 55, 0.30) 0%, 
    rgba(196, 154, 47, 0.25) 20%,
    rgba(139, 105, 20, 0.20) 45%,
    rgba(212, 175, 55, 0.25) 70%,
    rgba(196, 154, 47, 0.15) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;  
  padding: 32px 38px 28px; 
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.email-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;  
  background: linear-gradient(90deg, #D4AF37 0%, #F0D060 20%, #C49A2F 40%, #8B6914 50%, #A67B1E 65%, #D4AF37 80%, #F0D060 100%);
  z-index: 1;
}

.email-form-wrapper .blob-1 {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 250px; 
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(139, 105, 20, 0.10) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: blobFloat 8s ease-in-out infinite;
}

.email-form-wrapper .blob-2 {
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 200px;  
  height: 200px;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.20) 0%, rgba(196, 154, 47, 0.08) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.email-form-wrapper .blob-3 {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 140px;  
  height: 140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -25px) scale(1.15); }
}

.email-subtitle {
  text-align: center;
  color: #554433;
  font-size: 14px; 
  line-height: 1.6;
  max-width: 420px;
  margin: -5px auto 24px;  
  font-weight: 400;
}

.email-form {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;  
}

.form-group {
  margin-bottom: 16px; 
  min-width: 0;
}

.form-group label {
  display: block;
  font-size: 14px;  
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.form-group .required {
  color: #8B6914;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;  
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(212, 175, 55, 0.20);
  border-radius: 10px; 
  transition: all 0.3s ease;
  outline: none;
}

/* Custom File Upload Styling with #F0C75E background */
.form-group input[type="file"] {
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #554433;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(212, 175, 55, 0.30);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input[type="file"]::file-selector-button {
  padding: 8px 16px;
  margin-right: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #2b2218;
  background: #F0C75E;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
  background: #e6bd4d;
  transform: translateY(-1px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input[type="file"]:hover {
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px; 
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 13px 28px; 
  font-size: 15px; 
  background: linear-gradient(135deg, #D4AF37 0%, #C49A2F 25%, #8B6914 50%, #A67B1E 70%, #D4AF37 100%);
  background-size: 300% 300%;
  animation: gradientMove 5s ease-in-out infinite;
  border: none;
  border-radius: 10px;  
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(139, 105, 20, 0.4);
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.phone-input-group {
  display: flex;
  gap: 8px;
  position: relative;
  min-width: 0;
}

.custom-select {
  position: relative;
  flex: 0 0 110px;
}

.custom-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(212, 175, 55, 0.20);
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.custom-select-btn img, .custom-select-option img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.select-arrow {
  margin-left: auto;
  font-size: 11px;
  color: #8B6914;
  transition: transform 0.3s ease;
}

.custom-select.open .select-arrow {
  transform: rotate(180deg);
}

.custom-select-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 240px;
  max-height: 260px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  z-index: 50;
}

.custom-select.open .custom-select-list {
  display: block;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-dark);
}

.custom-select-option span:first-of-type {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-option .option-code {
  color: #8B6914;
  font-weight: 600;
  flex-shrink: 0;
}

.custom-select-option:hover {
  background: rgba(212, 175, 55, 0.10);
}

.phone-input-group input[type="tel"] {
  flex: 1;
  min-width: 0;
}

#formStatus {
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .email-form-wrapper { padding: 28px 22px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
/* ============================================================
   GOLDEN BOX - QUALITY STANDARD (Left se aaye) — SLOW ANIMATION
   ============================================================ */
.golden-box-section {
  padding: 30px 20px;
  background: #FFFFFF;
  overflow: hidden;
}

.golden-box {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 25px 50px;
  position: relative;
  overflow: hidden;
  transition: all 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);   /* ✅ Slow */
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  opacity: 0;
  transform: translateX(-80px);   /* ✅ Left se aaye */
}

.golden-box.visible {
  opacity: 1;
  transform: translateX(0);
}

.golden-box:hover {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

/* Top golden line */
.golden-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.3) 20%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.3) 80%,
    transparent 100%
  );
  opacity: 0.3;
  z-index: 1;
}

/* Blobs */
.golden-box::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.golden-box .golden-blob-2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.golden-box-inner {
  position: relative;
  z-index: 1;
}

/* ===== HEADING - UPAR SE AAYE (SLOW) ===== */
.golden-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);   /* ✅ Slow */
  transition-delay: 0.35s;                                /* ✅ Thoda wait */
}

.golden-box.visible .golden-heading {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PARAGRAPH - NEECHE SE AAYE (SLOW) ===== */
.golden-text {
  font-size: 14px;
  color: var(--navy-dark);
  line-height: 1.7;
  font-weight: 400;
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);   /* ✅ Slow */
  transition-delay: 0.7s;                                 /* ✅ Heading ke baad */
}

.golden-box.visible .golden-text {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .golden-box {
    padding: 20px 35px;
    border-radius: 14px;
    transform: translateX(-60px);
  }
  .golden-box.visible {
    transform: translateX(0);
  }
  .golden-heading {
    font-size: 24px;
  }
  .golden-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .golden-box-section {
    padding: 20px 16px;
  }
  .golden-box {
    padding: 18px 24px;
    border-radius: 12px;
    transform: translateX(-40px);
  }
  .golden-box.visible {
    transform: translateX(0);
  }
  .golden-heading {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .golden-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .golden-box::after {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .golden-box-section {
    padding: 16px 12px;
  }
  .golden-box {
    padding: 14px 16px;
    border-radius: 10px;
    border-width: 1.5px;
    transform: translateX(-30px);
  }
  .golden-box.visible {
    transform: translateX(0);
  }
  .golden-heading {
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .golden-text {
    font-size: 12px;
    line-height: 1.6;
  }
  .golden-box::before {
    height: 2px;
  }
}
/* ============================================================
   QUALITY STANDARDS - 7 IMAGES (Barri Barri, Center ke saath jur jaye)
   ============================================================ */
/* .quality-section {
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
  padding-bottom: 90px;
}

.qs-images {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  gap: 0;
  overflow: hidden;
}

.qs-img {
  height: 100%;
  overflow: hidden;
  will-change: transform, opacity, width;
  opacity: 0;
  flex: 0 0 auto;
  transition: transform 0.9s cubic-bezier(.22,.68,.2,1), 
              opacity 0.6s ease, 
              width 0.7s cubic-bezier(.22,.68,.2,1);
  position: relative;
  width: 0;
}

.qs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.qs-img--center {
  transform: translateY(-200%);
  z-index: 5;
}

.qs-img--right-1,
.qs-img--right-2,
.qs-img--right-3 {
  transform: translateX(200%);
  z-index: 4;
}

.qs-img--left-1,
.qs-img--left-2,
.qs-img--left-3 {
  transform: translateX(-200%);
  z-index: 4;
}


.qs-img.in-view {
  width: calc(100% / 7);
  opacity: 1;
  transform: translate(0, 0);
}

.qs-golden {
  position: relative;
  z-index: 3;
  margin-top: -6px;
  background: linear-gradient(135deg, var(--gold) 0%, #9C7B22 100%);
  padding: 54px 24px 60px;
  display: flex;
  justify-content: center;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.95s cubic-bezier(.22,.68,.2,1), opacity 0.5s ease;
}

.qs-golden.in-view {
  transform: translateY(0);
  opacity: 1;
}

.qs-heading-wrap {
  position: relative;
  width: min(90vw, 380px);
  height: 92px;
  perspective: 900px;
}

.qs-heading-wrap .corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--navy-dark);
}

.qs-heading-wrap .corner-tl {
  top: -16px;
  left: -16px;
  border-top: 3px solid var(--navy-dark);
  border-left: 3px solid var(--navy-dark);
}

.qs-heading-wrap .corner-br {
  bottom: -16px;
  right: -16px;
  border-bottom: 3px solid var(--navy-dark);
  border-right: 3px solid var(--navy-dark);
}

.qs-heading {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy-dark);
  letter-spacing: 1.5px;
  z-index: 1;
}

.qs-flap {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #9C7B22 100%);
  z-index: 2;
  transition: transform 1s cubic-bezier(.65,0,.35,1);
}

.qs-flap-top {
  top: 0;
  transform-origin: 0% 100%;
  transform: rotate(0deg);
}

.qs-flap-bottom {
  bottom: 0;
  transform-origin: 0% 0%;
  transform: rotate(0deg);
}

.qs-heading-wrap.open .qs-flap-top {
  transform: rotate(-22deg) translateY(-6px);
}

.qs-heading-wrap.open .qs-flap-bottom {
  transform: rotate(22deg) translateY(6px);
}


.qs-quote {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  height: 440px;
  overflow: hidden;
}

.qs-quote-bg {
  position: absolute;
  inset: -25px;
  background-image: url('images/slide3.avif');
  background-size: cover;
  background-position: center;
  filter: blur(9px);
  transform: scale(1.12);
}

.qs-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,24,28,.90), rgba(20,24,28,.62));
}

.qs-quote-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 76px 36px;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qs-quote-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.qs-quote-rule {
  width: 58px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 26px;
}

.qs-quote-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #EDEDED;
  margin: 0;
  text-align: justify;
}

@media (max-width: 992px) {
  .qs-images { height: 260px; }
  .qs-golden { padding: 40px 20px 46px; }
  .qs-heading-wrap { height: 76px; width: min(90vw, 320px); }
  .qs-heading { font-size: 28px; }
  .qs-quote { height: 400px; margin-top: 50px; }
  .qs-quote-content { padding: 50px 28px; }
}

@media (max-width: 768px) {
  .qs-images { height: 200px; }
  .qs-heading { font-size: 24px; }
  .qs-heading-wrap { height: 64px; width: min(90vw, 280px); }
  .qs-quote { height: 420px; margin-top: 40px; }
  .qs-quote-content { padding: 40px 24px; }
  .qs-quote-content p { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .qs-images { height: 140px; }
  .qs-heading { font-size: 20px; }
  .qs-heading-wrap { height: 54px; width: min(92vw, 240px); }
  .qs-quote { height: 480px; margin-top: 30px; }
  .qs-quote-content { padding: 32px 20px; }
  .qs-quote-content p { font-size: 0.85rem; }
} */
/* ============================================================
   MOVING TICKERS — COMMON
   ============================================================ */
.moving-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 12px 0;
  margin: 15px 0;
  font-family: var(--font-body);
  font-size: 17px;
  letter-spacing: 0.5px;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollTicker 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding-right: 40px;
}

@keyframes scrollTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   MAIN BADGE — COMMON
   ============================================================ */
.main-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 38px;
  padding: 0 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin-right: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-sizing: border-box;
  white-space: nowrap;
}

/* ============================================================
   TICKER 1 — WOVEN (Golden base)
   ============================================================ */
.woven-ticker {
  background-color: var(--gold-light);
  color: var(--navy-dark);
  border-top: 1px solid var(--navy-dark);
  border-bottom: 1px solid var(--navy-dark);
  font-weight: bold;
}

.woven-ticker .ticker-track {
  animation: scrollTicker 12s linear infinite;
}

.woven-ticker .main-badge {
  background-color: var(--navy-dark);
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
}

.woven-ticker .custom-star {
  color: var(--navy-dark);
  margin: 0 6px;
  font-weight: bold;
}

/* ============================================================
   TICKER 2 — PRINT (Navy base)
   ============================================================ */
.print-ticker {
  background-color: var(--navy-dark);
  color: var(--white);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.print-ticker .ticker-track {
  animation: scrollTicker 14s linear infinite;
}

.print-ticker .main-badge {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-size: 18px;
  border: 1px solid var(--gold-light);
}

.print-ticker .custom-star {
  color: var(--gold-light);
  margin: 0 6px;
  font-weight: bold;
}
/* ============================================================
   MACHINE PAGE
   ============================================================ */
.machine-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 24px 80px;
}

/* ===== MACHINE NAVBAR — SINGLE STATE ===== */
.machine-navbar {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: 60px;
  height: 68px;
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0;
}

.machine-navbar .nav-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 32px;
  height: 100%;
}

.machine-navbar .logo img {
  max-height: 53.5px;
}

.machine-navbar .logo-text {
  font-size: clamp(18px, 6.5vw, 25px);
}

/* ============================================================
   MACHINE NAME — Light gold bg + rounded + navy text
   ============================================================ */
.machine-name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy-dark);              /* ✅ Dark navy text */
  background: var(--gold-light);        /* ✅ Light gold background */
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 1.2;
  padding: 16px 32px;                   /* ✅ Andar padding */
  border-radius: 60px;                  /* ✅ Rounded pill */
  width: fit-content;
  margin: 0 auto 32px;                  /* ✅ Center mein */
}

/* ===== VIDEO ===== */
.machine-video-wrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 45px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 40px rgba(10, 26, 60, 0.22);
}

.machine-video-wrap video {
  width: 100%;
  height: auto;
  max-height: 440px;
  display: block;
  background: #000;
}

/* ============================================================
   HEADINGS — Light gold rounded bg + navy text
   ============================================================ */
.machine-headings {
  max-width: 780px;
  margin: 0 auto 55px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.machine-headings h2 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--navy-dark);
  background: var(--gold-light);
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.machine-headings h2:hover {
  transform: translateY(-3px);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   DETAIL IMAGES GALLERY — Simple scroll reveal (bari bari)
   ============================================================ */
.machine-gallery {
  margin-bottom: 60px;
  text-align: center;                    /* ✅ Heading center ke liye */
}

/* ✅ "Machine Detail Photos" heading — 1px light gold bottom border */
.machine-gallery h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold-light);   /* ✅ Light gold bottom border */
  padding-bottom: 5px;                          /* ✅ Border aur text ke beech gap */
  display: inline-block;                         /* ✅ Border sirf text ke neeche */
  width: auto;
}

.machine-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;                       /* ✅ Grid normal */
}

/* ✅ Images — simple scroll reveal (bari bari aayen) */
.machine-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  /* border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 20px rgba(10, 26, 60, 0.08); */
  cursor: pointer;

  /* ✅ Scroll reveal — shuru mein neeche, opacity 0 */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* ✅ Jab scroll par nazar aayen */
.machine-gallery-grid img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Bari bari aane ke liye stagger delays */
.machine-gallery-grid img:nth-child(1) { transition-delay: 0.05s; }
.machine-gallery-grid img:nth-child(2) { transition-delay: 0.18s; }
.machine-gallery-grid img:nth-child(3) { transition-delay: 0.31s; }
.machine-gallery-grid img:nth-child(4) { transition-delay: 0.44s; }
.machine-gallery-grid img:nth-child(5) { transition-delay: 0.57s; }
.machine-gallery-grid img:nth-child(6) { transition-delay: 0.70s; }

/* ✅ Hover — halki si transition (ajeeb nahi) */
.machine-gallery-grid img:hover {
  transform: translateY(-6px) scale(1.02);
  /* box-shadow: 0 18px 40px rgba(10, 26, 60, 0.18); */
  border-color: var(--gold);
}

/* ===== BACK LINK ===== */
.machine-back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.machine-back-link:hover {
  color: var(--navy-dark);
  transform: translateX(-4px);
}

/* ============================================================
   TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .machine-page {
    padding: 120px 20px 70px;
  }
  .machine-video-wrap {
    max-width: 100%;
  }
  .machine-video-wrap video {
    max-height: 380px;
  }
  .machine-gallery-grid img {
    height: 190px;
  }
}

/* ============================================================
   MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .machine-page {
    padding: 110px 16px 60px;
  }

  .machine-name {
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 40px;
    margin-bottom: 22px;
  }

  .machine-video-wrap {
    margin-bottom: 32px;
    border-radius: 10px;
  }

  .machine-video-wrap video {
    max-height: 240px;
  }

  .machine-headings {
    gap: 12px;
    margin-bottom: 40px;
  }

  .machine-headings h2 {
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 40px;
  }

  .machine-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .machine-gallery-grid img {
    height: 130px;
    border-radius: 8px;
  }

  .machine-navbar {
    height: 64px;
    width: calc(100% - 20px);
    top: 6px;
  }
  .machine-navbar .logo img {
    max-height: 48px;
  }
}
/* ============================================================
   MACHINE PAGE — NAVBAR (Landing page ke scrolled jaisa)
   ============================================================ */

/* ✅ Machine page ka navbar — fixed, navy + gold, rounded */
.machine-navbar {
  position: fixed !important;
  top: 8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 40px) !important;
  max-width: 1300px !important;
  background: var(--navy-dark) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 60px !important;
  height: 68px !important;
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.25) !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  animation: none !important;      /* ✅ navDrop animation nahi */
  transition: none !important;     /* ✅ koi transition nahi */
}

/* ✅ Container — logo center mein, links dono taraf */
.machine-navbar .nav-container {
  max-width: 1300px !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 6px 32px !important;
  height: 100% !important;
  position: relative !important;
}

/* ✅ Logo — apni jagah, scrolled size */
.machine-navbar .logo {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

.machine-navbar .logo-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 68% !important;
  max-height: 68% !important;
}

.machine-navbar .logo img {
  width: auto !important;
  max-height: 53.5px !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.machine-navbar .logo-text {
  font-family: var(--font-logo) !important;
  font-size: clamp(18px, 6.5vw, 25px) !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.machine-navbar .logo-left {
  margin-right: -16px !important;
  margin-left: 0 !important;
}

.machine-navbar .logo-right {
  margin-left: -16px !important;
  margin-right: 0 !important;
}

/* ✅ Nav links — white color, visible */
.machine-navbar .nav-side {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.machine-navbar .nav-side a {
  color: var(--white) !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.4px !important;
  white-space: nowrap !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: color 0.3s ease !important;
}

.machine-navbar .nav-side a::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -6px !important;
  width: 0 !important;
  height: 1px !important;
  background: var(--gold) !important;
  transition: 0.3s !important;
}

.machine-navbar .nav-side a:hover {
  color: var(--gold-light) !important;
}

.machine-navbar .nav-side a:hover::after {
  width: 100% !important;
}

/* ✅ Hamburger — mobile ke liye */
.machine-navbar .hamburger {
  display: none !important;
}

/* ============================================================
   MACHINE PAGE — NAVBAR RESPONSIVE (mobile)
   ============================================================ */
@media (max-width: 768px) {
  .machine-navbar {
    width: calc(100% - 20px) !important;
    top: 6px !important;
    height: clamp(64px, 15vw, 78px) !important;
    border-radius: 100px !important;
  }

  .machine-navbar .nav-container {
    justify-content: center !important;
    padding: clamp(6px, 2vw, 10px) clamp(14px, 5vw, 22px) !important;
  }

  .machine-navbar .nav-side {
    display: none !important;
  }

  .machine-navbar .hamburger {
    display: flex !important;
    position: absolute !important;
    left: clamp(10px, 2.5vw, 16px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
  }

  .machine-navbar .hamburger span {
    width: clamp(24px, 7vw, 30px) !important;
    height: 3px !important;
    background: var(--gold) !important;
    transition: 0.3s ease !important;
  }

  .machine-navbar .logo {
    margin-left: clamp(30px, 8vw, 50px) !important;
    margin-top: 4px !important;
  }

  .machine-navbar .logo img {
    max-height: clamp(48px, 14vw, 72px) !important;
  }

  .machine-navbar .logo-text {
    font-size: clamp(17px, 4.5vw, 28px) !important;
    letter-spacing: clamp(1px, 0.3vw, 2px) !important;
  }

  .machine-navbar .logo-left {
    margin-right: clamp(-20px, -2.5vw, -8px) !important;
  }

  .machine-navbar .logo-right {
    margin-left: clamp(-20px, -2.5vw, -8px) !important;
  }
}