/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Color Variables */
:root {
  --primary-blue: #173f91;
  --dark-blue: #081b44;
  --deep-blue: #0d2d72;
  --text-dark: #111827;
  --text-light: #ffffff;
  --white: #ffffff;
  --soft-bg: #f5f8ff;
  --border-color: rgba(23, 63, 145, 0.15);
  --shadow-soft: 0 10px 30px rgba(8, 27, 68, 0.08);
  --shadow-strong: 0 18px 45px rgba(8, 27, 68, 0.16);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
}

/* Image */
img {
  max-width: 100%;
  display: block;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 16px 42px;
  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 18px rgba(8, 27, 68, 0.06);

  transition: all 0.3s ease;
}

.header.scrolled {
  min-height: 74px;
  box-shadow: var(--shadow-soft);
}

/* Logo */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(135px, 14vw, 205px);
  height: auto;
  object-fit: contain;
}

/* Navbar */
.navbar {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 28px);
  list-style: none;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li a {
  position: relative;

  text-decoration: none;
  color: var(--dark-blue);

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;

  padding: 10px 4px;
  white-space: nowrap;

  transition: color 0.25s ease;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;

  height: 2px;
  background: var(--primary-blue);
  border-radius: 20px;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--primary-blue);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA Button */
.primary-cta {
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 13px 20px;

  border-radius: 999px;
  border: 1px solid var(--primary-blue);

  background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
  color: var(--text-light);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;

  box-shadow: 0 10px 24px rgba(23, 63, 145, 0.22);
  transition: all 0.3s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
  box-shadow: 0 16px 32px rgba(23, 63, 145, 0.32);
}

/* Desktop CTA */
.desktop-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Mobile CTA hidden by default */
.mobile-cta {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--soft-bg);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger .line {
  width: 22px;
  height: 2.5px;
  background: var(--primary-blue);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .header {
    padding: 15px 28px;
    gap: 18px;
  }

  .nav-list {
    gap: 14px;
  }

  .nav-list li a {
    font-size: 13px;
  }

  .primary-cta {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Mobile Menu */
@media (max-width: 900px) {
  .header {
    min-height: 74px;
    padding: 13px 20px;
  }

  .logo img {
    width: 145px;
  }

  /* Desktop CTA hide on mobile */
  .desktop-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    justify-content: flex-start;

    pointer-events: none;
  }

  .nav-list {
    width: calc(100% - 32px);

    position: absolute;
    top: 12px;
    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    padding: 14px;

    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);

    transition: all 0.3s ease;
  }

  .navbar.active {
    pointer-events: auto;
  }

  .navbar.active .nav-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;

    font-size: 14px;
    color: var(--dark-blue);
  }

  .nav-list li a::after {
    display: none;
  }

  .nav-list li a:hover,
  .nav-list li a.active {
    background: var(--soft-bg);
    color: var(--primary-blue);
  }

  /* Mobile CTA show only on mobile */
  .mobile-cta {
    display: flex !important;
    width: 100%;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
  }

  .mobile-cta .primary-cta {
    width: 100%;
    color: var(--text-light);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .header {
    padding: 12px 14px;
  }

  .logo img {
    width: 125px;
  }

  .nav-list {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    border-radius: 16px;
  }
}























/* ===============================
   FLOATING CONTACT BUTTONS
================================ */

/* Left Side Container */
.floating-contact-left {
  position: fixed;
  left: 18px;
  bottom: 28px;
  z-index: 999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Common Floating Button */
.floating-btn {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  color: #ffffff;
  font-size: 0;
  font-weight: 800;

  box-shadow: 0 12px 28px rgba(8, 27, 68, 0.22);
  transition: all 0.3s ease;

  position: relative;
}

/* Button Text Tooltip */
.floating-btn span {
  position: absolute;
  left: 62px;

  min-width: 95px;
  padding: 9px 12px;

  border-radius: 999px;
  background: #081b44;
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);

  transition: all 0.3s ease;
}

/* Tooltip Arrow */
.floating-btn span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;

  width: 10px;
  height: 10px;

  background: #081b44;
  transform: translateY(-50%) rotate(45deg);
}

.floating-btn:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hover Effect */
.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* WhatsApp Button */
.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.whatsapp::before {
  content: "☏";
  font-size: 26px;
}

/* Phone Button */
.floating-btn.phone {
  background: #173f91;
}

.floating-btn.phone::before {
  content: "☎";
  font-size: 23px;
}

/* Email Button */
.floating-btn.email {
  background: #081b44;
}

.floating-btn.email::before {
  content: "✉";
  font-size: 23px;
}

/* ===============================
   RIGHT SIDE AI BUTTON
================================ */

.floating-ai-right {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 999;
}

