:root {
  --primary: #0a61af;
  --primary-dark: #084f8f;
  --primary-light: #1a7fd4;
  --accent: #f0a500;
  --white: #ffffff;
  --light-bg: #f5f9ff;
  --dark: #0d1b2a;
  --dark-2: #1a2d40;
  --text: #374151;
  --text-light: #6b7280;
  --border: #e2ecf7;
  --shadow: 0 4px 30px rgba(10, 97, 175, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 97, 175, 0.18);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================
   SCROLLBAR
============================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================
   NAVBAR
============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}

.navbar-top-bar {
  background: var(--primary-dark);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-top-bar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.navbar-top-bar a:hover {
  color: var(--accent);
}

.navbar-main {
  background: var(--dark);
  padding: 0 0;
  transition: all 0.4s ease;
}

#navbar.scrolled .navbar-top-bar {
  display: none;
}

#navbar.scrolled .navbar-main {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .b1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}

.brand-text .b2 {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 24px 16px !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--accent) !important;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  border-radius: 6px;
  padding: 10px 22px !important;
  margin-left: 8px;
  font-size: 13px !important;
  letter-spacing: 1px;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--dark) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* Mega Menu */
.mega-menu-wrapper {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 620px;
  background: var(--dark-2);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 12px 12px;
  padding: 28px 32px;
  display: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.mega-menu-wrapper:hover .mega-menu {
  display: block;
}

.mega-menu-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 4px;
}

.mega-item:hover {
  background: rgba(10, 97, 175, 0.2);
  transform: translateX(4px);
}

.mega-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(10, 97, 175, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.mega-item-text .t1 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.mega-item-text .t2 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile toggle */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
  color: white;
  background: none;
  cursor: pointer;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
  display: block;
}

/* ============================
   HERO SECTION
============================ */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 42, 0.88) 0%,
    rgba(8, 79, 143, 0.5) 50%,
    rgba(13, 27, 42, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 84px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-heading span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 97, 175, 0.4);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(8, 79, 143, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(9px, 1.5vw, 11px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero controls */
.hero-dots {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}

.hero-arrows {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Hero slide progress bar */
.hero-progress {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-progress-bar {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.hero-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  border-radius: 3px;
  transition: width 0.1s linear;
}

.hero-progress-bar.active .hero-progress-fill {
  animation: progressFill 3s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.hero-right-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-machine-icon {
  font-size: 80px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.hero-right-card .label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.hero-right-card .sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ============================
   SECTION STYLES
============================ */
section {
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-title span {
  color: var(--primary);
}

.section-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
}

/* ============================
   ABOUT SECTION
============================ */
#about {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--white);
}

.about-img-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-main-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 40px rgba(10, 97, 175, 0.4);
  border: 5px solid white;
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-badge .txt {
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.about-content {
  padding-left: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s;
}

.about-feature:hover .about-feature-icon {
  background: var(--primary);
  color: white;
  transform: rotate(5deg);
}

.about-feature-text h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-feature-text p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Counters */
.counters-strip {
  background: var(--dark);
  padding: clamp(40px, 5vw, 60px) 0;
}

.counter-item {
  text-align: center;
  padding: 10px 0;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.counter-label {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================
   SERVICES SECTION
============================ */
#services {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--light-bg);
}

.mb-60 {
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 97, 175, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--border);
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(10, 97, 175, 0.15);
  border-color: var(--primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.4s;
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: white;
  border-radius: 50%;
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* ============================
   WHY CHOOSE US
============================ */
#why {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(10, 97, 175, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#why .section-title {
  color: white;
}

#why .section-label {
  color: var(--accent);
}

#why .section-label::before {
  background: var(--accent);
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.why-card:hover {
  background: rgba(10, 97, 175, 0.12);
  border-color: rgba(10, 97, 175, 0.4);
  transform: translateY(-8px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s;
}

.why-card:hover .why-icon {
  transform: rotateY(360deg);
}

.why-card h5 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ============================
   PRODUCTS SECTION
============================ */
#products {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--white);
}

.product-swiper {
  padding: 20px 0 60px !important;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.8) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
}

.product-body {
  padding: clamp(16px, 2vw, 24px);
}

.product-body h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-view:hover {
  background: var(--primary);
  color: white;
  transform: translateX(4px);
}

/* Swiper custom */
.swiper-pagination-bullet {
  background: var(--border);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ============================
   INDUSTRIES
============================ */
#industries {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--light-bg);
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  height: 100%;
}

.industry-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 97, 175, 0.3);
}

.industry-icon {
  font-size: clamp(36px, 5vw, 48px);
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
  transition: all 0.4s;
}

.industry-card:hover .industry-icon {
  color: var(--accent);
  transform: scale(1.2);
}

.industry-card h5 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.industry-card:hover h5 {
  color: white;
}

.industry-card p {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--text-light);
  margin-top: 8px;
  transition: color 0.3s;
  margin-bottom: 0;
}

.industry-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
   PROCESS SECTION
============================ */
#process {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--white);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  padding: 0 20px;
}

.process-line {
  position: absolute;
  top: 44px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0;
  transition: width 1.5s ease 0.5s;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.process-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-step.active .process-num,
.process-step:hover .process-num {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(10, 97, 175, 0.4);
  transform: scale(1.1);
}

.process-step h6 {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  max-width: 140px;
}

/* ============================
   STATS SECTION
============================ */
#stats {
  padding: clamp(60px, 10vw, 120px) 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 50%,
    var(--dark) 100%
  );
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  text-align: center;
  position: relative;
  padding: clamp(20px, 3vw, 40px) 20px;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-card:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 40px;
  color: rgba(240, 165, 0, 0.4);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-num sup {
  font-size: clamp(20px, 3.5vw, 36px);
  color: var(--accent);
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================
   TESTIMONIALS
============================ */
#testimonials {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--light-bg);
}

.testimonial-swiper {
  padding-bottom: 60px !important;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  font-size: 60px;
  color: var(--light-bg);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-card .review {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.client-info .name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-info .company {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================
   PROJECTS
============================ */
#projects {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--white);
}

.project-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.4s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card img {
  width: 100%;
  height: clamp(200px, 30vw, 280px);
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.95) 0%,
    rgba(13, 27, 42, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2.5vw, 28px);
  transition: all 0.4s;
}

.project-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}

.project-overlay h5 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.project-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ============================
   CERTIFICATIONS
============================ */
#certifications {
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.cert-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.cert-track {
  display: flex;
  gap: 40px;
  animation: scrollCerts 20s linear infinite;
  width: max-content;
}

@keyframes scrollCerts {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cert-item {
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  transition: all 0.3s;
  white-space: nowrap;
}

.cert-item:hover {
  background: rgba(10, 97, 175, 0.2);
  border-color: var(--primary);
}

.cert-item span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  transition: color 0.3s;
}

.cert-item:hover span {
  color: white;
}

/* ============================
   CTA SECTION
============================ */
#cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v0H40z'/%3E%3C/g%3E%3C/svg%3E");
}

