/* =========================
TYPOGRAPHY SYSTEM
========================= */

/* =========================
BODY
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
/* ============================
ROOT
============================ */

:root {
  --red: #cc1111;
  --dark: #101010;
  --white: #ffffff;
  --gray: #666;
  --light: #f5f5f5;
}

/* ============================
CONTAINER
============================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
HEADINGS
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
  color: #111;
}

/* H1 */

h1 {
  font-size: 82px;
}

/* H2 */

h2 {
  font-size: 58px;
}

/* H3 */

h3 {
  font-size: 42px;
}

/* H4 */

h4 {
  font-size: 32px;
}

/* H5 */

h5 {
  font-size: 24px;
}

/* H6 */

h6 {
  font-size: 18px;
}

/* =========================
PARAGRAPH
========================= */

p {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: #111;
  margin: 0;
}

/* =========================
LINKS
========================= */

a {
  text-decoration: none;
  transition: 0.3s;
  font-family: "Rajdhani", sans-serif;
}

a:hover {
  text-decoration: none;
}

/* =========================
UL LI
========================= */

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================
BUTTON TYPO
========================= */

.hero-btn,
.btn-primary,
.btn-outline,
.nav-btn {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================
FORM TYPO
========================= */

input,
textarea,
select {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

/* =========================
SMALL TEXT
========================= */

small {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
}

/* =========================
FLOATING BUTTONS
========================= */

.float-btns {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
}

/* COMMON BUTTON */

.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ICON */

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  position: relative;
  z-index: 2;
}

/* HOVER EFFECT */

.float-btn:hover {
  transform: translateY(-6px) scale(1.08);
}

/* SHINE EFFECT */

.float-btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transition: 0.5s;
}

.float-btn:hover::before {
  top: 100%;
}

/* =========================
WHATSAPP BUTTON
========================= */

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: whatsappPulse 2s infinite;
}

/* =========================
CALL BUTTON
========================= */

.float-btn.call {
  background: linear-gradient(135deg, #ff2d2d, #b30000);
  animation: callPulse 2s infinite 0.4s;
}

/* =========================
PULSE ANIMATION
========================= */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0),
      0 10px 30px rgba(0, 0, 0, 0.25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(0, 0, 0, 0.25);
  }
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 0, 0, 0), 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0), 0 10px 30px rgba(0, 0, 0, 0.25);
  }
}
/* ============================
HEADER
============================ */

#aanya-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.4s;
}

#aanya-header.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: 0.4s;
}

.logo-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

#aanya-header.scrolled .logo-name {
  color: #111;
}

#aanya-header.scrolled .logo-tag {
  color: #666;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: 0.4s;
}

#aanya-header.scrolled .nav-links a {
  color: #111;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.4s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  padding: 12px 22px;
  border-radius: 4px;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.35s ease;
}

/* Hover Effect */
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.25);
}

/* Shine Animation */
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.nav-cta:hover::before {
  left: 130%;
}
.nav-cta:after {
  display: none;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}


.mobile-menu {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  background: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s;
  z-index: 999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
/* ============================
HERO
============================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-red-stripe {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-inner {
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-eyebrow-line {
  width: 45px;
  height: 2px;
  background: var(--red);
}

.hero-eyebrow-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.hero-h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.hero-h1 span {
  color: var(--red);
}

.hero-h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}

.hero-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 35px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0;
}

.hero-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Neon Glow Border */
.hero-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: var(--red);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: 0.4s;
}

/* Shine Effect */
.hero-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: 0.7s;
}

/* Hover */
.hero-chip:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.25), 0 0 35px rgba(255, 0, 150, 0.15);
}

.hero-chip:hover::after {
  left: 140%;
}

.hero-chip:hover::before {
  opacity: 1;
}

/* Icon */
.hero-chip svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.7));
  transition: 0.3s;
}

.hero-chip:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}

/* Common Button Style */
.hero-btns a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.28);
}

/* Outline Button */
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
}

/* Shine Effect */
.hero-btns a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.7s;
}

/* Hover */
.hero-btns a:hover {
  transform: translateY(-5px) scale(1.03);
}