.floating-ai-btn {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(135deg, #173f91, #081b44);
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;

  box-shadow: 0 14px 34px rgba(23, 63, 145, 0.32);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* AI Glow Effect */
.floating-ai-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s;
}

.floating-ai-btn:hover::before {
  left: 140%;
}

.floating-ai-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23, 63, 145, 0.42);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .floating-contact-left {
    left: 12px;
    bottom: 18px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .floating-btn.whatsapp::before {
    font-size: 23px;
  }

  .floating-btn.phone::before,
  .floating-btn.email::before {
    font-size: 20px;
  }

  .floating-btn span {
    display: none;
  }

  .floating-ai-right {
    right: 12px;
    bottom: 18px;
  }

  .floating-ai-btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .floating-ai-btn {
    padding: 0 14px;
    font-size: 12px;
  }
}





































/* Main Hero Section */


/* Hero Section Styles */

/* ===== HERO FRAME ===== */
.satej-hero-wrap {
  position: relative;
  width: 100%;
  height: 520px;           /* desktop frame height */
  overflow: hidden;
  background-color: #eaf7fe; /* primary blue for blank space */
}

/* Responsive frame */
@media (max-width: 768px) {
  .satej-hero-wrap {
    height: 300px;         /* mobile frame height */
  }
}

/* ===== HERO SLIDER ===== */
.satej-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===== HERO SLIDES ===== */
.satej-hero-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.satej-hero-item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* IMAGE FULLY VISIBLE WITH CONTAIN */
.satej-hero-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;      /* image fully visible */
  display: block;
}

/* ===== OVERLAY CONTENT ===== */
.satej-hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(90%, 900px);
  text-align: center;
  color: #fff;
  padding: 20px;
}

.satej-hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.satej-hero-content p {
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.satej-hero-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.satej-hero-btn:hover {
  transform: translateY(-2px);
}

/* ===== ARROWS ===== */
.satej-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.satej-hero-prev { left: 16px; }
.satej-hero-next { right: 16px; }

/* ===== DOTS ===== */
.satej-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.satej-hero-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}

.satej-hero-dot.is-active {
  background: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .satej-hero-content {
    width: 92%;
    padding: 14px;
  }

  .satej-hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .satej-hero-prev { left: 10px; }
  .satej-hero-next { right: 10px; }
}

































:root {
  --primary-blue: #173f91;
  --dark-blue: #081b44;
  --deep-blue: #0d2d72;
  --text-dark: #111827;
  --text-light: #ffffff;
  --white: #ffffff;
  --soft-bg: #f5f8ff;
  --border-color: rgba(23, 63, 145, 0.15);
  --shadow-soft: 0 10px 30px rgba(8, 27, 68, 0.08);
  --shadow-strong: 0 18px 45px rgba(8, 27, 68, 0.16);
}

/* Section */
.veinas-industry-section {
  background-color: var(--soft-bg);
  padding: 60px 20px;
}

.veinas-container {
  max-width: 1200px;
  margin: 0 auto;
}

