/* ===================== TOKENS ===================== */
:root {
  --orange: #ff5b2e;
  --red: #ff3d57;
  --blue: #2d6cff;
  --purple: #8b5cf6;
  --white: #ffffff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --light-bg: #f8fafc;
  --grad-warm: linear-gradient(135deg, #ff6b35, #ff3d57);
  --grad-cool: linear-gradient(135deg, #2563eb, #8b5cf6);
  --grad-bg: linear-gradient(180deg, #ffffff, #f8fbff);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 40px rgba(255, 91, 46, 0.25);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--grad-bg);
  overflow-x: hidden;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--orange);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-gear {
  animation: spin 1.2s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-inner span {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  font-size: 0.85rem;
}

/* ===================== CURSOR GLOW ===================== */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 46, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  display: none;
}
@media (min-width: 992px) {
  .cursor-glow {
    display: block;
  }
}

/* ===================== BUTTONS ===================== */
.btn-gradient-cta {
  background: var(--grad-warm);
  color: #fff !important;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-size: 200% 200%;
}
.btn-gradient-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px rgba(255, 61, 87, 0.35);
  background-position: 100% 0;
  color: #fff;
}
.btn-outline-glow {
  border: 2px solid var(--dark);
  color: var(--dark) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline-glow:hover {
  background: var(--dark);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}
.btn-white-cta {
  background: #fff;
  color: var(--red) !important;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: inline-block;
}
.btn-white-cta:hover {
  transform: translateY(-4px) scale(1.03);
}

.ripple {
  position: relative;
  overflow: hidden;
}
.ripple::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease,
    opacity 0.8s ease;
}
.ripple:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: 0s;
}

/* ===================== SECTION SHARED ===================== */
.section {
  padding: 110px 0;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-desc {
  color: #64748b;
  font-size: 1.03rem;
  line-height: 1.7;
}
.text-gradient-1 {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
}
.logo-img {
  height: 80px;
  transition: height 0.35s ease;
}
.site-header.scrolled .logo-img {
  height: 80px;
}
.navbar-nav .nav-link {
  font-weight: 600;
  color: #1e293b;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--orange);
}
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border: none;
  background: none;
  padding: 0;
}
.toggler-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 60%, #ffffff 100%);
}
.min-vh-hero {
  min-height: 60vh;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#0f172a08 1px, transparent 1px),
    linear-gradient(90deg, #0f172a08 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 30%, black 10%, transparent 70%);
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.shape-1 {
  width: 280px;
  height: 280px;
  background: var(--grad-warm);
  top: 0;
  right: 5%;
}
.shape-2 {
  width: 220px;
  height: 220px;
  background: var(--grad-cool);
  bottom: 0;
  left: 0;
  animation-delay: 2s;
}
.shape-3 {
  width: 160px;
  height: 160px;
  background: var(--purple);
  top: 40%;
  left: 40%;
  animation-delay: 4s;
  opacity: 0.2;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(15px);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #eef1f8;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-mini-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-mini-stats div {
  display: flex;
  flex-direction: column;
}
.hero-mini-stats strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-mini-stats span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.hero-machine-wrap {
  position: relative;
  z-index: 1;
}
.glow-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45, 108, 255, 0.18),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-machine-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(15, 23, 42, 0.15));
}
.gear {
  animation: spin 6s linear infinite;
}
.gear-2 {
  animation-duration: 4.5s;
  animation-direction: reverse;
}
.gear-3 {
  animation-duration: 3s;
}
.soap-bars {
  animation: conveyor 3s linear infinite;
}
@keyframes conveyor {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid #cbd5e1;
  border-radius: 20px;
}
.hero-scroll-cue span {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  margin: 6px auto;
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ===================== ABOUT ===================== */
.about-img-wrap {
  position: relative;
}
.about-svg {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.badge-float {
  position: absolute;
  bottom: -24px;
  right: -14px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-float strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge-float span {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.2;
}
.feature-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #eef1f8;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-mini i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cool);
  color: #fff;
  font-size: 0.95rem;
}
.feature-mini span {
  font-weight: 600;
  font-size: 0.92rem;
}

/* ===================== PRODUCTS ===================== */
.products-section {
  background: var(--light-bg);
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}
.product-card-img {
  position: relative;
  overflow: hidden;
}
.product-card-img svg {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img svg {
  transform: scale(1.08);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65));
}
.product-card-body {
  padding: 22px;
}
.product-card-body h5 {
  font-size: 1.02rem;
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 2.8em;
}
.product-card-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  display: block;
  min-height: 4.2em;
}
.read-more {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.read-more:hover {
  gap: 14px;
  color: var(--red);
}

/* ===================== WHY US (dark) ===================== */
.why-us-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--grad-cool);
  opacity: 0.15;
  filter: blur(60px);
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
}
.why-card i {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-card h6 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

/* ===================== APPLICATIONS ===================== */
.app-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.app-pill:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.app-pill i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-warm);
  color: #fff;
  font-size: 1.15rem;
}
.app-pill span {
  font-weight: 700;
}