#cta .section-title {
  color: white;
  font-size: clamp(28px, 5vw, 60px);
}

#cta .section-label {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

#cta .section-label::before {
  background: rgba(255, 255, 255, 0.7);
}

#cta .section-text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 36px;
}

/* ============================
   BLOGS
============================ */
#blogs {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--light-bg);
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.4s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: clamp(180px, 25vw, 220px);
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-body {
  padding: clamp(16px, 2vw, 24px);
}

.blog-cat {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-body h5 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.blog-card:hover .blog-body h5 {
  color: var(--primary);
}

.blog-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================
   CONTACT SECTION
============================ */
#contact {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--white);
}

.contact-info-card {
  background: var(--dark);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  height: 100%;
}

.contact-info-card .section-title {
  color: white;
  font-size: clamp(26px, 3.5vw, 36px);
}

.contact-info-card .section-label {
  color: var(--accent);
}

.contact-info-card .section-label::before {
  background: var(--accent);
}

.contact-info-card .section-text {
  color: rgba(255, 255, 255, 0.6);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(10, 97, 175, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--primary);
  color: white;
}

.contact-info-text h6 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--light-bg);
  transition: all 0.3s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 97, 175, 0.1);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* ============================
   FOOTER
============================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(40px, 6vw, 80px) 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "▸";
  color: var(--primary);
  font-size: 10px;
}

.footer-links a:hover {
  color: white;
  padding-left: 6px;
}

.footer-bottom {
  margin-top: clamp(30px, 5vw, 60px);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================
   FLOATING BUTTONS
============================ */
.float-wa {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.7);
  }
}

.float-wa:hover {
  transform: scale(1.15) translateY(-3px);
  color: white;
}

.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(10, 97, 175, 0.4);
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================
   QUOTE MODAL
============================ */
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal.open {
  display: flex;
}

.quote-modal-content {
  background: white;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light-bg);
  border-radius: 50%;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================ */

/* Extra Large screens */
@media (max-width: 1399px) {
  .mega-menu {
    left: -150px;
    width: 560px;
  }
}

/* Large screens */
@media (max-width: 1199px) {
  .mega-menu {
    left: -100px;
    width: 520px;
  }

  .hero-right-card {
    padding: 20px;
  }

  .hero-machine-icon {
    font-size: 60px;
  }

  .nav-link-custom {
    padding: 24px 12px !important;
    font-size: 14px;
  }
}