.hero-btns a:hover::before {
  left: 140%;
}

/* Primary Hover */
.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.45),
    0 0 50px rgba(58, 123, 213, 0.28);
}

/* Outline Hover */
.btn-outline:hover {
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  border-color: transparent;
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.35), 0 0 45px rgba(51, 51, 255, 0.25);
}

/* Click Effect */
.hero-btns a:active {
  transform: scale(0.96);
}

.btn-primary,
.btn-outline {
  padding: 16px 32px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.4s;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: #a30d0d;
  transform: translateY(-4px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.hero-badge {
  position: absolute;
  bottom: 80px;
  right: clamp(20px, 5vw, 80px);
  background: var(--red);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(204, 17, 17, 0.4);
  z-index: 3;
}

.hero-badge .num {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-badge .txt {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-ticker {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  z-index: 5;
}
.hero-ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  width: max-content;
  animation: scrollTicker 18s linear infinite;
}

/* Animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-inner {
  display: flex;
  gap: 70px;
  width: max-content;
}

.ticker-item {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-suffix {
  font-size: clamp(20px, 3vw, 34px);
  color: #e07070;
}

/* ============================
STATS
============================ */

#stats {
  background: #161d27;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  transition: 0.4s;
}

.stat-item:last-child {
  border: none;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.ticker-item::after {
  content: "◆";
  font-size: 7px;
  opacity: 0.6;
}
.stat-label {
  font-size: clamp(11px, 1.3vw, 14px);
  color: #8a94a6;
  margin-top: 10px;
} /* ==========================
   PREMIUM ABOUT SECTION
========================== */
#industries,
#about {
  padding: 120px 0;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
}
#industries:before,
#about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(204, 17, 17, 0.04);
  top: -250px;
  right: -250px;
}
#industries:after,
#about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(204, 17, 17, 0.03);
  bottom: -150px;
  left: -150px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE AREA */

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
}

.about-img-wrap:hover .about-img-main {
  transform: scale(1.03);
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.about-corner {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  border-top: 4px solid #cc1111;
  border-left: 4px solid #cc1111;
  z-index: 3;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(204, 17, 17, 0.4);
  z-index: 1;
}

.about-img-badge .num {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.about-img-badge .txt {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* CONTENT */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(204, 17, 17, 0.15);
  border-radius: 50px;
  color: #cc1111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 14px;
  overflow: hidden;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cc1111;
}

.section-title {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 22px;
}

.section-title span {
  display: block;
  color: #cc1111;
}

.red-line {
  width: 70px;
  height: 4px;
  background: #cc1111;
  border-radius: 30px;
  margin-bottom: 25px;
}

.section-sub {
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.75;
  color: #777;
}

.about-text p {
  color: #777;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.75;
  margin-top: 12px;
}

/* FEATURES */

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.about-feat {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 15px;

  background: #fff;
  padding: 18px;
  border-radius: 14px;

  border: 1px solid #ececec;

  transition: 0.4s;
  overflow: hidden;
}

.about-feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #cc1111;
}

.about-feat:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-feat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: #fff3f3;
}

.about-feat-icon svg {
  width: 22px;
  height: 22px;
  fill: #cc1111;
}

.about-feat-text strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.about-feat-text span {
  font-size: 11px;
  color: #777;
}
/* ==========================
   PRODUCTS SECTION
========================== */

#products {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background: radial-gradient(
      circle at left center,
      rgba(220, 38, 38, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at right center,
      rgba(220, 38, 38, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* Grid Pattern */

#products::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;
}

/* Left Glow */

#products::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -250px;
  top: 50%;
  transform: translateY(-50%);

  background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 70%);

  border-radius: 50%;
}

/* Gears */

.products-gear-left,
.products-gear-right {
  position: absolute;
  font-size: 260px;
  color: rgba(255, 0, 0, 0.06);
  z-index: 0;
  pointer-events: none;
}

.products-gear-left {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.products-gear-right {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

/* Header */

.products-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.products-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 14px;
  overflow: hidden;
  padding: 10px 22px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 0, 0.2);

  color: #cc1111;
}

