/* ==========================================================================
   KSI TEXTILE STATION INDIA PVT LTD - Pure Static Single Page Stylesheet
   ========================================================================== */

:root {
  --primary-navy: #0B1727;
  --secondary-navy: #1E293B;
  --teal-accent: #0D9488;
  --teal-light: #14B8A6;
  --copper-amber: #D97706;

  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-section-alt: #EDF2F7;

  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  --border-color: #E2E8F0;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-accent), #0F766E);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0F766E, #115E59);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--copper-amber), #B45309);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #B45309, #92400E);
  transform: translateY(-2px);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar-info {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: marqueeSingleRow 18s linear infinite;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marqueeSingleRow {
  0% {
    transform: translateX(0);
  }

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

.top-bar-info i {
  color: var(--teal-light);
  margin-right: 0.3rem;
}

.top-bar-badges {
  display: flex;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.2);
  color: #2DD4BF;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  /* background: #0F172A; */
  padding: 4px 10px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
}

.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.brand-logo-footer {
  background: white;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
}

.brand-logo-footer img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-link {
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: var(--transition-fast);
}

.nav-link i {
  font-size: 0.9rem;
  color: #64748B;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #0D9488;
  background-color: #F0FDFA;
}

.nav-link:hover i {
  color: #0D9488;
}

.nav-link.active {
  color: #0F766E;
  background-color: #CCFBF1;
  font-weight: 700;
}

.nav-link.active i {
  color: #0D9488;
}

.nav-contact-btn {
  padding: 0.45rem 1.1rem !important;
  font-size: 0.85rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.25) !important;
}

.mobile-hamburger-btn {
  display: none;
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-hamburger-btn:hover {
  background: var(--teal-accent);
}

/* Hero Section (Premium Dual-Pillar Layout with 3D Cards) */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 50%, #F0FDFA 100%);
  color: var(--text-main);
  padding: 4.5rem 0 5.5rem;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-ambient-glow .glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.orb-teal {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.orb-amber {
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0369A1;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #0284C7;
  border-radius: 50%;
}

.hero-title {
  font-size: 3.1rem;
  color: #0F172A;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-description {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-description strong {
  color: #0F172A;
}

.hero-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.highlight-card {
  background: #FFFFFF;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: #0D9488;
}

.card-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.teal-icon {
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
}

.amber-icon {
  background: rgba(217, 119, 6, 0.12);
  color: #D97706;
}

.card-text-content h4 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  color: #0F172A;
}

.card-text-content p {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 3D Stacked Showcase Card */
.hero-3d-card-stack {
  position: relative;
  padding: 1rem 0;
}

.floating-badge {
  position: absolute;
  z-index: 10;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
}

.badge-top-right {
  top: -15px;
  right: -15px;
}

.badge-top-right i {
  color: #D97706;
  font-size: 1.1rem;
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
}

.badge-bottom-left i {
  color: #0D9488;
  font-size: 1.1rem;
}

.main-showcase-card {
  background: #0F172A;
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.brand-tag {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
}

.brand-tag i {
  color: #2DD4BF;
}

.live-dot {
  font-size: 0.75rem;
  color: #2DD4BF;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.live-dot i {
  font-size: 0.5rem;
}

.showcase-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.feature-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.item-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.blue-circle {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
}

.copper-circle {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

.item-info {
  flex: 1;
}

.item-info strong {
  display: block;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.item-info span {
  display: block;
  font-size: 0.78rem;
  color: #94A3B8;
}

.price-pill {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(13, 148, 136, 0.2);
  color: #2DD4BF;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.amber-pill {
  background: rgba(217, 119, 6, 0.2);
  color: #FBBF24;
  border-color: rgba(251, 191, 36, 0.3);
}

.showcase-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-box {
  text-align: center;
}

.count-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
}

.count-lbl {
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 500;
}

.counter-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
}

/* Dual Pillar Section (Redesigned Modern Cards) */
.dual-pillar-section {
  padding: 5rem 0 4rem;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.pillar-section-header {
  margin-bottom: 3.5rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pillar-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.pillar-card-banner {
  padding: 2.2rem 2rem 1.8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.teal-banner {
  background: linear-gradient(135deg, #0F172A, #0F766E);
  color: #FFFFFF;
}

.amber-banner {
  background: linear-gradient(135deg, #0F172A, #B45309);
  color: #FFFFFF;
}

.pillar-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  opacity: 0.25;
  line-height: 1;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-category-tag {
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.pillar-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pillar-body h3 {
  font-size: 1.45rem;
  color: #0F172A;
  margin-bottom: 0.8rem;
}

.pillar-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.pillar-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.bullet-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pillar-retail .bullet-item i {
  color: #0D9488;
}

.pillar-manufacturing .bullet-item i {
  color: #D97706;
}

.pillar-action {
  margin-top: auto;
}

.pillar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-teal {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.btn-teal:hover {
  background: #0D9488;
  color: #FFFFFF;
  border-color: #0D9488;
}

.btn-amber {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.btn-amber:hover {
  background: #D97706;
  color: #FFFFFF;
  border-color: #D97706;
}

/* Common Section Styles */
.sub-heading {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 3rem;
}

/* Manufacturing & Services Section (Upgraded) */
.manufacturing-section {
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2.2rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  border-color: #0D9488;
}

.service-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.card-top-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.teal-glow {
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
}

.blue-glow {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
}

.amber-glow {
  background: rgba(217, 119, 6, 0.12);
  color: #D97706;
}

.purple-glow {
  background: rgba(124, 58, 237, 0.12);
  color: #7C3AED;
}

.service-card h4 {
  font-size: 1.2rem;
  color: #0F172A;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.service-bullets {
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.service-bullets li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.service-bullets i {
  color: #0D9488;
}

/* 4-Step Production Pipeline Strip */
.workflow-strip {
  background: #0F172A;
  color: #FFFFFF;
  padding: 2.8rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-title {
  text-align: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.workflow-title i {
  color: #2DD4BF;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
}

.wf-step {
  text-align: center;
  position: relative;
}

.wf-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0D9488, #D97706);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.wf-step h5 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.wf-step p {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* Retail Products Grid */
.retail-section {
  background-color: var(--bg-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--copper-amber);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-badge.new {
  background: var(--teal-accent);
}

.product-img-wrapper {
  height: 220px;
  background-color: #F1F5F9;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.mens-img-1 {
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  color: #0284C7;
}

.womens-img-1 {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
  color: #DB2777;
}

.mens-img-2 {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #D97706;
}

.ethnic-img-1 {
  background: linear-gradient(135deg, #FFEDD5, #FED7AA);
  color: #EA580C;
}

.product-info {
  padding: 1.2rem;
}

.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.product-title {
  font-size: 1.05rem;
  margin: 0.3rem 0 0.4rem;
  color: var(--primary-navy);
}

.product-desc-static {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* About Us Section (Redesigned) */
.about-section {
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-color);
  padding: 5.5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-img-frame {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-logo-img {
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); */
}

.about-left-showcase-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.showcase-mini-card {
  background: #FFFFFF;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.showcase-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: #0D9488;
}

.mini-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.teal-bg {
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
}

.amber-bg {
  background: rgba(217, 119, 6, 0.12);
  color: #D97706;
}

.mini-card-info strong {
  display: block;
  font-size: 0.9rem;
  color: #0F172A;
}

.mini-card-info span {
  font-size: 0.78rem;
  color: #64748B;
}

.about-floating-badge {
  position: absolute;
  z-index: 10;
  background: #FFFFFF;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.badge-top {
  top: -20px;
  left: -20px;
}

.badge-top i {
  color: #0D9488;
  font-size: 1.5rem;
}

.badge-bottom {
  bottom: -20px;
  right: -20px;
}

.badge-bottom i {
  color: #D97706;
  font-size: 1.5rem;
}

.about-floating-badge strong {
  display: block;
  font-size: 0.88rem;
  color: #0F172A;
}

.about-floating-badge span {
  font-size: 0.76rem;
  color: #64748B;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0D9488;
  margin-bottom: 1rem;
}

.about-body-text {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.company-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.highlight-card-item {
  background: #FFFFFF;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.highlight-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.hl-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hl-teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0D9488;
}

.hl-amber {
  background: rgba(217, 119, 6, 0.12);
  color: #D97706;
}

.hl-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
}

.hl-purple {
  background: rgba(124, 58, 237, 0.12);
  color: #7C3AED;
}

.hl-content h5 {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 0.15rem;
}

.hl-content p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  height: 100%;
}

.contact-info-wrapper>.contact-card,
.contact-info-wrapper>.contact-card-row {
  flex: 1;
}

.contact-card {
  background: var(--bg-white);
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition-fast);
  height: 100%;
  box-sizing: border-box;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #0D9488;
}

.contact-card.primary-card {
  border-left: 5px solid #0D9488;
  background: linear-gradient(135deg, #FFFFFF, #F0FDFA);
}

.contact-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  height: 100%;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-details h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.card-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.address-text {
  font-size: 0.88rem !important;
  color: var(--text-main) !important;
}

/* Upgraded Premium Form Card */
.map-wrapper {
  height: 100%;
}

.premium-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-card-header {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #FFFFFF;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card-header h3 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-body {
  padding: 1.1rem 1.25rem;
  background: #FFFFFF;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-body .btn {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form-body form {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.contact-form-body .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.contact-form-body .form-group {
  margin-bottom: 0.75rem;
}

.contact-form-body label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.3rem;
}

.contact-form-body label i {
  color: #0D9488;
}

.contact-form-body input,
.contact-form-body select,
.contact-form-body textarea {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.88rem;
  color: #0F172A;
  background-color: #F8FAFC;
  transition: var(--transition-fast);
}

.contact-form-body input:focus,
.contact-form-body select:focus,
.contact-form-body textarea:focus {
  outline: none;
  border-color: #0D9488;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.success-alert {
  background-color: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.map-header {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.map-header i {
  color: var(--teal-accent);
}

.map-frame {
  flex: 1;
  min-height: 320px;
}

.map-footer {
  padding: 0.8rem 1.2rem;
  background: #F8FAFC;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
}

/* Footer */
.footer {
  background: #0B1727;
  color: #94A3B8;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: #64748B;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #94A3B8;
  font-size: 0.88rem;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #94A3B8;
}

.footer-col p i {
  color: var(--teal-light);
  margin-right: 0.4rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Trust Banner */
.trust-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: var(--radius-lg);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.trust-item i {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.2);
  color: #2DD4BF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.trust-item span {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* ==========================================================================
   Full Fluid Screen Responsive Media Queries
   ========================================================================== */

/* Large Desktops & Widescreen (1200px+) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

/* Medium Tablets & Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-pill-badge {
    margin: 0 auto 1.2rem;
  }

  .hero-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-highlights-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

/* Mobile Devices & Small Tablets (768px and below) */
@media (max-width: 768px) {
  .top-bar {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-navy);
    padding: 0.4rem 0;
  }

  .top-bar-content {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    padding: 0 !important;
  }

  .top-bar-info {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    font-size: 0.76rem !important;
    width: auto !important;
    animation: marqueeSingleRow 14s linear infinite !important;
  }

  .top-bar-info span {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin-right: 2rem !important;
    flex-shrink: 0 !important;
  }

  @keyframes marqueeSingleRow {
    0% {
      transform: translateX(0);
    }

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

  .top-bar-badges {
    display: none !important;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-hamburger-btn {
    display: inline-flex;
  }

  .nav-contact-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 0.95rem;
    width: 100%;
    padding: 0.4rem 0;
  }

  .hero-section {
    padding: 3rem 0 4rem;
    width: 100%;
    overflow: hidden;
  }

  .hero-right,
  .hero-3d-card-stack,
  .main-showcase-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .main-showcase-card {
    padding: 1.4rem 1rem !important;
  }

  .hero-title {
    font-size: 2.1rem;
  }

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

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

  .hero-cta-group .btn {
    width: 100%;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pillar-card {
    padding: 1.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }

  .contact-grid,
  .contact-card-row,
  .company-highlights {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static !important;
    margin: 0.6rem auto !important;
    width: fit-content !important;
    max-width: 90% !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important;
  }

  .badge-top-right {
    margin-bottom: 0.8rem !important;
  }

  .badge-bottom-left {
    margin-top: 0.8rem !important;
  }

  .main-showcase-card {
    padding: 1.5rem;
  }

  .showcase-card-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0.9rem 0.6rem !important;
    gap: 0.4rem !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .counter-box {
    flex: 1 !important;
    text-align: center !important;
  }

  .count-num {
    font-size: 1.25rem !important;
  }

  .count-lbl {
    font-size: 0.68rem !important;
  }

  .counter-divider {
    width: 1px !important;
    height: 26px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    flex-shrink: 0 !important;
  }

  .trust-banner {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .btn-lg {
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
  }
}