.veinas-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.veinas-section-header h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.veinas-section-header p {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Slider */
.veinas-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.veinas-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* Machine Card */
.veinas-machine-card {
  flex: 0 0 calc((100% - 60px) / 3); /* 3 visible cards with gap */
  background-color: var(--white);
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.veinas-machine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.veinas-machine-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.veinas-machine-card h3 {
  color: var(--dark-blue);
  font-size: 1.1rem;
}

/* Arrows */
.veinas-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: background-color 0.3s;
}

.veinas-slider-arrow:hover {
  background-color: var(--deep-blue);
}

.veinas-slider-arrow.left {
  left: 10px;
}

.veinas-slider-arrow.right {
  right: 10px;
}

/* Mobile: 1 column visible */
@media (max-width: 767px) {
  .veinas-machine-card {
    flex: 0 0 80%;
  }
}






















:root {
  --primary-blue: #173f91;
  --dark-blue: #081b44;
  --deep-blue: #0d2d72;
  --text-dark: #111827;
  --text-light: #ffffff;
  --white: #ffffff;
  --soft-bg: #f5f8ff;
  --border-color: rgba(23, 63, 145, 0.15);
  --shadow-soft: 0 10px 30px rgba(8, 27, 68, 0.08);
  --shadow-strong: 0 18px 45px rgba(8, 27, 68, 0.16);
}

/* Section */
.veinas-why-section {
  background-color: var(--soft-bg);
  padding: 60px 20px;
}

.veinas-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.veinas-why-header {
  text-align: center;
  margin-bottom: 50px;
}

.veinas-why-header h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.veinas-why-header p {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Features Grid */
.veinas-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Feature Card */
.veinas-feature-card {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.veinas-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.veinas-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.veinas-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.veinas-feature-card h3 {
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.veinas-feature-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
  .veinas-why-header h2 {
    font-size: 2rem;
  }

  .veinas-feature-card {
    padding: 20px 15px;
  }
}


































:root {
  --primary-blue: #173f91;
  --dark-blue: #081b44;
  --deep-blue: #0d2d72;
  --text-dark: #111827;
  --white: #ffffff;
  --soft-bg: #f5f8ff;
  --border-color: rgba(23, 63, 145, 0.15);
  --shadow-soft: 0 10px 30px rgba(8, 27, 68, 0.08);
}

.industries-overview {
  padding: 80px 20px;
  background: var(--soft-bg);
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading span {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: 38px;
  color: var(--dark-blue);
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 18px 45px rgba(8, 27, 68, 0.16);
}

.industry-card img {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.industry-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--deep-blue);
  font-weight: 800;
}

.industry-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Tablet */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .industries-overview {
    padding: 55px 15px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 15px;
    gap: 14px;
  }

  .industry-card img {
    width: 64px;
    height: 64px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .industry-card h3 {
    font-size: 16px;
  }

  .industry-card p {
    font-size: 13px;
  }
}





























.lead-capture-section {
  padding: 90px 20px;
  background: #f5f8ff;
}

.lead-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.lead-content span {
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead-content h2 {
  color: var(--dark-blue);
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0 18px;
  font-weight: 800;
}

.lead-content p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.lead-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.point {
  color: var(--text-dark);
  font-size: 15px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(23, 63, 145, 0.1);
  box-shadow: 0 8px 24px rgba(8, 27, 68, 0.05);
}

.lead-form-wrap {
  background: #ffffff;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(23, 63, 145, 0.12);
  box-shadow: 0 18px 45px rgba(8, 27, 68, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(23, 63, 145, 0.15);
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  color: var(--text-dark);
  background: #ffffff;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a94a6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(23, 63, 145, 0.08);
}

.form-group textarea {
  resize: none;
}

.lead-btn {
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.lead-btn:hover {
  background: var(--deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 63, 145, 0.25);
}

/* Tablet */
@media (max-width: 992px) {
  .lead-container {
    grid-template-columns: 1fr;
  }

  .lead-content h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .lead-capture-section {
    padding: 60px 15px;
  }

  .lead-container {
    gap: 30px;
  }

  .lead-form-wrap {
    padding: 24px;
    border-radius: 18px;
  }

  .lead-content h2 {
    font-size: 28px;
  }

  .lead-content p {
    font-size: 14px;
  }

  .point {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 15px;
    font-size: 14px;
  }
}

























.client-trust-section {
  padding: 90px 20px;
  background: #ffffff;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */

.trust-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.trust-heading span {
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-heading h2 {
  color: var(--dark-blue);
  font-size: 40px;
  line-height: 1.25;
  margin: 14px 0 18px;
  font-weight: 800;
}

.trust-heading p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

/* Stats */

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.trust-stat {
  background: #f5f8ff;
  border: 1px solid rgba(23, 63, 145, 0.12);
  border-radius: 22px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(8, 27, 68, 0.08);
}

.trust-stat h3 {
  color: var(--primary-blue);
  font-size: 36px;
  margin: 0 0 10px;
  font-weight: 800;
}

.trust-stat p {
  color: var(--text-dark);
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

/* Client Logos */

.client-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.logo-box {
  height: 95px;
  background: #ffffff;
  border: 1px solid rgba(23, 63, 145, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(8, 27, 68, 0.05);
  transition: 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(8, 27, 68, 0.08);
}

.logo-box img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
  opacity: 0.85;
  transition: 0.3s ease;
}

.logo-box:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Reviews */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(23, 63, 145, 0.12);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  box-shadow: 0 14px 35px rgba(8, 27, 68, 0.06);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 27, 68, 0.08);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 58px;
  color: rgba(23, 63, 145, 0.10);
  font-weight: 800;
}

.review-card p {
  color: #374151;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.review-card h4 {
  color: var(--dark-blue);
  font-size: 17px;
  margin: 0 0 6px;
  font-weight: 800;
}

.review-card span {
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
}

/* Tablet */

@media (max-width: 992px) {

  .trust-heading h2 {
    font-size: 34px;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

}

/* Mobile */

@media (max-width: 576px) {

  .client-trust-section {
    padding: 60px 15px;
  }

  .trust-heading h2 {
    font-size: 28px;
  }

  .trust-heading p {
    font-size: 14px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-box {
    height: 78px;
  }

  .logo-box img {
    max-width: 90px;
    max-height: 35px;
  }

  .review-card {
    padding: 24px;
  }

  .review-card p {
    font-size: 14px;
  }

}


























.site-footer {
  background: linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
  color: #ffffff;
  padding: 70px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 35px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 800;
}

.footer-links a,
.footer-contact-link {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 11px;
  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 55px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 55px 15px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about h2 {
    font-size: 24px;
  }
}