.products-header .section-title span {
  color: #cc1111;
  display: inline-block;
}

.products-header .red-line {
  width: 80px;
  height: 4px;
  background: #cc1111;
  border-radius: 50px;
  margin: 20px auto;
}

/* Grid */

.products-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PRODUCT CARD */

.product-card {
  background: #fff;

  border-radius: 22px;

  border: 1px solid #edf0f4;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.12);

  border-color: #dc2626;
}

/* IMAGE */

.product-img {
  width: 100%;
  aspect-ratio: 16 / 16;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}
/* BODY */

.product-body {
  padding: 22px;
}

/* NUMBER */

.product-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* TITLE */

.product-name {
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  color: #111111;
  transition: 0.3s;
  margin-bottom: 9px;
}

.product-card:hover .product-name {
  color: #dc2626;
}

/* DESCRIPTION */

.product-desc {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* TAGS */

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 25px;
}

.spec-tag {
  font-size: 10px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.5px;
  color: var(--red);
  background: var(--red-xlight);
  border: 1px solid rgba(204, 17, 17, 0.2);
  padding: 3px 9px;
  border-radius: 3px;
}

/* BUTTON */

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;

  background: #dc2626;

  color: #fff;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.product-cta:hover {
  background: #b91c1c;
}
/* ==========================
   WHY CHOOSE US SECTION
========================== */

#why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* Background Shapes */

#why::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: -250px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent 70%);
}

#why::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -200px;
  bottom: -200px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
}

/* Grid */

.why-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Section Tag */

#why .section-title span {
  display: inline-block;
}
/* Why List */

.why-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */

.why-item {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding: 16px;

  background: #fff;

  border-radius: 22px;

  border: 1px solid #ececec;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  transition: 0.4s ease;
}

/* Left Border */

.why-item::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: #dc2626;
}

/* Hover */

.why-item:hover {
  transform: translateY(-8px) translateX(5px);

  border-color: #dc2626;

  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.12);
}

/* Icon */

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;

  background: linear-gradient(135deg, #dc2626, #ff4d4d);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Text */

.why-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.why-item-desc {
  font-size: 13px;
  color: #777777;
  line-height: 1.6;
}

/* Image */

.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;

  border-radius: 30px;

  border: 10px solid #fff;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Corner */

.why-corner-br {
  position: absolute;

  right: -15px;
  bottom: -15px;

  width: 90px;
  height: 90px;

  border-right: 5px solid #dc2626;
  border-bottom: 5px solid #dc2626;
}

/* Experience Badge */

.why-badge {
  position: absolute;

  right: -20px;
  bottom: 40px;

  background: #dc2626;

  color: #fff;

  padding: 22px 28px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

/* Heading */

.industries-header {
  text-align: center;
  margin-bottom: 70px;
}

.industries-header .red-line {
  margin: 20px auto;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */

.ind-card {
  position: relative;

  background: #fff;

  border-radius: 22px;

  padding: 26px 16px;

  text-align: center;

  border: 1px solid #ececec;

  overflow: hidden;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Red Top Border */

.ind-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #dc2626;

  transform: scaleX(0);

  transition: 0.4s;
}

.ind-card:hover::before {
  transform: scaleX(1);
}

.ind-card:hover {
  transform: translateY(-10px);

  border-color: #dc2626;

  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
}

/* Icon Circle */

.ind-icon {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1f1, #ffe2e2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.4s;
}

.ind-card:hover .ind-icon {
  transform: rotate(10deg) scale(1.1);

  background: linear-gradient(135deg, #dc2626, #ff4d4d);

  color: #fff;
}

/* Name */

.ind-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}

/* Description */

.ind-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}
.industries-header .section-title span {
  display: inline-block;
}
/* ==========================
   TESTIMONIALS PREMIUM
========================== */

#testimonials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background: linear-gradient(180deg, #ffffff, #f8fafc, #ffffff);
}

/* Background Shapes */

#testimonials::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  left: -250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
}

#testimonials::after {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  right: -200px;
  bottom: -200px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.05), transparent 70%);
}

/* Header */