/* ===================== PROCESS ===================== */
.process-section {
  background: var(--light-bg);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.process-line {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #cbd5e1 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(255, 91, 46, 0.3);
  font-size: 0.9rem;
}
.process-step h6 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .process-line {
    display: none;
  }
}
@media (max-width: 575px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================== GALLERY ===================== */
.masonry-gallery {
  columns: 3 220px;
  column-gap: 18px;
}
@media (max-width: 767px) {
  .masonry-gallery {
    columns: 2 160px;
  }
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.gallery-ph {
  width: 100%;
  height: 220px;
}
.gallery-item.tall .gallery-ph {
  height: 320px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
  font-weight: 700;
}
.gallery-overlay i {
  font-size: 1.4rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-ph {
  transform: scale(1.06);
}
.gallery-ph {
  transition: transform 0.5s ease;
}

/* ===================== STATS ===================== */
.stats-section {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
}
.stat-box h3 {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat-box p {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: linear-gradient(160deg, var(--dark) 0%, #1c2b52 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 38px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.stars {
  color: #facc15;
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 3px;
}
.testimonial-card p {
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author strong {
  display: block;
  color: #fff;
}
.testimonial-author span {
  color: #94a3b8;
  font-size: 0.85rem;
}
.testimonial-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange);
}

/* ===================== FAQ ===================== */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.faq-accordion .accordion-button {
  font-weight: 700;
  font-family: var(--font-body);
  background: #fff;
  padding: 1.1rem 1.4rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--grad-warm);
  color: #fff;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.faq-accordion .accordion-body {
  background: #fff;
  color: #64748b;
  line-height: 1.7;
}

/* ===================== CTA ===================== */
.cta-section {
  background: var(--grad-warm);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ===================== CONTACT ===================== */
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-row i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--grad-cool);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-row strong {
  display: block;
  margin-bottom: 4px;
}
.contact-info-row span {
  color: #64748b;
  font-size: 0.92rem;
}
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 10px;
}
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}
.contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 91, 46, 0.12);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #080e21;
  color: #94a3b8;
  padding: 80px 0 0;
}
.footer-logo {
  height: 38px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.site-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer ul li a {
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.site-footer ul li a:hover {
  color: var(--orange);
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--grad-warm);
  transform: translateY(-3px);
}
.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 14px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form button {
  background: var(--grad-warm);
  border: none;
  color: #fff;
  padding: 0 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 56px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ===================== FLOATING BUTTONS ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(255, 61, 87, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .hero {
    padding-top: 120px;
  }
  .badge-float {
    position: static;
    margin-top: 16px;
    display: inline-flex;
  }
}
@media (max-width: 575px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .whatsapp-float,
  .back-to-top {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 220px; /* Adjust as needed */
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Use contain if you don't want cropping */
  display: block;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* Optional overlay */
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.about-img {
  width: 100%;
  height: 420px; /* Adjust according to your design */
  object-fit: contain;
  background: #f8f9fa;
  display: block;
  border-radius: 24px;
}

.badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hero-machine-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-machine-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    animation: floatMachine 4s ease-in-out infinite;
}

.glow-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(45, 108, 255, 0.25),
            rgba(139, 92, 246, 0.15),
            transparent 70%);
    filter: blur(40px);
    z-index: 1;
}