/* Medium screens / Tablets */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 60px;
  }

  .about-badge {
    right: 10px;
    bottom: -10px;
    width: 100px;
    height: 100px;
    border-width: 4px;
  }

  .about-badge .num {
    font-size: 28px;
  }

  .about-badge .txt {
    font-size: 9px;
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-line {
    display: none;
  }

  .process-step {
    flex: 0 0 30%;
  }

  .process-num {
    width: 70px;
    height: 70px;
  }

  .process-num i {
    font-size: 22px !important;
  }

  .contact-form-card {
    margin-top: 0;
  }

  .mega-menu {
    display: none !important;
  }

  .hero-right-card {
    margin-top: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  #hero {
    min-height: 600px;
  }

  .hero-heading {
    font-size: clamp(28px, 5vw, 50px);
  }

  .hero-arrows {
    bottom: 75px;
    left: 20px;
  }

  .hero-dots {
    bottom: 95px;
    right: 20px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* Mobile Nav styles */
  #mobileNav {
    max-height: 60vh;
    overflow-y: auto;
  }

  #mobileNav a {
    padding: 12px 0 !important;
    font-size: 15px;
  }
}

/* Small screens / Mobile landscape */
@media (max-width: 767px) {
  #hero {
    height: 100vh;
    height: 100dvh;
    min-height: 550px;
  }

  .hero-heading {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.1;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-arrows,
  .hero-dots {
    display: none;
  }

  .hero-progress {
    bottom: 65px;
  }

  .hero-stats-bar {
    position: relative;
  }

  .stat-card::after {
    display: none;
  }

  .hero-stat-item {
    padding: 12px 0;
  }

  .hero-stat-num {
    font-size: 20px;
  }

  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 11px 22px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .quote-modal-content {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .process-step {
    flex: 0 0 45%;
  }

  .process-num {
    width: 64px;
    height: 64px;
  }

  .process-num i {
    font-size: 20px !important;
  }

  .process-step h6 {
    font-size: 13px;
  }

  .process-step p {
    font-size: 11px;
    max-width: 120px;
  }

  .about-main-img img {
    height: 300px;
  }

  .service-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .section-text {
    font-size: 14px;
  }

  .product-img {
    height: 200px;
  }

  .industry-card {
    padding: 20px 12px;
  }

  .industry-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .industry-card h5 {
    font-size: 14px;
  }

  .industry-card p {
    font-size: 11px;
  }

  .about-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-logo {
    height: 45px;
  }

  .float-wa {
    width: 46px;
    height: 46px;
    font-size: 20px;
    bottom: 80px;
    right: 16px;
  }

  .back-top {
    width: 38px;
    height: 38px;
    font-size: 14px;
    bottom: 20px;
    right: 16px;
  }

  .testimonial-card .review {
    font-size: 14px;
  }

  .blog-img {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #hero {
    min-height: 500px;
  }

  .hero-heading {
    font-size: clamp(22px, 6.5vw, 32px);
  }

  .hero-tag {
    font-size: 9px;
    padding: 4px 12px;
  }

  .hero-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-content .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 8px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .about-main-img img {
    height: 250px;
  }

  .about-badge {
    width: 80px;
    height: 80px;
    border-width: 3px;
    right: 5px;
    bottom: -5px;
  }

  .about-badge .num {
    font-size: 22px;
  }

  .about-badge .txt {
    font-size: 8px;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .why-icon {
    font-size: 30px;
  }

  .counter-num {
    font-size: 32px;
  }

  .counter-label {
    font-size: 10px;
  }

  .brand-logo {
    height: 40px;
  }

  .navbar-top-bar {
    font-size: 11px;
  }

  .blog-body h5 {
    font-size: 16px;
  }

  .project-overlay h5 {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card .review {
    font-size: 13px;
    line-height: 1.7;
  }

  .client-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .client-info .name {
    font-size: 15px;
  }

  .client-info .company {
    font-size: 11px;
  }

  .quote-modal-content {
    padding: 24px 16px;
  }

  .form-control-custom {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Landscape orientation fix for short screens */
@media (max-height: 600px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero-tag {
    margin-bottom: 10px;
  }

  .hero-stats-bar {
    display: none;
  }
}

/* High DPI / Retina adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-video {
    image-rendering: optimizeQuality;
  }
}

/* Print styles */
@media print {
  #navbar,
  .float-wa,
  .back-top,
  .hero-arrows,
  .hero-dots,
  .hero-progress,
  .quote-modal {
    display: none !important;
  }

  #hero {
    height: auto;
    min-height: auto;
  }

  section {
    padding: 40px 0 !important;
    page-break-inside: avoid;
  }
}