.testimonials-header {
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.testimonials-header .red-line {
  margin: 20px auto;
}

.testimonials-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.testi-card {
  position: relative;

  background: #fff;

  padding: 25px;

  border-radius: 24px;

  border: 1px solid #ececec;

  overflow: hidden;

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Red Top Border */

.testi-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: #dc2626;
}

/* Quote Icon */

.testi-card::after {
  content: "❝";

  position: absolute;

  top: 20px;
  right: 25px;

  font-size: 70px;
  line-height: 1;

  color: rgba(220, 38, 38, 0.08);

  font-family: serif;
}

/* Hover */

.testi-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.12);

  border-color: #dc2626;
}

/* Stars */

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: #dc2626;
  font-size: 18px;
}

/* Text */

/* Author */

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;

  padding-top: 20px;

  border-top: 1px solid #eee;
}

/* Avatar */

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: linear-gradient(135deg, #dc2626, #ff4d4d);

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;

  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
}

/* Name */

.testi-text {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-name {
  color: #111;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
/* Location */

.testi-loc {
  font-size: 11px;
  color: #777777;
  margin-top: 2px;
}
.testimonials-header .section-title span {
  display: inline-block;
}

/* ==========================
   CONTACT SECTION PREMIUM
========================== */

#contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  padding-bottom: 0 !important;

  background: linear-gradient(135deg, #f8fafc, #ffffff, #f4f6f8);
}

/* Background Glow */

#contact::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  left: -250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
}

#contact::after {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  right: -200px;
  bottom: -200px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(220, 38, 38, 0.05), transparent 70%);
}

/* Layout */

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ==========================
   LEFT SIDE
========================== */

.contact-info {
  padding-right: 20px;
}

.contact-details {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;

  background: #fff;

  padding: 16px;

  border-radius: 18px;

  border: 1px solid #eee;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
  transform: translateY(-6px);

  border-color: #dc2626;

  box-shadow: 0 20px 45px rgba(220, 38, 38, 0.12);
}

.contact-icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;

  border-radius: 16px;

  background: linear-gradient(135deg, #dc2626, #ff5252);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
}

.contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.contact-info .section-title span {
  display: inline-block;
}
.contact-item-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}

.contact-item-value a {
  color: #111827;
  text-decoration: none;
}

.contact-item-value a:hover {
  color: #dc2626;
}

/* ==========================
   FORM BOX
========================== */

.contact-form-wrap {
  position: relative;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(18px);

  border-radius: 30px;

  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 30px;

  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.35),
    transparent,
    rgba(220, 38, 38, 0.15)
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
}

/* Heading */

.form-title {
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.form-subtitle {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 13px;
}

/* Inputs */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;

  font-size: 14px;
  font-weight: 600;

  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid #e5e7eb;

  border-radius: 14px;

  padding: 15px 18px;

  background: #fff;

  font-size: 14px;

  transition: 0.3s;
}

.form-group textarea {
  min-height: 140px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: #dc2626;

  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

/* Submit Button */

.btn-submit {
  width: 100%;

  border: none;

  border-radius: 16px;

  padding: 18px 25px;

  cursor: pointer;

  font-size: 15px;
  font-weight: 700;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(135deg, #dc2626, #ff4d4d);

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.25);
}

.btn-submit:hover {
  transform: translateY(-3px);

  box-shadow: 0 25px 45px rgba(220, 38, 38, 0.35);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Success Box */

#form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

.success-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

#form-success p {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

#form-success span {
  color: #64748b;
}

/* ==========================
   PREMIUM CTA BAND
========================== */

#cta-band {
  position: relative;
  padding: 65px 0;
  overflow: hidden;

  background: linear-gradient(135deg, #b30000, #d60000, #ff1f1f);
}

/* Background Shapes */

#cta-band::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  top: -180px;
  left: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
}

#cta-band::after {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  right: -150px;
  bottom: -150px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
}

/* Content */

#cta-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  position: relative;
}

