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

:root {
  --blue: #2f9ff5;
  --blue-dark: #021a30;
  /* Darkened slightly for premium feel */
  --blue-light: #0468b5;
  --green: #1a8f10;
  /* Made slightly more vibrant */
  --green-dark: #10590a;
  --green-light: #2acc17;
  --dark: #011324;
  /* Deeper dark */
  --light: #f4f8fc;
  --gray: #62768a;
  --white: #ffffff;
  --steel: #b0c4d8;

  /* New Variables for consistent shadows and transitions */
  --shadow-sm: 0 4px 12px rgba(2, 26, 48, 0.05);
  --shadow-md: 0 12px 28px rgba(2, 26, 48, 0.08);
  --shadow-lg: 0 20px 48px rgba(2, 26, 48, 0.12);
  --shadow-glow: 0 0 20px rgba(42, 204, 23, 0.4);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2b3642;
  /* Slightly softer text color */
  background: var(--light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10px, 20px) scale(1.05);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(42, 204, 23, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(42, 204, 23, 0.6);
  }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(26, 143, 16, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}

.navbar .logo img {
  height: 52px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  transition: color var(--transition-fast);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--green);
  transition: width var(--transition-normal);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: all var(--transition-normal) !important;
  box-shadow: 0 4px 15px rgba(26, 143, 16, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 204, 23, 0.4);
}

.nav-cta::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 50%, #033a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  /* Keep it subtle behind the gradient */
}

.hero-overlay {
  display: none;
}

/* Grid overlay */
.hero::before {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}


/* Blue glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 159, 245, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: floatOrb 15s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(42, 204, 23, 0.1);
  border: 1px solid rgba(42, 204, 23, 0.3);
  color: #e0ffd6;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: pulseGlow 3s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(to right, var(--green-light), #6ff062);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 680px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(26, 143, 16, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(42, 204, 23, 0.5);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 140px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(42, 204, 23, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(42, 204, 23, 0.3);
}

.stat h3 span {
  background: linear-gradient(135deg, var(--white), var(--steel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* ── MARQUEE TICKER ── */
.ticker {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-dark));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(26, 143, 16, 0.5);
  border-bottom: 1px solid rgba(26, 143, 16, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ticker-track {
  display: inline-block;
  animation: ticker 35s linear infinite;
}

.ticker-track span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0 40px;
  text-transform: uppercase;
}

.ticker-track span::before {
  content: '✦ ';
  color: var(--green-light);
  opacity: 1;
  text-shadow: 0 0 10px var(--green-light);
}

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

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

/* ── SECTIONS COMMON ── */
section {
  padding: 100px 5%;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 143, 16, 0.1);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  padding: 20px;
}

.about-img-placeholder {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrap:hover .about-img-placeholder img {
  transform: scale(1.05);
}

.about-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 20px;
  z-index: 1;
  opacity: 0.2;
  transform: translate(20px, 20px);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(47, 159, 245, 0.1);
  transition: var(--transition-normal);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 159, 245, 0.3);
  background: var(--white);
}

.about-feature .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(47, 159, 245, 0.15), rgba(4, 104, 181, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--blue);
}

.about-feature h4 {
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── PRODUCTS ── */
.products {
  background: var(--light);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(47, 159, 245, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.products-header>div {
  max-width: 600px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(47, 159, 245, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 159, 245, 0.4);
}

.product-img {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-dark), #0a2d4d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(26, 143, 16, 0.3);
}

.product-info {
  padding: 28px;
  background: var(--white);
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-link {
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-link:hover {
  gap: 14px;
  color: var(--green-dark);
}

/* ── WHY US ── */
.why-us {
  background: linear-gradient(135deg, var(--dark) 0%, #031e38 50%, var(--blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

.why-us::before {
  display: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 143, 16, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.why-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(42, 204, 23, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(42, 204, 23, 0.05);
}

.why-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 700;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ── INDUSTRIES ── */
.industries {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.industry-item {
  position: relative;
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.industry-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 30, 56, 0.65);
  transition: var(--transition-normal);
  z-index: 1;
}

.industry-item:hover::before {
  background: rgba(3, 30, 56, 0.4);
}

.industry-item:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.industry-item p {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ── BLOG ── */
.blog {
  background: var(--light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(47, 159, 245, 0.1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 159, 245, 0.4);
}

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-content {
  padding: 30px;
}

.blog-date {
  display: block;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-link:hover {
  gap: 14px;
  color: var(--blue-dark);
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-info>p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--light);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(47, 159, 245, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 159, 245, 0.4);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(26, 143, 16, 0.1), rgba(42, 204, 23, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 2px;
  font-weight: 700;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 16px;
  border: 1px solid rgba(47, 159, 245, 0.1);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
  font-weight: 800;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e0e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  background: #fafcff;
  transition: all var(--transition-normal);
  outline: none;
  color: var(--blue-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 143, 16, 0.1);
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.contact-form button {
  padding: 12px !important;
}

/* ── FOOTER ── */
footer {
  background: var(--light);
  color: var(--blue-dark);
  padding: 80px 5% 30px;
  border-top: 4px solid var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin: 0 auto 50px;
  max-width: 1200px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand img {
  height: 60px;
  width: fit-content;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 360px;
}

.footer-col h4 {
  color: var(--blue-dark);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--green);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--green);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(47, 159, 245, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 5%;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }

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

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 90px 5% 40px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 16px;
    padding: 6px 16px;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .stat {
    min-width: 100px;
    padding: 10px 12px;
    flex: 1 1 45%;
    border-radius: 12px;
  }

  .stat h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .stat p {
    font-size: 0.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-placeholder {
    height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat {
    padding: 8px 10px;
  }

  .stat h3 {
    font-size: 1.15rem;
  }

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