.cta-sub {
  font-size: clamp(13px, 1.7vw, 16px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  position: relative;
}

/* Buttons */

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* White Button */

.btn-white {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 13px 28px;

  border-radius: 60px;

  background: #fff;
  color: #111;

  text-decoration: none;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.btn-white svg {
  width: 18px;
  height: 18px;
  fill: #d60000;
}

.btn-white:hover {
  transform: translateY(-5px);

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.22);
}

/* Glass Button */

.btn-outline-white2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;

  border-radius: 60px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  transition: 0.35s;
}

.btn-outline-white2 svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.btn-outline-white2:hover {
  background: #fff;
  color: #d60000;

  transform: translateY(-5px);
}

.btn-outline-white2:hover svg {
  fill: #d60000;
}

/* Floating Animation */

.cta-btns a {
  animation: floatBtn 4s ease-in-out infinite;
}

.cta-btns a:nth-child(2) {
  animation-delay: 0.5s;
}

.cta-btns a:nth-child(3) {
  animation-delay: 1s;
}

@keyframes floatBtn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Title Animation */

.cta-title {
  animation: fadeUp 1s ease;
}

.cta-sub {
  animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   ULTRA PREMIUM FOOTER
========================== */

#footer {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;

  background: linear-gradient(135deg, #060b14 0%, #0d1523 50%, #060b14 100%);
}

/* Top Border Glow */

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

/* Left Glow */

#footer::after {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  left: -300px;
  top: -250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 0, 0, 0.18), transparent 70%);
}

.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;

  padding-bottom: 70px;
}

/* Logo */

.footer-grid .logo-tag {
  color: #999;
}

/* Description */

.footer-desc {
  font-size: 13px;
  color: #8a94a6;
  line-height: 1.8;
  margin: 14px 0;
}

/* Stats */

.footer-stats {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.footer-stat h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 3px;
}

.footer-stat span {
  color: #9ca5b3;
  font-size: 12px;
}

/* Social */

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: #8a94a6;
  transition: fill 0.3s;
}

.footer-social:hover {
  transform: translateY(-8px);

  background: #ff0000;

  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.35);
}

/* Column Title */

.footer-col-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background: #cc1111;
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13px;
  color: #8a94a6;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s linear;
}
.footer-links a::before {
  content: "›";
  color: var(--red);
  font-size: 15px;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 10px;
}

/* Contact Card Style */

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #8a94a6;
  line-height: 1.6;
}
.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  font-size: 13px;
  color: #8a94a6;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-contact-list a:hover {
  color: #fff;
}

/* Bottom */

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy,
.footer-credits {
  font-size: 12px;
  color: #8a94a6;
}

.footer-copy strong,
.footer-credits a {
  color: var(--red);
  text-decoration: none;
}
.footer-credits a:hover {
  color: #fff;
}

/* Floating Shapes */

.footer-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.footer-shape.one {
  width: 250px;
  height: 250px;
  background: rgba(255, 0, 0, 0.15);
  right: 5%;
  top: 20%;
}

.footer-shape.two {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  right: 20%;
  bottom: 15%;
}
ul.product-spec-list li {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
  list-style: disc;
}

ul.product-spec-list {
  padding-left: 20px;
  margin-bottom: 10px;
}
.no-banner header#aanya-header {
  background: #111;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #eee;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.category-image {
  overflow: hidden;
}

.category-image img {
  width: 100%;
  aspect-ratio: 16 / 16;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-content {
  padding: 20px;
}

.category-content h3 {
  font-size: clamp(19px, 2.4vw, 25px);
  margin-bottom: 10px;
  color: #111;
}

.category-content ul {
  margin: 15px 0 25px;
  padding-left: 22px !important;
  list-style-type: disc !important;
}

.category-content ul li {
  display: list-item !important;
  list-style-type: disc !important;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.category-content ul li::marker {
  color: #ff2b2b;
}
.category-content ul li::marker {
  color: #ff2b2b;
}
.category-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff2b2b;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 700;
}

.category-btn:hover {
  background: #111;
}
.products-slider {
  padding: 20px 0 60px;
}

.products-slider .swiper-slide {
  height: auto;
}

.product-card {
  height: 100%;
}
.products-slider {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background: #e31e24;
  border-radius: 50%;
  color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #e31e24 !important;
}

/* =========================
   FULL SCREEN ENQUIRY POPUP
========================= */

.enquiry-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999999;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}

.enquiry-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup-box {
  width: 100%;
  max-width: 550px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: popupShow 0.4s ease;
}

@keyframes popupShow {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: none;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #222;
  transition: 0.3s;
}

.close-popup:hover {
  transform: rotate(90deg);
  color: #d62828;
}

.popup-box h3 {
  font-size: clamp(35px, 2.4vw, 25px);
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #111;
}

.popup-box p {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.popup-box input:focus,
.popup-box textarea:focus {
  border-color: #d62828;
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}

.popup-box textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px;
  background: #d62828;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

.product-detail-page {
  padding: 120px 0;
  background: #f7f8fa;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* IMAGE */

.main-product-img {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.main-product-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.main-product-img {
  overflow: hidden;
  cursor: zoom-in;
}

.main-product-img img {
  transition: 0.4s ease;
}

.active-thumb {
  border: 2px solid #cc1111 !important;
  transform: scale(1.05);
}
.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.thumbs img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: 0.3s;
}

.thumbs img:hover {
  border-color: #cc1111;
}

/* CONTENT */

.product-badge {
  display: inline-block;
  background: #ffe9e9;
  color: #cc1111;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-content h1 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.product-short {
  color: #777;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.75;
  margin-top: 12px;
  margin-bottom: 20px;
}

.price-box {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  border-radius: 12px;
  margin-bottom: 16px;
}

.btn-wrap {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-enquiry {
  background: #cc1111;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-call {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* INFO */

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.info-box strong {
  display: block;
  margin-bottom: 6px;
  color: #111;
}

.info-box span {
  color: #666;
}

/* SPEC */

.specification-card {
  margin-top: 60px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.specification-card h2 {
  margin-bottom: 25px;
  color: #111;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr:nth-child(even) {
  background: #fafafa;
}

.spec-table td {
  padding: 16px;
  border: 1px solid #eee;
  color: #111;
}

.spec-table td:first-child {
  font-weight: 700;
  width: 280px;
}
.no-banner #aanya-header.scrolled .logo-name {
  color: #fff;
}
.no-banner #aanya-header.scrolled .logo-tag {
  color: #f5f5f5;
}

.no-banner #aanya-header.scrolled .nav-links a {
  color: #fff;
}
.multihead-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  text-align: center;
  color: #fff;
}

.section-sub {
  color: #777;
  margin-bottom: 50px;
}

.multihead-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.multihead-header h2 {
  color: #fff;
}

.multihead-header h2 span {
  display: inline-block;
}

.multihead-header .red-line {
  margin: auto;
  margin-bottom: 30px;
}
/* GLASS CARD */
.multihead-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* glowing line effect */
.multihead-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.2), transparent 60%);
  transform: rotate(0deg);
  transition: 0.5s;
}

.multihead-card:hover::before {
  transform: rotate(180deg);
}

/* hover effect */
.multihead-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #ff2d2d;
  box-shadow: 0 10px 30px rgba(255, 45, 45, 0.25);
}

.multihead-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.multihead-card p {
  font-size: 14px;
  color: #ccc;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  width: 100%;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
}

.enquiry-form textarea {
  resize: none;
}
/* ===== OVERLAY ===== */
.machine-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* light dark overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

/* ===== POPUP BOX ===== */
.machine-popup .popup-box {
  width: 90%;
  max-width: 900px;
  background: #ffffff; /* WHITE BACKGROUND */
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: popupOpen 0.25s ease;
}

/* animation */
@keyframes popupOpen {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== IMAGE SIDE ===== */
.machine-popup .popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT SIDE ===== */
.machine-popup .popup-info {
  padding: 25px;
  color: #111;
}

.machine-popup .popup-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ff3b3b;
}

.machine-popup .popup-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

/* LIST */
.machine-popup .popup-info ul {
  padding-left: 18px;
}

.machine-popup .popup-info ul li {
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

/* ===== CLOSE BUTTON ===== */
.machine-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
}

.machine-popup .popup-close:hover {
  color: #ff3b3b;
  transform: rotate(90deg);
}
.location-map iframe {
    width: 100%;
}

.product-gallery{
    overflow:hidden;
    position:relative;
}

.gallery-track{
    display:flex;
    width:400%;
    transition:transform .8s ease-in-out;
}

.gallery-track img{
    width:25%;
    flex-shrink:0;
}
.video-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.video-card{
    width:220px;
    background:#fff;
    text-align:center;
    padding:10px;
    border:1px solid #ddd;
    transition:.4s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.video-card h4{
    font-size:14px;
    margin:10px 0;
}
.video-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    overflow:hidden;
    transition:.4s;
    text-align:center;
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.video-thumb{
    position:relative;
    overflow:hidden;
}

.video-thumb img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.video-card:hover .video-thumb img{
    transform:scale(1.08);
}

.play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    background:#ff0000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    z-index:2;
}
.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.video-modal.active{
    display:flex;
}

.video-modal iframe{
    width:90%;
    max-width:1100px;
    height:70vh;
    border:none;
    border-radius:10px;
}

.close-video{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
.productsBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .multihead-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info {
    padding-right: 0;
  }

  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-img-wrap {
    order: -1;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-gear-left,
  .products-gear-right {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-badge {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #about {
    padding: 80px 0;
  }
.video-card{
    width:calc(50% - 15px);
}
  .about-feat-text span {
    font-size: 11px;
    color: #777;
    display: block;
  }
  .about-feat {
    gap: 10px;
    padding: 10px;
  }
  .about-features {
    gap: 10px;
  }
  .about-feat-icon svg {
    width: 16px;
    height: 16px;
  }
  .about-feat-text strong {
    font-size: 12px;
  }
  .about-feat-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  .about-img-badge {
    right: 15px;
    bottom: 15px;
    padding: 18px 22px;
  }

  .about-img-badge .num {
    font-size: 42px;
  }

  .about-corner {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }
  .float-btns {
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .float-btn {
    width: 55px;
    height: 55px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .hero-h2 {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .hero-h1 br {
    display: none;
  }
  #cta h2 {
    font-size: 40px;
  }

  .nav-inner {
    padding: 0 20px;
  }
  .hero-chips {
    gap: 8px;
  }
  .hero-chip {
    gap: 5px;
  }
  .hero-btns {
    gap: 10px;
  }
  .hero-chip {
    padding: 5px 8px;
  }

  .hero-eyebrow-line {
    width: 30px;
  }
  .hero-desc {
    margin-bottom: 30px;
  }
  .hero-btns a {
    padding: 12px 25px;
    border-radius: 60px;
    font-size: 14px;
  }
  #products {
    padding: 80px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
  #why {
    padding: 80px 0;
  }
  .why-corner-br {
    display: none;
  }

  #industries {
    padding: 80px 0;
  }

  .industries-header {
    margin-bottom: 50px;
  }

  #testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  #contact {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 18px;
  }

  .form-title {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-stats {
    flex-wrap: wrap;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .popup-box {
    padding: 20px;
  }
  .multihead-card {
    padding: 16px;
  }
  .multihead-card h3 {
    font-size: 18px;
  }
  .multihead-card p {
    font-size: 12px;
    line-height: 1.5;
  }
  .popup-box p {
    margin-bottom: 10px;
  }
  .popup-box h3 {
    font-size: 30px;
  }
  .popup-box input,
  .popup-box textarea {
    border-radius: 5px;
    padding: 8px 5px;
    font-size: 12px;
  }


  .machine-popup .popup-box {
    grid-template-columns: 1fr;
  }

  .machine-popup .popup-img {
    height: 220px;
  }

  .machine-popup .popup-info,
  .machine-popup {
    padding: 0;
  }
  .machine-popup .popup-box {
    height: 400px;
    overflow: auto;
  }
  .machine-popup .popup-info h2 {
    font-size: 24px;
  }
  .video-grid{
    gap:15px;
}

.video-card{
    width:100%;
    max-width:300px;
    margin:auto;
}

.video-card img{
    height:180px;
}

.video-title{
    font-size:26px;
}
}
